Initial commit
This commit is contained in:
26
tailwind.config.js
Normal file
26
tailwind.config.js
Normal file
@@ -0,0 +1,26 @@
|
||||
/** @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: []
|
||||
}
|
||||
Reference in New Issue
Block a user