3 // This defines all syntax variables that syntax themes must implement when they
4 // include a syntax-variables.less file.
7 @syntax-text-color: @very-light-gray;
8 @syntax-cursor-color: white;
9 @syntax-selection-color: lighten(@dark-gray, 10%);
10 @syntax-background-color: @very-dark-gray;
13 @syntax-wrap-guide-color: @dark-gray;
14 @syntax-indent-guide-color: @gray;
15 @syntax-invisible-character-color: @gray;
17 // For find and replace markers
18 @syntax-result-marker-color: @light-gray;
19 @syntax-result-marker-color-selected: white;
22 @syntax-gutter-text-color: @very-light-gray;
23 @syntax-gutter-text-color-selected: @syntax-gutter-text-color;
24 @syntax-gutter-background-color: @dark-gray;
25 @syntax-gutter-background-color-selected: @gray;
27 // For git diff info. i.e. in the gutter
28 @syntax-color-renamed: @blue;
29 @syntax-color-added: @green;
30 @syntax-color-modified: @orange;
31 @syntax-color-removed: @red;