-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathindex.less
123 lines (94 loc) · 2.65 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
atom-text-editor, atom-text-editor .gutter {
background-color: #0C1021;
color: #F8F8F8;
}
atom-text-editor.is-focused .cursor {
border-color: rgba(255, 255, 255, 0.65);
}
atom-text-editor.is-focused .selection .region {
background-color: #253B76;
}
atom-text-editor.is-focused .line-number.cursor-line-no-selection,
atom-text-editor.is-focused .line.cursor-line {
background-color: rgba(255, 255, 255, 0.06);
}
.syntax--comment {
color: #AEAEAE;
}
.syntax--constant {
color: #D8FA3C;
}
.syntax--entity {
color: #FF6400;
}
.syntax--keyword {
color: #FBDE2D;
}
.syntax--storage {
color: #FBDE2D;
}
.syntax--string, .syntax--meta.syntax--verbatim {
color: #61CE3C;
}
.syntax--support {
color: #8DA6CE;
}
.syntax--variable {
}
.syntax--invalid.syntax--deprecated {
font-style: italic;
color: #AB2A1D;
}
.syntax--invalid.syntax--illegal {
color: #F8F8F8;
background-color: #9D1E15;
}
.syntax--entity.syntax--other.syntax--inherited-class {
font-style: italic;
color: #FF6400;
}
.syntax--string .syntax--constant.syntax--other.syntax--placeholder {
color: #FF6400;
}
.syntax--meta.syntax--function-call.py {
color: #BECDE6;
}
.syntax--meta.syntax--tag, .syntax--meta.syntax--tag .syntax--entity {
color: #7F90AA;
}
.syntax--entity.syntax--name.syntax--section {
color: #FFF;
}
.syntax--keyword.syntax--type.syntax--variant {
color: #D5E0F3;
}
.syntax--source.syntax--ocaml .syntax--keyword.syntax--operator.syntax--symbol {
color: #F8F8F8;
}
.syntax--source.syntax--ocaml .syntax--keyword.syntax--operator.syntax--symbol.syntax--infix {
color: #8DA6CE;
}
.syntax--source.syntax--ocaml .syntax--keyword.syntax--operator.syntax--symbol.syntax--prefix {
color: #8DA6CE;
}
.syntax--source.syntax--ocaml .syntax--keyword.syntax--operator.syntax--symbol.syntax--infix.syntax--floating-point {
text-decoration: underline;
}
.syntax--source.syntax--ocaml .syntax--keyword.syntax--operator.syntax--symbol.syntax--prefix.syntax--floating-point {
text-decoration: underline;
}
.syntax--source.syntax--ocaml .syntax--constant.syntax--numeric.syntax--floating-point {
text-decoration: underline;
}
.syntax--text.syntax--tex.syntax--latex .syntax--meta.syntax--function.syntax--environment {
background-color: rgba(255, 255, 255, 0.03);
}
.syntax--text.syntax--tex.syntax--latex .syntax--meta.syntax--function.syntax--environment .syntax--meta.syntax--function.syntax--environment {
background-color: rgba(122, 150, 250, 0.03);
}
.syntax--text.syntax--tex.syntax--latex .syntax--support.syntax--function {
color: #FBDE2D;
}
.syntax--source.syntax--plist .syntax--string.syntax--unquoted, .syntax--source.syntax--plist .syntax--keyword.syntax--operator {
color: #FFF;
}