theme.scss 880 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. body {
  2. --neutral-color: #ffffff;
  3. --primary-color-alt: #fef3ce;
  4. --on-neutral-color: #000000;
  5. --primary-color: #0e2d32;
  6. --on-primary-color: #ffffff;
  7. --on-primary-color-alt: #caf5f4;
  8. --secondary-color: #9edbdd;
  9. --on-secondary-color: #262626;
  10. --neutral-color-alt: #dbdbdb;
  11. --on-neutral-color-alt: #000000;
  12. --standard-theme: #ffffff;
  13. --on-standard-theme: #000000;
  14. --alt-theme: #0e2d32;
  15. --on-alt-theme: #ffffff;
  16. }
  17. body {
  18. .alt-theme {
  19. background-color: var(--alt-theme);
  20. color: var(--on-alt-theme) !important;
  21. .v-btn {
  22. border-color: var(--on-alt-theme);
  23. }
  24. }
  25. .alt-theme * {
  26. color: var(--on-alt-theme) !important;
  27. }
  28. .alt-theme .inv-theme {
  29. background-color: var(--standard-theme);
  30. color: var(--on-standard-theme) !important;
  31. }
  32. .alt-theme .inv-theme * {
  33. color: var(--on-standard-theme) !important;
  34. }
  35. }