Files
1988df5d-33a6-4048-ba56-c61…/tailwind.config.js
2026-01-15 11:57:08 +02:00

25 lines
627 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx}",
],
theme: {
extend: {
colors: {
'nest-red': '#e0234e',
'nest-red-dark': '#c41e3a',
'nest-gray': '#1a1a1a',
'nest-gray-light': '#2a2a2a',
'nest-gray-lighter': '#f8f9fa',
'nest-text-gray': '#6c757d'
},
fontFamily: {
'sans': ['Inter', 'system-ui', 'sans-serif']
},
backgroundImage: {
'hero-gradient': 'linear-gradient(135deg, rgba(224, 35, 78, 0.1) 0%, rgba(26, 26, 26, 0.9) 100%)'
}
},
},
plugins: [],
}