heissepreise/tailwind.config.js

16 lines
313 B
JavaScript
Raw Normal View History

2023-06-07 15:00:15 +02:00
/** @type {import('tailwindcss').Config} */
module.exports = {
2023-06-07 23:37:53 +02:00
content: ["./site/**/*.{html,js,css}"],
2023-06-07 15:00:15 +02:00
theme: {
extend: {
colors: {
primary: "#c9543a",
},
scale: {
flip: "-1",
},
},
},
plugins: [],
};