Files
dcff1a90-a2ae-4b99-a0e2-31c…/tailwind.config.js
2026-01-19 17:36:28 +02:00

25 lines
645 B
JavaScript

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