-
-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathtailwind.config.js
More file actions
49 lines (49 loc) · 1.03 KB
/
tailwind.config.js
File metadata and controls
49 lines (49 loc) · 1.03 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
export default {
content: [
"./src/**/*.{js,jsx,ts,tsx}",
'./**/node_modules/react-tailwindcss-select/**/*/*.esm.js',
"./index.html"
],
corePlugins: {
backdropFilter: true,
},
theme: {
extend: {
colors: {
// Glass theme colors
glass: {
card: 'rgba(28, 28, 28, 0.65)',
text: '#E5E7EB',
border: 'rgba(255, 255, 255, 0.1)'
},
// Light theme colors
light: {
card: 'rgba(255, 255, 255, 0.85)',
text: '#333333',
border: 'rgba(0, 0, 0, 0.1)'
},
// Dark theme colors
dark: {
card: 'rgba(30, 30, 30, 0.95)',
text: '#E0E0E0',
border: 'rgba(255, 255, 255, 0.05)'
}
},
backdropFilter: {
'none': 'none',
'blur': 'blur(4px)',
'blur-lg': 'blur(16px)',
}
},
},
build: {
target: 'esnext',
rollupOptions: {
output: {
manualChunks: undefined,
format: 'esm'
}
}
},
plugins: [],
}