blob: 0e586c72a9e2a286e07af5f387430984a254930c (
plain) (
blame)
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
|
@import "colors";
// General colors
@syntax-text-color: @shade6;
@syntax-cursor-color: @accent6;
@syntax-selection-color: @shade1;
@syntax-background-color: @shade0;
// Guide colors
@syntax-wrap-guide-color: @shade1;
@syntax-indent-guide-color: @shade4;
@syntax-invisible-character-color: @shade3;
// For find and replace markers
@syntax-result-marker-color: @shade5;
@syntax-result-marker-color-selected: @accent2;
// Gutter colors
@syntax-gutter-text-color: @shade2;
@syntax-gutter-text-color-selected: @syntax-gutter-text-color;
@syntax-gutter-background-color: @shade0;
@syntax-gutter-background-color-selected: @shade1;
// For git diff info. i.e. in the gutter
@syntax-color-renamed: @accent5;
@syntax-color-added: @accent3;
@syntax-color-modified: @accent2;
@syntax-color-removed: @accent0;
|