-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
40 lines (40 loc) · 1.04 KB
/
tailwind.config.js
File metadata and controls
40 lines (40 loc) · 1.04 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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
primary: {
DEFAULT: '#8B5CF6',
dark: '#7C3AED',
light: '#A78BFA'
},
lightning: '#F7931A',
dark: {
DEFAULT: '#111827',
lighter: '#1F2937',
card: '#252836',
border: '#374151'
},
light: {
DEFAULT: '#F9FAFB',
muted: '#D1D5DB'
}
},
fontFamily: {
sans: ['Inter', 'ui-sans-serif', 'system-ui', 'sans-serif'],
mono: ['JetBrains Mono', 'ui-monospace', 'monospace']
},
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
},
boxShadow: {
'glow': '0 0 15px rgba(139, 92, 246, 0.5)'
}
},
},
plugins: [],
}