theme.scss 1.3 KB

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