Files
bdd6f1ed-6fea-4c0b-8ab9-4cf…/tailwind.config.js
2026-01-19 17:53:47 +02:00

39 lines
939 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx}",
],
theme: {
extend: {
colors: {
primary: {
50: '#fef2f2',
100: '#fee2e2',
200: '#fecaca',
300: '#fca5a5',
400: '#f87171',
500: '#ef4444',
600: '#dc2626',
700: '#b91c1c',
800: '#991b1b',
900: '#7f1d1d',
},
brand: {
pink: '#e91e63',
red: '#dc2626',
dark: '#1a1a1a',
gray: '#6b7280',
'light-gray': '#f3f4f6',
}
},
fontFamily: {
sans: ['Inter', 'system-ui', 'sans-serif'],
},
backgroundImage: {
'hero-pattern': "url('https://enterprise.nestjs.com/header-2.50296714.jpg')",
'support-pattern': "url('https://enterprise.nestjs.com/support.cbdb04e7.png')",
}
},
},
plugins: [],
}