-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
39 lines (39 loc) · 962 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
39 lines (39 loc) · 962 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/**/*.{ts,tsx}'],
darkMode: 'class',
theme: {
extend: {
colors: {
bg: {
DEFAULT: '#0b0d12',
panel: '#11141b',
subtle: '#161a23',
hover: '#1c2230',
},
border: {
DEFAULT: '#232838',
subtle: '#1a1e2a',
},
text: {
DEFAULT: '#e6e9ef',
muted: '#8b93a7',
dim: '#5b6378',
},
accent: {
DEFAULT: '#7c5cff',
hover: '#8e72ff',
subtle: '#7c5cff20',
},
success: '#3fb950',
warning: '#d29922',
danger: '#f85149',
},
fontFamily: {
sans: ['-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Inter', 'sans-serif'],
mono: ['SF Mono', 'JetBrains Mono', 'Menlo', 'Monaco', 'Consolas', 'monospace'],
},
},
},
plugins: [],
};