-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
42 lines (42 loc) · 1.32 KB
/
Copy pathtailwind.config.js
File metadata and controls
42 lines (42 loc) · 1.32 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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
"./hooks/**/*.{js,ts,jsx,tsx}",
"./data/**/*.{js,ts,jsx,tsx}",
],
darkMode: 'class',
theme: {
extend: {
fontFamily: {
sans: ['Outfit', 'sans-serif'],
serif: ['Playfair Display', 'serif'],
mono: ['JetBrains Mono', 'monospace'],
},
colors: {
premium: {
black: 'var(--premium-black)',
dark: 'var(--premium-dark)',
gray: 'var(--premium-gray)',
gold: 'var(--premium-gold)',
glass: 'var(--bg-glass)',
accent: '#3b82f6',
},
content: {
primary: 'var(--content-primary)',
secondary: 'var(--content-secondary)',
muted: 'var(--content-muted)',
},
border: {
primary: 'var(--border-primary)',
}
},
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
}
},
},
plugins: [],
}