]> git.r.bdr.sh - rbdr/api-notation-atom/blame_incremental - styles/syntax-variables.less
Adds the API notation grammar
[rbdr/api-notation-atom] / styles / syntax-variables.less
... / ...
CommitLineData
1@import "colors";
2
3// This defines all syntax variables that syntax themes must implement when they
4// include a syntax-variables.less file.
5
6// General colors
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;
11
12// Guide colors
13@syntax-wrap-guide-color: @dark-gray;
14@syntax-indent-guide-color: @gray;
15@syntax-invisible-character-color: @gray;
16
17// For find and replace markers
18@syntax-result-marker-color: @light-gray;
19@syntax-result-marker-color-selected: white;
20
21// Gutter colors
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;
26
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;