storybook.module.scss 286 B

1234567891011121314151617181920
  1. @use "../src/theme.scss";
  2. html,
  3. body {
  4. height: 100%;
  5. width: 100%;
  6. }
  7. :root {
  8. --primary-background: #{theme.color("background", "primary")};
  9. --secondary-background: #{theme.color("background", "secondary")};
  10. }
  11. .light {
  12. color-scheme: light;
  13. }
  14. .dark {
  15. color-scheme: dark;
  16. }