Files
CA/frontend/tailwind.config.js

51 lines
1.1 KiB
JavaScript
Raw Normal View History

/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
primary: {
DEFAULT: '#2563EB',
light: '#3B82F6',
muted: '#DBEAFE',
},
success: {
DEFAULT: '#059669',
light: '#D1FAE5',
},
warning: {
DEFAULT: '#D97706',
light: '#FEF3C7',
},
danger: {
DEFAULT: '#DC2626',
light: '#FEE2E2',
},
bg: {
page: '#F8FAFC',
card: '#FFFFFF',
hover: '#F1F5F9',
active: '#E2E8F0',
},
text: {
primary: '#1E293B',
secondary: '#64748B',
muted: '#94A3B8',
},
border: {
DEFAULT: '#E2E8F0',
light: '#F1F5F9',
},
},
fontFamily: {
sans: ['Inter', 'Noto Sans SC', 'system-ui', 'sans-serif'],
display: ['Source Sans Pro', 'sans-serif'],
},
},
},
plugins: [],
}