31 lines
890 B
JavaScript
31 lines
890 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ['./src/**/*.{js,jsx,ts,tsx}', './app/**/*.{js,jsx,ts,tsx}'],
|
|
darkMode: 'class',
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
'music-black': '#0a0a0a',
|
|
'music-dark': '#121212',
|
|
'music-card': '#1a1a1a',
|
|
'music-border': '#2a2a2a',
|
|
'music-muted': '#888888',
|
|
'music-text': '#e0e0e0',
|
|
'music-text-dim': '#999999',
|
|
'music-accent': '#f5c542',
|
|
'music-vinyl': '#1a1a2e',
|
|
'mood-sad': '#1a2a4a',
|
|
'mood-happy': '#f5c542',
|
|
'mood-energetic': '#e63946',
|
|
'mood-focused': '#2d6a4f',
|
|
'mood-chill': '#48957e',
|
|
'mood-romantic': '#bc6a7e',
|
|
'mood-angry': '#9d0208',
|
|
'mood-nostalgic': '#a67c52',
|
|
'mood-melancholy': '#5a189c',
|
|
'mood-dreamy': '#9b5de5',
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
} |