39 lines
950 B
JavaScript
39 lines
950 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
|
|
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
|
|
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
'rooftop-yellow': '#fcd913',
|
|
'deep-charcoal': '#0a0a0a',
|
|
'near-black': '#111111',
|
|
'card-surface': '#1a1a1a',
|
|
'muted-border': '#2a2a3a',
|
|
'muted-text': '#8b9bb4',
|
|
},
|
|
fontFamily: {
|
|
'exo': ['var(--font-exo-2)', 'sans-serif'],
|
|
},
|
|
animation: {
|
|
'fade-in': 'fadeIn 0.2s ease-out',
|
|
'scale-in': 'scaleIn 0.15s ease-out',
|
|
},
|
|
keyframes: {
|
|
fadeIn: {
|
|
'0%': { opacity: '0' },
|
|
'100%': { opacity: '1' },
|
|
},
|
|
scaleIn: {
|
|
'0%': { transform: 'scale(0.95)' },
|
|
'100%': { transform: 'scale(1)' },
|
|
},
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|