15 lines
368 B
JavaScript
15 lines
368 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
|
|
darkMode: 'class',
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
primary: { DEFAULT: '#1e40af', light: '#3b82f6', dark: '#1e3a8a' },
|
|
sidebar: { DEFAULT: '#0f172a', text: '#94a3b8', hover: '#1e293b' }
|
|
}
|
|
}
|
|
},
|
|
plugins: []
|
|
}
|