35 lines
742 B
JavaScript
35 lines
742 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: [
|
|
"./index.html",
|
|
"./src/**/*.{js,ts,jsx,tsx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
primary: {
|
|
light: '#4a90e2',
|
|
DEFAULT: '#3b82f6',
|
|
dark: '#2563eb',
|
|
},
|
|
secondary: {
|
|
light: '#f59e0b',
|
|
DEFAULT: '#f97316',
|
|
dark: '#ea580c',
|
|
},
|
|
background: {
|
|
light: '#ffffff',
|
|
DEFAULT: '#f3f4f6',
|
|
dark: '#1f2937',
|
|
},
|
|
text: {
|
|
light: '#1f2937',
|
|
DEFAULT: '#374151',
|
|
dark: '#f9fafb',
|
|
},
|
|
},
|
|
},
|
|
},
|
|
darkMode: 'class', // This enables dark mode with the 'dark' class
|
|
plugins: [],
|
|
} |