-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
44 lines (44 loc) · 1.18 KB
/
tailwind.config.js
File metadata and controls
44 lines (44 loc) · 1.18 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
/** @type {import(T).Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
"./utils/**/*.{js,ts,jsx,tsx}",
"./App.tsx",
"./index.tsx"
],
theme: {
extend: {
colors: {
background: 'var(--bg-main)',
card: 'var(--bg-card)',
surface: 'var(--bg-surface)',
border: 'var(--border-color)',
primary: 'var(--text-main)',
muted: 'var(--text-muted)',
accent: 'var(--accent-color)',
neon: {
green: 'var(--accent-color)',
}
},
boxShadow: {
'neon': '0 0 10px var(--accent-color), 0 0 20px var(--accent-color)',
'neon-hover': '0 0 20px var(--accent-color), 0 0 40px var(--accent-color)'
},
fontFamily: {
sans: ['var(--app-font)', 'ui-sans-serif', 'system-ui'],
mono: ['ui-monospace', 'SFMono-Regular', 'Menlo', 'Monaco', 'Consolas', "Liberation Mono", "Courier New", 'monospace'],
},
screens: {
'xs': '375px',
'sm': '640px',
'md': '768px',
'lg': '1024px',
'xl': '1280px',
'2xl': '1536px',
}
}
},
plugins: [],
}