-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathsyntect-css.css
64 lines (51 loc) · 1.62 KB
/
syntect-css.css
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
/** https://github.com/AmjadHD/sublime_one_theme */
/** light */
.color-scheme--light .syntect-support.syntect-function,
.color-scheme--light .syntect-entity.syntect-name.syntect-function,
.color-scheme--light .syntect-variable.syntect-annotation,
.color-scheme--light .syntect-macro {
color: hsl(221, 87%, 60%);
}
.color-scheme--light .syntect-keyword,
.color-scheme--light .syntect-storage {
color: hsl(301, 63%, 40%);
}
.color-scheme--light .syntect-punctuation.syntect-accessor,
.color-scheme--light .syntect-keyword.syntect-operator {
color: hsl(335, 95%, 62%);
}
.color-scheme--light .syntect-support.syntect-type {
color: hsl(198, 99%, 37%);
}
.color-scheme--light .syntect-string {
color: hsl(119, 34%, 47%);
}
.color-scheme--light .syntect-constant,
.color-scheme--light .syntect-placeholder {
color: hsl(41, 99%, 30%);
}
/** dark */
.color-scheme--dark .syntect-support.syntect-function,
.color-scheme--dark .syntect-entity.syntect-name.syntect-function,
.color-scheme--dark .syntect-variable.syntect-annotation,
.color-scheme--dark .syntect-macro {
color: hsl(207, 82%, 66%);
}
.color-scheme--dark .syntect-keyword,
.color-scheme--dark .syntect-storage {
color: hsl(286, 60%, 67%);
}
.color-scheme--dark .syntect-punctuation.syntect-accessor,
.color-scheme--dark .syntect-keyword.syntect-operator {
color: hsl(335, 95%, 62%);
}
.color-scheme--dark .syntect-support.syntect-type {
color: hsl(187, 47%, 55%);
}
.color-scheme--dark .syntect-string {
color: hsl(95, 38%, 62%);
}
.color-scheme--dark .syntect-constant,
.color-scheme--dark .syntect-placeholder {
color: hsl(29, 54%, 61%);
}