fix: tailwind config

This commit is contained in:
2024-11-21 09:30:24 +01:00
parent ceabd06a43
commit 43ac878d44
2 changed files with 1 additions and 1 deletions

15
tailwind.config.cjs Normal file
View File

@@ -0,0 +1,15 @@
module.exports = {
mode: "jit",
content: ["./src/**/*.svelte"],
theme: {
extend: {
colors: {
reepolee: {
500: "#b40000",
600: "#9c0000",
700: "#750000",
},
},
},
},
};