syntax-variables.less 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. // This file has fallback variables. It specifies all syntax variables that
  2. // themes must implement if they include a syntax-variables.less file.
  3. // General colors
  4. @syntax-text-color: #333;
  5. @syntax-cursor-color: #333;
  6. @syntax-selection-color: #69c;
  7. @syntax-selection-flash-color: #00f; // Color the selection is 'flashed' when you run find next
  8. @syntax-background-color: #fff;
  9. // Guide colors
  10. @syntax-wrap-guide-color: #ccc;
  11. @syntax-indent-guide-color: #ccc;
  12. @syntax-invisible-character-color: #ccc;
  13. // For find and replace markers
  14. @syntax-result-marker-color: #444;
  15. @syntax-result-marker-color-selected: #000;
  16. // Gutter colors
  17. @syntax-gutter-text-color: #333;
  18. @syntax-gutter-text-color-selected: #000;
  19. @syntax-gutter-background-color: #ccc;
  20. @syntax-gutter-background-color-selected: #eee;
  21. // For git diff info. i.e. in the gutter
  22. @syntax-color-added: green;
  23. @syntax-color-modified: orange;
  24. @syntax-color-removed: red;
  25. @syntax-color-renamed: blue;
  26. // For language entity colors
  27. @syntax-color-variable: #DF6A73;
  28. @syntax-color-constant: #DF6A73;
  29. @syntax-color-property: #DF6A73;
  30. @syntax-color-value: #D29B67;
  31. @syntax-color-function: #61AEEF;
  32. @syntax-color-method: @syntax-color-function;
  33. @syntax-color-class: #E5C17C;
  34. @syntax-color-keyword: #a431c4;
  35. @syntax-color-tag: #b72424;
  36. @syntax-color-attribute: #87400d;
  37. @syntax-color-import: #97C378;
  38. @syntax-color-snippet: #97C378;