-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsyntax-variables.less
53 lines (46 loc) · 1.58 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
// Official Syntax Variables -----------------------------------
// Generated from lib/main.coffee
/* Config:
"tone-syntax":
color:
bg: "#2e2e43"
duo: "#6cbeff"
tri: "#1fffd2"
uno: "#dbdbff"
*/
// General colors
@syntax-text-color: #dbdbff;
@syntax-cursor-color: #1fffd2;
@syntax-selection-color: #424259;
@syntax-selection-flash-color: #6cbeff;
@syntax-background-color: #2e2e43;
// Guide colors
@syntax-wrap-guide-color: #34344a;
@syntax-indent-guide-color: #3f3f55;
@syntax-invisible-character-color: #3f3f55;
// For find and replace markers
@syntax-result-marker-color: #1fffd2;
@syntax-result-marker-color-selected: #1fffd2;
// Gutter colors
@syntax-gutter-text-color: #61617b;
@syntax-gutter-text-color-selected: #dbdbff;
@syntax-gutter-background-color: #2e2e43;
@syntax-gutter-background-color-selected: #34344a;
// For git diff info. i.e. in the gutter
@syntax-color-renamed: hsl(208, 100%, 60%);
@syntax-color-added: hsl(150, 60%, 54%);
@syntax-color-modified: hsl(40, 60%, 70%);
@syntax-color-removed: hsl(0, 70%, 60%);
// For language entity colors
@syntax-color-variable: #1fffd2;
@syntax-color-constant: #6cbeff;
@syntax-color-property: #6cbeff;
@syntax-color-value: #1fffd2;
@syntax-color-function: #dbdbff;
@syntax-color-method: #dbdbff;
@syntax-color-class: #1fffd2;
@syntax-color-keyword: #6cbeff;
@syntax-color-tag: #dbdbff;
@syntax-color-attribute: #8484a1;
@syntax-color-import: #dbdbff;
@syntax-color-snippet: #dbdbff;