theme.scss 1.7 KB

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