This commit is contained in:
Yolando
2026-03-28 19:48:52 +07:00
parent 0a25960e8f
commit 5b0254d71b
19 changed files with 2016 additions and 1102 deletions

32
tailwind.config.js Normal file
View File

@@ -0,0 +1,32 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: "class",
content: [
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
"./src/features/**/*.{js,ts,jsx,tsx,mdx}",
"./src/shared/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
background: "var(--background)",
foreground: "var(--foreground)",
card: "var(--card)",
"card-foreground": "var(--card-foreground)",
muted: "var(--muted)",
"muted-foreground": "var(--muted-foreground)",
border: "var(--border)",
ring: "var(--ring)",
accent: "var(--accent)",
"accent-foreground": "var(--accent-foreground)",
success: "var(--success)",
error: "var(--error)",
},
fontFamily: {
sans: ["var(--font-geist-sans)", "ui-sans-serif", "system-ui", "sans-serif"],
mono: ["var(--font-geist-mono)", "ui-monospace", "monospace"],
},
},
},
plugins: [],
};