-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
40 lines (40 loc) · 1.1 KB
/
tailwind.config.js
File metadata and controls
40 lines (40 loc) · 1.1 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}",
],
darkMode: 'class',
theme: {
extend: {
colors: {
'deep-dark': '#121212',
'card-dark': '#1A1A1A',
'hover-gray': '#282828',
'accent-orange': '#FF6B35',
'success-green': '#1ED760',
'warning-amber': '#FFA726',
'spotify-green': '#1DB954',
'text-primary': '#FFFFFF',
'text-secondary': '#B3B3B3',
'text-muted': '#6B7280',
},
fontFamily: {
'nunito': ['Nunito', 'sans-serif'],
'roboto': ['Roboto', 'sans-serif'],
'roboto-condensed': ['Roboto Condensed', 'sans-serif'],
'montserrat': ['Montserrat', 'sans-serif'],
},
boxShadow: {
'spotify-glow': '0 0 20px rgb(29, 185, 84, 0.3)',
'accent-glow': '0 0 24px rgb(255, 107, 53, 0.25)',
'card-elevated': '0 8px 32px rgba(0, 0, 0, 0.12)',
'card-hover': '0 16px 48px rgba(0, 0, 0, 0.15)',
},
screens: {
'xs': '380px',
},
},
},
plugins: [],
}