editor-themes.scss 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. @mixin dark-editor-theme {
  2. --editor-type-color: #a78bfa;
  3. --editor-name-color: #60a5fa;
  4. --editor-operator-color: #818cf8;
  5. --editor-invalid-color: #f87171;
  6. --editor-separator-color: #9ca3af;
  7. --editor-meta-color: #9ca3af;
  8. --editor-variable-color: #34d399;
  9. --editor-link-color: #22d3ee;
  10. --editor-process-color: #e879f9;
  11. --editor-constant-color: #a78bfa;
  12. --editor-keyword-color: #f472b6;
  13. }
  14. @mixin light-editor-theme {
  15. --editor-type-color: #7c3aed;
  16. --editor-name-color: #dc2626;
  17. --editor-operator-color: #4f46e5;
  18. --editor-invalid-color: #dc2626;
  19. --editor-separator-color: #4b5563;
  20. --editor-meta-color: #4b5563;
  21. --editor-variable-color: #059669;
  22. --editor-link-color: #0891b2;
  23. --editor-process-color: #2563eb;
  24. --editor-constant-color: #c026d3;
  25. --editor-keyword-color: #db2777;
  26. }
  27. @mixin black-editor-theme {
  28. --editor-type-color: #a78bfa;
  29. --editor-name-color: #e879f9;
  30. --editor-operator-color: #818cf8;
  31. --editor-invalid-color: #f87171;
  32. --editor-separator-color: #9ca3af;
  33. --editor-meta-color: #9ca3af;
  34. --editor-variable-color: #34d399;
  35. --editor-link-color: #22d3ee;
  36. --editor-process-color: #a78bfa;
  37. --editor-constant-color: #60a5fa;
  38. --editor-keyword-color: #f472b6;
  39. }