-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
52 lines (52 loc) · 1.46 KB
/
tailwind.config.js
File metadata and controls
52 lines (52 loc) · 1.46 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./index.tsx",
"./App.tsx",
"./components/**/*.{js,ts,jsx,tsx}",
"./services/**/*.{js,ts,jsx,tsx}",
"./examples/**/*.{js,ts,jsx,tsx}",
"./xxxx/**/*.{js,ts,jsx,tsx}",
],
darkMode: ['class', '[data-theme="dark"]'],
theme: {
extend: {
colors: {
labstx: {
black: 'var(--bg-primary)',
dark: 'var(--bg-secondary)',
panel: 'var(--bg-tertiary)',
hover: 'var(--bg-hover)',
orange: 'var(--stx-orange)',
purple: 'var(--stx-purple)',
accent: 'var(--stx-orange)',
redDim: 'var(--red-dim)',
text: 'var(--text-primary)',
muted: 'var(--text-secondary)',
border: 'var(--border-color)'
},
caspier: {
black: 'var(--bg-primary)',
dark: 'var(--bg-secondary)',
panel: 'var(--bg-tertiary)',
hover: 'var(--bg-hover)',
text: 'var(--text-primary)',
muted: 'var(--text-secondary)',
border: 'var(--border-color)',
red: 'var(--stx-orange)',
active: 'var(--stx-orange)'
}
},
fontFamily: {
sans: ['Inter', 'sans-serif'],
mono: ['JetBrains Mono', 'monospace'],
},
boxShadow: {
'neobrutal': '4px 4px 0 0 var(--stx-orange)',
'neobrutal-sm': '2px 2px 0 0 var(--stx-orange)',
}
},
},
plugins: [],
}