Files
653cb0a3-3e49-409d-9daa-4dc…/tailwind.config.js
2026-01-15 12:54:49 +02:00

24 lines
549 B
JavaScript

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