-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
38 lines (38 loc) · 1.02 KB
/
tailwind.config.js
File metadata and controls
38 lines (38 loc) · 1.02 KB
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
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
darkMode: 'class',
theme: {
extend: {
colors: {
bg: 'var(--bg)',
panel: 'var(--panel)',
'panel-2': 'var(--panel-2)',
border: 'var(--border)',
text: 'var(--text)',
'text-muted': 'var(--text-muted)',
primary: 'var(--primary)',
'primary-hover': 'var(--primary-hover)',
danger: 'var(--danger)',
success: 'var(--success)',
warning: 'var(--warning)',
},
fontFamily: {
sans: [
'system-ui',
'-apple-system',
'BlinkMacSystemFont',
'Segoe UI',
'Roboto',
'sans-serif',
],
mono: ['Monaco', 'Menlo', 'Ubuntu Mono', 'Consolas', 'monospace'],
},
boxShadow: {
panel: '0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1)',
'panel-dark':
'0 1px 3px 0 rgb(0 0 0 / 0.3), 0 1px 2px -1px rgb(0 0 0 / 0.3)',
},
},
},
plugins: [],
};