1@import 'tailwindcss';
2@plugin "daisyui" {
3 themes:
4 fantasy --default,
5 dracula --prefersdark;
6}
7
8@theme {
9 --font-sans:
10 'Inter', ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji',
11 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
12}
13
14html,
15body {
16 @apply bg-white dark:bg-gray-950;
17
18 @media (prefers-color-scheme: dark) {
19 color-scheme: dark;
20 }
21}
22
23a,
24button {
25 cursor: pointer;
26}