forked from daylerees/colour-schemes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.less
129 lines (102 loc) · 1.56 KB
/
index.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
@import "ui-variables";
@import "colors";
@base03: #002b36;
@base02: #073642;
@base01: #586e75;
@base00: #657b83;
@base0: #839496;
@base1: #93a1a1;
@base2: #eee8d5;
@base3: #fdf6e3;
@yellow: #b58900;
@orange: #cb4b16;
@red: #dc322f;
@magenta: #d33682;
@violet: #6c71c4;
@blue: #268bd2;
@cyan: #2aa198;
@green: #859900;
.editor-colors {
background-color: @base03;
color: @base0;
}
.editor {
.invisible-character,
.indent-guide {
color: @base01;
}
.gutter {
background-color: @base02;
}
.gutter .line-number {
opacity: 1;
}
.gutter .line-number.folded,
.gutter .line-number:after,
.fold-marker:after {
color: @magenta;
}
.cursor {
border-color: @base3;
}
.selection .region {
background-color: @base01;
color: @base03;
}
.line-number.cursor-line-no-selection {
background-color: @base01;
}
}
.bracket-matcher {
background-color: @base1;
opacity: 0.7;
}
.comment {
color: @base01;
font-style: italic;
}
.entity {
color: @yellow;
}
.keyword {
color: @green;
}
.storage.type {
color: @green;
}
.constant {
color: @yellow;
&.numeric,
&.boolean {
color: @cyan;
}
}
.variable {
color: @blue;
}
.delimiter, .brace {
color: @red;
}
.delimiter.period {
color: @green;
}
.invalid.deprecated {
text-decoration: underline;
color: @red;
}
.invalid.illegal {
color: @red;
}
.string {
color: @cyan;
.constant.character.escape {
color: @red;
}
&.regexp {
color: @cyan;
.source.ruby.embedded,
.string.regexp.arbitrary-repitition {
color: @red;
}
}
}