mirror of
https://github.com/opengram-server/opengram.git
synced 2026-07-19 12:10:17 +03:00
49 lines
1.1 KiB
JavaScript
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: [],
|
|
}
|