Initial commit
This commit is contained in:
39
tailwind.config.js
Normal file
39
tailwind.config.js
Normal file
@@ -0,0 +1,39 @@
|
||||
/** @type {import('tailwindcss').Config} */
|
||||
module.exports = {
|
||||
content: [
|
||||
"./src/**/*.{js,jsx,ts,tsx}",
|
||||
],
|
||||
theme: {
|
||||
extend: {
|
||||
colors: {
|
||||
primary: {
|
||||
50: '#fef2f2',
|
||||
100: '#fee2e2',
|
||||
200: '#fecaca',
|
||||
300: '#fca5a5',
|
||||
400: '#f87171',
|
||||
500: '#ef4444',
|
||||
600: '#dc2626',
|
||||
700: '#b91c1c',
|
||||
800: '#991b1b',
|
||||
900: '#7f1d1d',
|
||||
},
|
||||
brand: {
|
||||
pink: '#e91e63',
|
||||
red: '#dc2626',
|
||||
dark: '#1a1a1a',
|
||||
gray: '#6b7280',
|
||||
'light-gray': '#f3f4f6',
|
||||
}
|
||||
},
|
||||
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: [],
|
||||
}
|
||||
Reference in New Issue
Block a user