theme.scss 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. .theme-primary {
  2. background-color: rgb(var(--v-theme-primary)) !important;
  3. color: rgb(var(--v-theme-on-primary)) !important;
  4. }
  5. .theme-secondary {
  6. background-color: rgb(var(--v-theme-secondary)) !important;
  7. color: rgb(var(--v-theme-on-secondary)) !important;
  8. }
  9. .theme-neutral-strong {
  10. background-color: rgb(var(--v-theme-neutral-strong)) !important;
  11. color: rgb(var(--v-theme-on-neutral-strong)) !important;
  12. }
  13. .theme-neutral {
  14. background-color: rgb(var(--v-theme-neutral)) !important;
  15. color: rgb(var(--v-theme-on-neutral)) !important;
  16. a {
  17. color: rgb(var(--v-theme-on-neutral--clickable)) !important;
  18. }
  19. }
  20. .theme-neutral-soft {
  21. background-color: rgb(var(--v-theme-neutral-soft)) !important;
  22. color: rgb(var(--v-theme-on-neutral-soft)) !important;
  23. }
  24. .theme-danger {
  25. background-color: rgb(var(--v-theme-danger)) !important;
  26. color: rgb(var(--v-theme-on-danger)) !important;
  27. }
  28. .theme-success {
  29. background-color: rgb(var(--v-theme-success)) !important;
  30. color: rgb(var(--v-theme-on-success)) !important;
  31. }
  32. .theme-warning {
  33. background-color: rgb(var(--v-theme-warning)) !important;
  34. color: rgb(var(--v-theme-on-warning)) !important;
  35. }
  36. .theme-info {
  37. background-color: rgb(var(--v-theme-info)) !important;
  38. color: rgb(var(--v-theme-on-info)) !important;
  39. }
  40. .theme-x-create-btn {
  41. background-color: rgb(var(--v-theme-x-create-btn)) !important;
  42. color: rgb(var(--v-theme-on-x-create-btn)) !important;
  43. }