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

26 lines
669 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx}",
"./public/index.html"
],
theme: {
extend: {
colors: {
'nest-red': '#e53e3e',
'nest-pink': '#ed64a6',
'nest-dark': '#1a202c',
'nest-gray': '#2d3748',
'nest-light-gray': '#f7fafc'
},
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: []
}