themes.scss 987 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. @import "./base-themes.scss";
  2. @import "./editor-themes.scss";
  3. @import "./accent-themes.scss";
  4. :root {
  5. @include base-theme;
  6. @include dark-theme;
  7. @include green-theme;
  8. @include dark-editor-theme;
  9. }
  10. :root.light {
  11. @include light-theme;
  12. @include light-editor-theme;
  13. color-scheme: light;
  14. }
  15. :root.dark {
  16. @include dark-theme;
  17. @include dark-editor-theme;
  18. color-scheme: dark;
  19. }
  20. :root.black {
  21. @include black-theme;
  22. @include black-editor-theme;
  23. color-scheme: dark;
  24. }
  25. :root[data-accent="blue"] {
  26. @include blue-theme;
  27. }
  28. :root[data-accent="green"] {
  29. @include green-theme;
  30. }
  31. :root[data-accent="teal"] {
  32. @include teal-theme;
  33. }
  34. :root[data-accent="indigo"] {
  35. @include indigo-theme;
  36. }
  37. :root[data-accent="purple"] {
  38. @include purple-theme;
  39. }
  40. :root[data-accent="orange"] {
  41. @include orange-theme;
  42. }
  43. :root[data-accent="pink"] {
  44. @include pink-theme;
  45. }
  46. :root[data-accent="red"] {
  47. @include red-theme;
  48. }
  49. :root[data-accent="yellow"] {
  50. @include yellow-theme;
  51. }