-
Notifications
You must be signed in to change notification settings - Fork 76
/
Copy pathsyntax-variables.less
31 lines (27 loc) · 959 Bytes
/
syntax-variables.less
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
@import "colors";
// General colors
@syntax-text-color: @foreground;
@syntax-cursor-color: #c0c5ce;
@syntax-selection-color: rgba(128, 203, 196, 0.13);
@syntax-background-color: @selection;
// Guide colors
@syntax-wrap-guide-color: #65737e;
@syntax-indent-guide-color: #65737e;
@syntax-invisible-character-color: #65737e;
// For find and replace markers
@syntax-result-marker-color: #65737e;
@syntax-result-marker-color-selected: #CDD3DE;
// Gutter colors
@syntax-gutter-text-color: #CDD3DE;
@syntax-gutter-text-color-selected: #CDD3DE;
@syntax-gutter-background-color: #263238;
@syntax-gutter-background-color-selected: rgba(0, 0, 0, 0.19);
// For git diff info. i.e. in the gutter
// These are static and were not extracted from your textmate theme
@syntax-color-renamed: #96CBFE;
@syntax-color-added: #A8FF60;
@syntax-color-modified: #E9C062;
@syntax-color-removed: #CC6666;
@text-color-subtle: #666;
@text-color-dark: #333;
@text-color-info: #2196F3;