Free and open source ticket system written in python
at main 43 lines 848 B view raw
1@import "tailwindcss"; 2@source "../paw/templates/**/*.{html,js}"; 3@source "../status/templates/**/*.{html,js}"; 4@plugin "daisyui" { 5 themes: nord --default, dark --prefersdark; 6}; 7@plugin "daisyui/theme" { 8 name: nord; 9 default: true; 10 prefersdark: false; 11 color-scheme: light; 12}; 13@plugin "daisyui/theme" { 14 name: dark; 15 default: false; 16 prefersdark: true; 17 color-scheme: dark; 18 19 --color-accent: #88C0D0; 20 --color-secondary: #81A1C1; 21 --color-success: #A3BE8C; 22 --color-warning: #EBCB8B; 23 --color-error: #BF616A; 24 25 --rounded-box: 0.4rem; 26 --rounded-btn: 0.2rem; 27 --rounded-badge: 0.4rem; 28 --tab-radius: 0.2rem; 29}; 30 31@layer base { 32 *, 33 ::after, 34 ::before, 35 ::backdrop, 36 ::file-selector-button { 37 border-color: var(--color-gray-200, currentcolor); 38 } 39} 40 41.fieldset-legend { 42 @apply fieldset-legend text-base-content/80; 43}