-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
38 lines (38 loc) · 1.2 KB
/
tailwind.config.js
File metadata and controls
38 lines (38 loc) · 1.2 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
/** @type {import('tailwindcss').Config} */
export default {
darkMode: 'class',
content: [
'./index.html',
'./src/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {
colors: {
'ide-bg': 'var(--ide-bg)',
'ide-panel': 'var(--ide-panel)',
'ide-border': 'var(--ide-border)',
'ide-text': 'var(--ide-text)',
'ide-muted': 'var(--ide-muted)',
'ide-accent': 'var(--ide-accent)',
'ide-active': 'var(--ide-active)',
'ide-hover': 'var(--ide-hover)',
'ide-error': 'var(--ide-error)',
'ide-success': 'var(--ide-success)',
'ide-warning': 'var(--ide-warning)',
'ide-warning-muted': 'var(--ide-warning-muted)',
'ide-warning-bg': 'var(--ide-warning-bg)',
'ide-warning-border': 'var(--ide-warning-border)',
'ide-info-success': 'var(--ide-info-success)',
'ide-timeline-bg': 'var(--ide-timeline-bg)',
},
boxShadow: {
card: '0 10px 30px rgba(0,0,0,0.35)',
},
fontFamily: {
sans: ['Source Han Sans SC', 'system-ui', 'sans-serif'],
mono: ['JetBrains Mono', 'SFMono-Regular', 'Menlo', 'Source Han Sans SC', 'monospace'],
},
},
},
plugins: [],
};