Files
fte-Homepage/tailwind.config.js
root 65a0be1350 .
2023-07-29 22:17:22 +02:00

18 lines
336 B
JavaScript

module.exports = {
content: ["./**/*.html", "./**/*.md", "./config.toml"],
theme: {
extend: {
colors: {
tlgray: {
200: "#E5E7EB",
400: "#9CA3AF",
700: "#374151",
800: "#1F2937"
}
}
}
},
variants: {},
plugins: [require("@tailwindcss/typography")],
};