This commit is contained in:
2025-08-12 17:51:40 +07:00
commit 2e396f32b9
35 changed files with 11038 additions and 0 deletions

30
tailwind.config.js Normal file
View File

@@ -0,0 +1,30 @@
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
colors: {
primary: {
DEFAULT: "#059669", // green-600
foreground: "#ffffff",
},
secondary: {
DEFAULT: "#f3f4f6", // gray-100
foreground: "#111827", // gray-900
},
destructive: {
DEFAULT: "#dc2626", // red-600
foreground: "#ffffff",
},
muted: {
DEFAULT: "#f9fafb", // gray-50
foreground: "#6b7280", // gray-500
},
},
fontFamily: {
sans: ["Inter", "system-ui", "sans-serif"],
},
},
},
plugins: [],
};