Files
2026-06-05 00:53:35 +03:00

49 lines
1.1 KiB
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
fontFamily: {
heading: ['Outfit', 'sans-serif'],
sans: ['Inter', 'sans-serif'],
},
colors: {
bg: {
app: 'var(--bg-app)',
side: 'var(--bg-side)',
panel: 'var(--bg-panel)',
},
fg: {
DEFAULT: 'var(--fg)',
muted: 'var(--fg-muted)',
},
accent: {
DEFAULT: 'var(--accent)',
glow: 'var(--accent-glow)',
},
border: 'var(--border)',
glass: 'var(--glass)',
success: 'var(--success)',
// Keep primary as an alias to accent for compatibility or gradual migration
primary: {
DEFAULT: 'var(--accent)',
50: '#ecfeff',
100: '#cffafe',
200: '#a5f3fc',
300: '#67e8f9',
400: '#22d3ee',
500: '#06b6d4',
600: '#0891b2',
700: '#0e7490',
800: '#155e75',
900: '#164e63',
}
}
},
},
plugins: [],
}