26 lines
795 B
JavaScript
26 lines
795 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
"./src/**/*.{js,jsx,ts,tsx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
'nest-pink': '#e91e63',
|
|
'nest-pink-dark': '#c2185b',
|
|
'nest-red': '#ea384c',
|
|
'nest-red-dark': '#d32f2f',
|
|
'gray-850': '#1f2937',
|
|
'gray-950': '#0f172a'
|
|
},
|
|
fontFamily: {
|
|
'sans': ['-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', '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: [],
|
|
} |