26 lines
600 B
JavaScript
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: []
|
|
} |