Skip to content

Commit c0138d9

Browse files
(themes) Add new intellij-light theme (#3433)
1 parent c5ff49e commit c0138d9

File tree

3 files changed

+122
-0
lines changed

3 files changed

+122
-0
lines changed

CHANGES.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ Themes:
88

99
- `Default` is now much closer WCAG AA (contrast) (#3402) [Josh Goebel]
1010
- `Dark` now meets WCAG AA (contrast) (#3402) [Josh Goebel]
11+
- Added `intellij-light` theme [Pegasis]
1112

1213
These changes should be for the better and should not be super noticeable but if you're super picky about your colors you may want to intervene here or copy over the older themes from 11.3 or prior.
1314

@@ -52,6 +53,7 @@ Themes:
5253

5354
- Modified background color in css for Gradient Light and Gradient Dark themes [Samia Ali][]
5455

56+
[Pegasis]: https://github.com/PegasisForever
5557
[Wojciech Kania]: https://github.com/wkania
5658
[Jeylani B]: https://github.com/jeyllani
5759
[Richard Gibson]: https://github.com/gibson042

src/styles/intellij-light.css

Lines changed: 119 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,119 @@
1+
/*
2+
3+
Intellij-light style (c) Pegasis <[email protected]>
4+
5+
*/
6+
7+
.hljs {
8+
color: #000;
9+
background: #fff;
10+
}
11+
12+
.hljs-subst,
13+
.hljs-title {
14+
font-weight: normal;
15+
color: #000;
16+
}
17+
18+
.hljs-title.function_ {
19+
color: #7A7A43;
20+
}
21+
22+
.hljs-code,
23+
.hljs-comment,
24+
.hljs-quote {
25+
color: #8C8C8C;
26+
font-style: italic;
27+
}
28+
29+
.hljs-meta {
30+
color: #9E880D;
31+
}
32+
33+
.hljs-section {
34+
color: #871094;
35+
}
36+
37+
.hljs-variable.language_,
38+
.hljs-symbol,
39+
.hljs-selector-class,
40+
.hljs-selector-id,
41+
.hljs-selector-tag,
42+
.hljs-template-tag,
43+
.hljs-selector-attr,
44+
.hljs-selector-pseudo,
45+
.hljs-keyword,
46+
.hljs-meta .hljs-keyword,
47+
.hljs-literal,
48+
.hljs-name,
49+
.hljs-built_in,
50+
.hljs-type {
51+
color: #0033B3;
52+
}
53+
54+
.hljs-property,
55+
.hljs-attr {
56+
color: #871094;
57+
}
58+
59+
.hljs-attribute {
60+
color: #174AD4;
61+
}
62+
63+
.hljs-number {
64+
color: #1750EB;
65+
}
66+
67+
.hljs-regexp {
68+
color: #264EFF;
69+
}
70+
71+
.hljs-link {
72+
text-decoration: underline;
73+
color: #006DCC;
74+
}
75+
76+
.hljs-meta .hljs-string,
77+
.hljs-string {
78+
color: #067D17;
79+
}
80+
81+
.hljs-char.escape_ {
82+
color: #0037A6;
83+
}
84+
85+
.hljs-doctag {
86+
text-decoration: underline;
87+
}
88+
89+
.hljs-template-variable {
90+
color: #248F8F;
91+
}
92+
93+
.hljs-addition {
94+
background: #BEE6BE;
95+
}
96+
97+
.hljs-deletion {
98+
background: #D6D6D6;
99+
}
100+
101+
.hljs-emphasis {
102+
font-style: italic;
103+
}
104+
105+
.hljs-strong {
106+
font-weight: bold;
107+
}
108+
109+
.hljs-variable,
110+
.hljs-operator,
111+
.hljs-punctuation,
112+
.hljs-title.class_.inherited__,
113+
.hljs-title.class_,
114+
.hljs-params,
115+
.hljs-bullet,
116+
.hljs-formula,
117+
.hljs-tag {
118+
/* purposely ignored */
119+
}

tools/developer.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,7 @@ <h3>Code</h3>
107107
<option>tomorrow-night-blue.css</option>
108108
<option>monokai.css</option>
109109
<option>idea.css</option>
110+
<option>intellij-light.css</option>
110111
<option>purebasic.css</option>
111112
<option>qtcreator-dark.css</option>
112113
<option>androidstudio.css</option>

0 commit comments

Comments
 (0)