Spaces:
Build error
Build error
File size: 895 Bytes
f758393 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | /** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx}",
"./public/index.html"
],
theme: {
extend: {
colors: {
primary: {
DEFAULT: '#4F46E5',
50: '#EBEAFC',
100: '#D7D5FA',
200: '#AFAAF5',
300: '#867FF1',
400: '#5E54EC',
500: '#4F46E5',
600: '#2D23D3',
700: '#221BA0',
800: '#17136D',
900: '#0C0B3A'
},
secondary: {
DEFAULT: '#6B7280',
50: '#F9FAFB',
100: '#F3F4F6',
200: '#E5E7EB',
300: '#D1D5DB',
400: '#9CA3AF',
500: '#6B7280',
600: '#4B5563',
700: '#374151',
800: '#1F2937',
900: '#111827'
}
}
}
},
plugins: [
require('@tailwindcss/typography')
]
} |