Skip to content

Commit e1abb9b

Browse files
authored
enh(themes) Tweak background color for Gradient Light and Gradient Dark (#3408)
1 parent 238e073 commit e1abb9b

File tree

4 files changed

+14
-6
lines changed

4 files changed

+14
-6
lines changed

CHANGES.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,17 @@ Developer Tools:
2121

2222
- (chore) add gzip size compression report (#3400) [Bradley Mackey][]
2323

24+
Themes:
25+
26+
- Modified background color in css for Gradient Light and Gradient Dark themes [Samia Ali][]
27+
2428
[Richard Gibson]: https://github.com/gibson042
2529
[Bradley Mackey]: https://github.com/bradleymackey
2630
[Melvyn Laïly]: https://github.com/mlaily
2731
[Björn Ebbinghaus]: https://github.com/MrEbbinghaus
2832
[Josh Goebel]: https://github.com/joshgoebel
33+
[Samia Ali]: https://github.com/samiaab1990
34+
2935

3036
## Version 11.3.1
3137

@@ -736,6 +742,7 @@ Parser Engine:
736742

737743
- (fix) When ignoring a potential match highlighting can terminate early (#2649) [Josh Goebel][]
738744

745+
739746
New themes:
740747

741748
- *Gradient Light* by [Samia Ali]()
@@ -771,7 +778,6 @@ Language Improvements:
771778
[eytienne]: https://github.com/eytienne
772779
[sirosen]: https://github.com/sirosen
773780

774-
775781
## Version 10.1.1
776782

777783
Fixes:

highlight.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Subproject commit 10b322dc436333b04df8295c9bdf4bad324849e0

src/styles/gradient-dark.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ Gradient Dark (c) Samia Ali <samiaab1990@gmail.com>
66

77
.hljs
88
{
9-
background: rgb(80,31,122);
10-
background: linear-gradient(166deg, rgba(80,31,122,1) 0%, rgba(40,32,179,1) 80%);
9+
background-color: #652487;
10+
background-image: linear-gradient(160deg, #652487 0%, #443ac3 35%, #0174b7 68%, #04988e 100%);
1111
color:#e7e4eb;
1212
}
1313

src/styles/gradient-light.css

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ Gradient Light (c) Samia Ali <samiaab1990@gmail.com>
66

77
.hljs
88
{
9-
background: rgb(255,253,141);
10-
background: linear-gradient(142deg, rgba(255,253,141,1) 0%, rgba(252,183,255,1) 35%, rgba(144,236,255,1) 100%);
9+
background-color: #f9ccff;
10+
background-image: linear-gradient(295deg, #f9ccff 0%, #e6bbf9 11%, #9ec6f9 32%, #55e6ee 60%, #91f5d1 74%, #f9ffbf 98%);
1111
color:#250482;
1212
}
1313

@@ -46,6 +46,7 @@ color:#01958B;
4646
.hljs-section,
4747
.hljs-meta .hljs-keyword,
4848

49+
4950
.hljs-symbol,
5051
.hljs-type
5152

@@ -64,7 +65,7 @@ color:#01958B;
6465

6566
.hljs-string
6667
{
67-
color: #38c0ff;
68+
color: #2681ab;
6869
}
6970

7071

0 commit comments

Comments
 (0)