Files
claim-guard-fe/tailwind.config.js
2025-08-12 17:51:40 +07:00

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: [],
};