theme.scss 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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. --artist-color: #FAC20A;
  17. --school-color: #2093be;
  18. --manager-color: #D8050B;
  19. --action-menu-primary-color: #0e2d32;
  20. --action-menu-on-primary-color: #ffffff;
  21. --action-menu-secondary-color: #9edbdd;
  22. --action-menu-on-secondary-color: #262626;
  23. }
  24. body {
  25. // Le thème inversé dans le thème standard est équivalent au thème alternatif
  26. .inv-theme {
  27. background-color: var(--alt-theme);
  28. color: var(--on-alt-theme) !important;
  29. .v-btn {
  30. border-color: var(--on-alt-theme);
  31. }
  32. }
  33. .inv-theme * {
  34. color: var(--on-alt-theme) !important;
  35. }
  36. // Thème alernatif
  37. .alt-theme {
  38. background-color: var(--alt-theme);
  39. color: var(--on-alt-theme) !important;
  40. .v-btn {
  41. border-color: var(--on-alt-theme);
  42. }
  43. }
  44. .alt-theme * {
  45. color: var(--on-alt-theme) !important;
  46. }
  47. // Thème inversé
  48. .alt-theme .inv-theme {
  49. background-color: var(--standard-theme);
  50. color: var(--on-standard-theme) !important;
  51. }
  52. .alt-theme .inv-theme * {
  53. color: var(--on-standard-theme) !important;
  54. }
  55. }