variable.scss 200 B

123456789101112131415
  1. :root {
  2. --themeBagColor: red;
  3. }
  4. .theme-default {
  5. --themeBagColor: #fff;
  6. }
  7. .theme-dark {
  8. --themeBagColor: black;
  9. }
  10. .theme-red {
  11. --themeBagColor: red;
  12. }
  13. .theme-blue {
  14. --themeBagColor: blue;
  15. }