initial
This commit is contained in:
30
tailwind.config.js
Normal file
30
tailwind.config.js
Normal 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: [],
|
||||
};
|
||||
Reference in New Issue
Block a user