public commit

This commit is contained in:
dswbx
2024-11-16 12:01:47 +01:00
commit 90f80c4280
582 changed files with 49291 additions and 0 deletions

17
app/tailwind.config.js Normal file
View File

@@ -0,0 +1,17 @@
/** @type {import("tailwindcss").Config} */
export default {
content: ["./index.html", "./src/ui/**/*.tsx", "./src/ui/lib/mantine/theme.ts"],
darkMode: "selector",
theme: {
extend: {
colors: {
primary: "rgb(var(--color-primary) / <alpha-value>)",
background: "rgb(var(--color-background) / <alpha-value>)",
muted: "rgb(var(--color-muted) / <alpha-value>)",
lightest: "rgb(var(--color-lightest) / <alpha-value>)",
darkest: "rgb(var(--color-darkest) / <alpha-value>)"
}
}
},
plugins: [require("tailwindcss-animate")]
};