-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
39 lines (38 loc) · 981 Bytes
/
tailwind.config.js
File metadata and controls
39 lines (38 loc) · 981 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
// Theme-aware colors (reference CSS vars)
background: 'var(--bg)',
surface: 'var(--surface)',
foreground: 'var(--text-primary)',
'foreground-secondary': 'var(--text-secondary)',
'foreground-muted': 'var(--text-muted)',
border: 'var(--border-color)',
ring: 'var(--ring)',
// Brand colors (static)
primary: '#FFAA00',
secondary: '#0032A0',
accent: '#e4002b',
success: '#00843D',
},
fontFamily: {
nunito: ['Nunito', 'sans-serif'],
inter: ['Inter', 'sans-serif'],
worksans: ['Work Sans', 'sans-serif'],
},
borderRadius: {
sm: '0.15rem',
DEFAULT: '0.15rem',
md: '0.15rem',
lg: '0.15rem',
},
},
},
plugins: [],
}