49 lines
1.1 KiB
JavaScript
49 lines
1.1 KiB
JavaScript
import typography from '@tailwindcss/typography';
|
|
import daisyui from 'daisyui';
|
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
// Custom color palette for better dark mode support
|
|
gray: {
|
|
50: '#f9fafb',
|
|
100: '#f3f4f6',
|
|
200: '#e5e7eb',
|
|
300: '#d1d5db',
|
|
400: '#9ca3af',
|
|
500: '#6b7280',
|
|
600: '#4b5563',
|
|
700: '#374151',
|
|
800: '#1f2937',
|
|
900: '#111827',
|
|
950: '#030712',
|
|
},
|
|
orange: {
|
|
50: '#fff7ed',
|
|
100: '#ffedd5',
|
|
200: '#fed7aa',
|
|
300: '#fdba74',
|
|
400: '#fb923c',
|
|
500: '#f97316',
|
|
600: '#ea580c',
|
|
700: '#c2410c',
|
|
800: '#9a3412',
|
|
900: '#7c2d12',
|
|
950: '#431407',
|
|
}
|
|
}
|
|
},
|
|
},
|
|
plugins: [
|
|
typography,
|
|
daisyui
|
|
],
|
|
daisyui: {
|
|
// Add your daisy ui themes here
|
|
themes: ["night"],
|
|
},
|
|
}
|