-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
37 lines (36 loc) · 922 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
37 lines (36 loc) · 922 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
32
33
34
35
36
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./src/components/**/*.{js,ts,jsx,tsx}",
"./src/*.{js,ts,jsx,tsx}"
],
theme: {
extend: {
fontFamily: {
"inter": ["Inter", "sans-serif"],
"space": ["Space Grotesk", "sans-serif"],
},
colors: {
"dark": "#0f0f23",
"darker": "#1a1a2e",
"primary": "#16213e",
"secondary": "#0e3460",
"accent": "#06b6d4",
"purple": "#8b5cf6",
"pink": "#ec4899",
"success": "#00ff88",
"warning": "#ffaa00",
"danger": "#ff3366",
"text-primary": "#ffffff",
"text-secondary": "#b8c5d6",
"text-muted": "#8892a6",
"border": "#2d3748",
"card": "#1e2a3a",
},
backgroundImage: {
'button-gradient': 'linear-gradient(135deg, #00d4ff 0%, #8b5cf6 100%)',
},
},
},
plugins: [],
}