-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.cjs
More file actions
31 lines (31 loc) · 883 Bytes
/
tailwind.config.cjs
File metadata and controls
31 lines (31 loc) · 883 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
module.exports = {
content: [
"./app/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
"./src/**/*.{js,ts,jsx,tsx}"
],
darkMode: 'class',
theme: {
extend: {
colors: {
primary: '#4f46e5',
electric: '#3b82f6',
background: '#0a0a0a'
},
fontFamily: {
heading: ['Space Grotesk', 'Inter', 'ui-sans-serif', 'system-ui'],
body: ['Inter', 'ui-sans-serif', 'system-ui']
},
textColor: {
'theme-primary': 'rgb(var(--text-primary) / <alpha-value>)',
'theme-secondary': 'rgb(var(--text-secondary) / <alpha-value>)',
'theme-tertiary': 'rgb(var(--text-tertiary) / <alpha-value>)'
},
backgroundColor: {
'theme-bg': 'rgb(var(--bg-primary) / <alpha-value>)',
'theme-card': 'rgb(var(--bg-card) / <alpha-value>)'
}
}
},
plugins: []
}