Files
2edd2275-633e-4a38-adca-b28…/tailwind.config.js
2026-01-14 14:15:45 +02:00

26 lines
600 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx}",
"./public/index.html"
],
theme: {
extend: {
colors: {
'nest-red': '#e0234e',
'nest-red-dark': '#c41e3a',
'nest-dark': '#1a1a1a',
'nest-gray': '#f5f5f5',
'nest-text': '#333333',
'nest-text-light': '#666666'
},
fontFamily: {
'sans': ['Inter', 'system-ui', 'sans-serif']
},
backgroundImage: {
'hero-pattern': "url('https://nestjs.com/img/hero-bg.jpg')"
}
}
},
plugins: []
}