app.css 228 B

123456789101112
  1. @import 'tailwindcss';
  2. @import '@fontsource/fira-mono';
  3. @custom-variant dark (&:where(.dark, .dark *));
  4. html[data-theme='loading'] {
  5. display: none;
  6. }
  7. body {
  8. @apply bg-white text-gray-900 dark:bg-gray-900 dark:text-white;
  9. }