Capital/tailwind.config.mjs

39 lines
902 B
JavaScript
Raw Normal View History

2024-12-16 22:55:58 +08:00
/** @type {import('tailwindcss').Config} */
export default {
2024-12-17 22:12:19 +08:00
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
2024-12-16 22:55:58 +08:00
theme: {
extend: {},
},
2024-12-17 22:12:19 +08:00
plugins: [require('@tailwindcss/typography'), require('daisyui')],
2024-12-16 22:55:58 +08:00
daisyui: {
themes: [
{
2024-12-17 22:12:19 +08:00
light: {
primary: '#3f51b5',
secondary: '#4ba6ee',
accent: '#03a9f4',
neutral: '#4b5563',
'base-100': '#ffffff',
info: '#4994ec',
success: '#67ad5b',
warning: '#f5c344',
error: '#e15241',
2024-12-16 22:55:58 +08:00
},
},
{
2024-12-17 22:12:19 +08:00
dark: {
primary: '#3f51b5',
secondary: '#4ba6ee',
accent: '#03a9f4',
neutral: '#1f2937',
'base-100': '#000011',
info: '#4994ec',
success: '#67ad5b',
warning: '#f5c344',
error: '#e15241',
2024-12-16 22:55:58 +08:00
},
},
],
},
2024-12-17 22:12:19 +08:00
}