theme.scss 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. body {
  2. --neutral-color: #ffffff;
  3. --primary-color-alt: #fef3ce;
  4. --on-neutral-color: #000000;
  5. --on-neutral-color-light: #888888;
  6. --on-neutral-color-extra-light: #d9d9d9;
  7. --primary-color: #0e2d32;
  8. --on-primary-color: #ffffff;
  9. --on-primary-color-alt: #caf5f4;
  10. --secondary-color: #9edbdd;
  11. --secondary-color-light: #c6eaeb;
  12. --on-secondary-color: #262626;
  13. --neutral-color-alt: #dbdbdb;
  14. --neutral-color-alt-strong: #999999;
  15. --on-neutral-color-alt: #000000;
  16. --standard-theme: #ffffff;
  17. --on-standard-theme: #000000;
  18. --alt-theme: #0e2d32;
  19. --on-alt-theme: #ffffff;
  20. --artist-color: #FAC20A;
  21. --school-color: #2093be;
  22. --manager-color: #D8050B;
  23. --action-menu-primary-color: #0e2d32;
  24. --action-menu-on-primary-color: #ffffff;
  25. --action-menu-secondary-color: #9edbdd;
  26. --action-menu-on-secondary-color: #262626;
  27. --scroll-menu-primary-color: #0e2d32;
  28. --scroll-menu-on-primary-color: #ffffff;
  29. --artist-color-light: #fef3ce;
  30. --school-color-light: #a5d4e5;
  31. --manager-color-light: #f7cdce;
  32. }
  33. body {
  34. // Le thème inversé dans le thème standard est équivalent au thème alternatif
  35. .inv-theme {
  36. background-color: var(--alt-theme);
  37. color: var(--on-alt-theme) !important;
  38. .v-btn {
  39. border-color: var(--on-alt-theme) !important;
  40. }
  41. }
  42. .inv-theme * {
  43. color: var(--on-alt-theme) !important;
  44. }
  45. // Thème alternatif
  46. .alt-theme {
  47. background-color: var(--alt-theme);
  48. color: var(--on-alt-theme) !important;
  49. .v-btn {
  50. border-color: var(--on-alt-theme) !important;
  51. }
  52. }
  53. .alt-theme * {
  54. color: var(--on-alt-theme) !important;
  55. }
  56. // Thème inversé
  57. .alt-theme .inv-theme {
  58. background-color: var(--standard-theme);
  59. color: var(--on-standard-theme) !important;
  60. }
  61. .alt-theme .inv-theme * {
  62. color: var(--on-standard-theme) !important;
  63. }
  64. }