Files
868f1281-e788-43a8-ad95-a1f…/tailwind.config.js
2026-01-15 14:05:51 +02:00

24 lines
548 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx}",
],
theme: {
extend: {
colors: {
'nest-red': '#e53e3e',
'nest-pink': '#e91e63',
'nest-dark': '#1a1a1a',
'nest-gray': '#6b7280',
'nest-light-gray': '#f3f4f6'
},
fontFamily: {
'sans': ['Inter', 'system-ui', 'sans-serif']
},
backgroundImage: {
'hero-pattern': 'linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%)'
}
},
},
plugins: [],
}