-
Notifications
You must be signed in to change notification settings - Fork 119
Expand file tree
/
Copy pathneovim.min.css
More file actions
96 lines (81 loc) · 2.18 KB
/
neovim.min.css
File metadata and controls
96 lines (81 loc) · 2.18 KB
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
/*!
* Neovim color palette for highlighting markdown codeblocks.
* For use with "highlight.js" (used by the :help docs generated HTML).
* See also: static/css/neovim-hi.css
* License: Apache-2.0
*/
:root {
/* Light-mode palette - default */
--hljs-black: #2c2e33;
--hljs-red: #5e0009;
--hljs-green: #0daa80;
--hljs-yellow: #6e5600;
--hljs-blue: #005078;
--hljs-cyan: #007676;
--hljs-white: #4f5258;
--hljs-b-black: #4f5258;
--hljs-b-red: #5e0009;
--hljs-b-green: #0daa80;
--hljs-b-yellow: #6e5600;
--hljs-b-blue: #005078;
--hljs-b-cyan: #007676;
--hljs-b-white: #9b9ea4
}
@media (prefers-color-scheme: dark) {
:root {
/* Dark-mode palette */
--hljs-black: #9b9ea4;
--hljs-red: #ffbcb5;
--hljs-green: #aaedb7;
--hljs-yellow: #f4d88c;
--hljs-blue: #9fd8ff;
--hljs-cyan: #83efef;
--hljs-white: #d7dae1;
--hljs-b-black: #c4c6cd;
--hljs-b-red: #ffbcb5;
--hljs-b-green: #aaedb7;
--hljs-b-yellow: #f4d88c;
--hljs-b-blue: #9fd8ff;
--hljs-b-cyan: #83efef;
--hljs-b-white: #ebeef5
}
}
.hljs-meta, .hljs-comment {
color: #4f5258
}
.hljs-tag, .hljs-doctag, .hljs-selector-id, .hljs-selector-class, .hljs-regexp, .hljs-template-tag, .hljs-selector-pseudo, .hljs-selector-attr, .hljs-variable.language_, .hljs-deletion {
color: var(--hljs-b-red)
}
.hljs-variable, .hljs-template-variable, .hljs-number, .hljs-literal, .hljs-type, .hljs-params, .hljs-link {
color: var(--hljs-b-cyan)
}
.hljs-built_in, .hljs-attribute {
color: var(--hljs-b-green)
}
.hljs-selector-tag {
color: var(--hljs-b-cyan)
}
.hljs-keyword, .hljs-title.function_, .hljs-title, .hljs-title.class_, .hljs-title.class_.inherited__, .hljs-subst, .hljs-property {
color: var(--hljs-b-blue)
}
.hljs-quote, .hljs-string, .hljs-symbol, .hljs-bullet, .hljs-addition {
color: var(--hljs-b-green)
}
.hljs-code, .hljs-function, .hljs-formula, .hljs-section {
color: var(--hljs-b-blue)
}
.hljs-name, .hljs-keyword, .hljs-operator, .hljs-char.escape_, .hljs-attr {
color: var(--hljs-b-cyan)
}
.hljs-punctuation {
color: var(--hljs-black)
}
.hljs {
color: var(--hljs-black)
}
.hljs-emphasis {
font-style: italic
}
.hljs-strong {
font-weight: bold
}