Skip to content

Commit e7041c4

Browse files
authored
(enh) added VS-Dark theme (#4272)
1 parent 4a1baca commit e7041c4

File tree

2 files changed

+68
-0
lines changed

2 files changed

+68
-0
lines changed

CHANGES.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
## Version 11.11.2
22

3+
Themes:
4+
5+
- added "vs Dark " theme [Twineee1][]
6+
37
New Grammars:
48

59
- added 3rd party Aiken grammar to SUPPORTED_LANGUAGES [Josh Marchand][]
@@ -40,8 +44,10 @@ CONTRIBUTORS
4044
[Sebastiaan Speck]: https://github.com/sebastiaanspeck
4145
[Filip Hoffmann]: https://github.com/folospior
4246
[Kerry Shetline]: https://github.com/kshetline
47+
[Twineee1]: https://github.com/Twineee1
4348
[hbgl]: https://github.com/hbgl
4449

50+
4551
## Version 11.11.1
4652

4753
- Fixes regression with Rust grammar.

src/styles/vs-dark.css

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
/*
2+
3+
VS Dark theme based off the theme distributed with the Monaco editor by Twineee <[email protected]>
4+
5+
*/
6+
.hljs {
7+
background: #202020;
8+
color: #CCCCCC;
9+
}
10+
11+
.hljs-comment,
12+
.hljs-doctag,
13+
.hljs-quote,
14+
.hljs-variable {
15+
color: #6A9954;
16+
}
17+
18+
.hljs-keyword,
19+
.hljs-selector-tag,
20+
.hljs-built_in,
21+
.hljs-name,
22+
.hljs-tag {
23+
color: #579CD6;
24+
}
25+
26+
.hljs-string,
27+
.hljs-title,
28+
.hljs-section,
29+
.hljs-attribute,
30+
.hljs-literal,
31+
.hljs-template-tag,
32+
.hljs-template-variable,
33+
.hljs-type,
34+
.hljs-addition {
35+
color: #CE9178;
36+
}
37+
38+
.hljs-deletion,
39+
.hljs-selector-attr,
40+
.hljs-selector-pseudo,
41+
.hljs-meta {
42+
color: #D4D4D4;
43+
}
44+
45+
.hljs-attr {
46+
color: #9DDCFE;
47+
}
48+
49+
.hljs-symbol,
50+
.hljs-bullet,
51+
.hljs-link {
52+
color: #00b0e8;
53+
}
54+
55+
56+
.hljs-emphasis {
57+
font-style: italic;
58+
}
59+
60+
.hljs-strong {
61+
font-weight: bold;
62+
}

0 commit comments

Comments
 (0)