editor-themes.scss 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. @mixin light-editor-theme {
  2. --editor-type-color: theme("colors.violet.600");
  3. --editor-name-color: theme("colors.red.600");
  4. --editor-operator-color: theme("colors.indigo.600");
  5. --editor-invalid-color: theme("colors.red.600");
  6. --editor-separator-color: theme("colors.gray.600");
  7. --editor-meta-color: theme("colors.gray.600");
  8. --editor-variable-color: theme("colors.emerald.600");
  9. --editor-link-color: theme("colors.cyan.600");
  10. --editor-process-color: theme("colors.blue.600");
  11. --editor-constant-color: theme("colors.fuchsia.600");
  12. --editor-keyword-color: theme("colors.pink.600");
  13. }
  14. @mixin dark-editor-theme {
  15. --editor-type-color: theme("colors.violet.400");
  16. --editor-name-color: theme("colors.blue.400");
  17. --editor-operator-color: theme("colors.indigo.400");
  18. --editor-invalid-color: theme("colors.red.400");
  19. --editor-separator-color: theme("colors.gray.400");
  20. --editor-meta-color: theme("colors.gray.400");
  21. --editor-variable-color: theme("colors.emerald.400");
  22. --editor-link-color: theme("colors.cyan.400");
  23. --editor-process-color: theme("colors.fuchsia.400");
  24. --editor-constant-color: theme("colors.violet.400");
  25. --editor-keyword-color: theme("colors.pink.400");
  26. }
  27. @mixin black-editor-theme {
  28. --editor-type-color: theme("colors.violet.400");
  29. --editor-name-color: theme("colors.fuchsia.400");
  30. --editor-operator-color: theme("colors.indigo.400");
  31. --editor-invalid-color: theme("colors.red.400");
  32. --editor-separator-color: theme("colors.gray.400");
  33. --editor-meta-color: theme("colors.gray.400");
  34. --editor-variable-color: theme("colors.emerald.400");
  35. --editor-link-color: theme("colors.cyan.400");
  36. --editor-process-color: theme("colors.violet.400");
  37. --editor-constant-color: theme("colors.blue.400");
  38. --editor-keyword-color: theme("colors.pink.400");
  39. }