theme.scss 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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. // Le thème inversé dans le thème standard est équivalent au thème alternatif
  19. .inv-theme {
  20. background-color: var(--alt-theme);
  21. color: var(--on-alt-theme) !important;
  22. .v-btn {
  23. border-color: var(--on-alt-theme);
  24. }
  25. }
  26. .inv-theme * {
  27. color: var(--on-alt-theme) !important;
  28. }
  29. // Thème alernatif
  30. .alt-theme {
  31. background-color: var(--alt-theme);
  32. color: var(--on-alt-theme) !important;
  33. .v-btn {
  34. border-color: var(--on-alt-theme);
  35. }
  36. }
  37. .alt-theme * {
  38. color: var(--on-alt-theme) !important;
  39. }
  40. // Thème inversé
  41. .alt-theme .inv-theme {
  42. background-color: var(--standard-theme);
  43. color: var(--on-standard-theme) !important;
  44. }
  45. .alt-theme .inv-theme * {
  46. color: var(--on-standard-theme) !important;
  47. }
  48. }