Skip to content

Commit ab5083b

Browse files
authored
New Style: Gradient Light (highlightjs#2616)
1 parent 54d1ed0 commit ab5083b

File tree

2 files changed

+138
-0
lines changed

2 files changed

+138
-0
lines changed

CHANGES.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## Version 10.2.0 (next up)
2+
3+
New themes:
4+
5+
- *Gradient Light* by [Samia Ali]()
6+
7+
[Samia Ali]: https://github.com/samiaab1990
8+
19
## Version 10.1.1
210

311
Fixes:

src/styles/gradient-light.css

Lines changed: 130 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,130 @@
1+
/*
2+
3+
Gradient Light (c) Samia Ali <samiaab1990@gmail.com>
4+
5+
*/
6+
7+
.hljs
8+
{
9+
display: block;
10+
overflow-x: auto;
11+
padding: 0.5em;
12+
background: rgb(255,253,141);
13+
background: linear-gradient(142deg, rgba(255,253,141,1) 0%, rgba(252,183,255,1) 35%, rgba(144,236,255,1) 100%);
14+
color:#250482;
15+
}
16+
17+
.hljs-subtr{
18+
color:#01958B;
19+
}
20+
21+
.hljs-doctag,
22+
.hljs-meta,
23+
.hljs-comment,
24+
.hljs-quote
25+
{
26+
color:#CB7200;
27+
}
28+
29+
.hljs-selector-tag,
30+
.hljs-selector-id,
31+
.hljs-template-tag,
32+
.hljs-regexp,
33+
.hljs-attr,
34+
.hljs-tag
35+
{
36+
color:#07BD5F;
37+
}
38+
39+
.hljs-params,
40+
.hljs-selector-class,
41+
.hljs-bullet
42+
43+
{
44+
color:#43449F;
45+
46+
}
47+
48+
.hljs-keyword,
49+
.hljs-section,
50+
.hljs-meta-keyword,
51+
.hljs-symbol,
52+
.hljs-type
53+
54+
{
55+
56+
color:#7D2801;
57+
}
58+
59+
.hljs-addition,
60+
.hljs-number,
61+
.hljs-link
62+
{
63+
color:#7F0096;
64+
}
65+
66+
67+
.hljs-string
68+
{
69+
color: #38c0ff;
70+
}
71+
72+
73+
.hljs-attribute,
74+
.hljs-addition
75+
{
76+
color:#296562;
77+
}
78+
79+
.hljs-variable,
80+
.hljs-template-variable
81+
82+
{
83+
color:#025C8F;
84+
}
85+
86+
.hljs-builtin-name,
87+
.hljs-built_in,
88+
.hljs-formula,
89+
.hljs-name,
90+
.hljs-title,
91+
.hljs-class,
92+
.hljs-function
93+
{
94+
color: #529117;
95+
96+
}
97+
98+
.hljs-selector-pseudo,
99+
.hljs-deletion,
100+
.hljs-literal
101+
{
102+
color:#AD13FF;
103+
104+
}
105+
106+
.hljs-emphasis,
107+
.hljs-quote
108+
{
109+
font-style:italic;
110+
}
111+
112+
.hljs-params,
113+
.hljs-selector-class,
114+
.hljs-strong,
115+
.hljs-selector-tag,
116+
.hljs-selector-id,
117+
.hljs-template-tag,
118+
.hljs-section,
119+
.hljs-keyword
120+
{
121+
font-weight:bold;
122+
}
123+
124+
125+
126+
127+
128+
129+
130+

0 commit comments

Comments
 (0)