This commit is contained in:
root
2023-07-29 22:17:22 +02:00
parent d6cbc9bc0f
commit 65a0be1350
28 changed files with 627 additions and 3 deletions

17
tailwind.config.js Normal file
View File

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