heissepreise/tailwind.config.js

20 lines
424 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",
},
content: {
label: "attr(data-label)",
none: "none",
},
2023-06-07 15:00:15 +02:00
},
},
plugins: [],
};