31 lines
728 B
JavaScript
31 lines
728 B
JavaScript
/** @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: [],
|
|
};
|