-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathtailwind.config.js
More file actions
28 lines (28 loc) · 817 Bytes
/
tailwind.config.js
File metadata and controls
28 lines (28 loc) · 817 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
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{ts,tsx}'],
theme: {
extend: {
fontFamily: {
mono: ['"JetBrains Mono"', '"SF Mono"', '"Fira Code"', 'monospace'],
},
colors: {
base: 'var(--bg-base)',
elevated: 'var(--bg-elevated)',
surface: 'var(--bg-surface)',
hover: 'var(--bg-hover)',
primary: 'var(--text-primary)',
secondary: 'var(--text-secondary)',
muted: 'var(--text-muted)',
border: 'var(--border)',
'border-subtle': 'var(--border-subtle)',
working: 'var(--working)',
approval: 'var(--approval)',
waiting: 'var(--waiting)',
danger: 'var(--danger)',
accent: 'var(--accent)',
},
},
},
plugins: [],
}