Skip to content

Commit bb11ba5

Browse files
authored
Merge pull request #1 from WattleScript/feat-dark-theme
Implement dark theme support
2 parents 6ea5fc5 + 91217f9 commit bb11ba5

File tree

6 files changed

+444
-39
lines changed

6 files changed

+444
-39
lines changed

_data/navlist.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ docs:
33
- title: Home
44
url: /
55

6-
- title: License
7-
url: /license
8-
96
- title: About Wattle
107
url: /about_wattle
8+
9+
- title: License
10+
url: /license
1111

_includes/logo.html

+8-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,8 @@
1-
<h1><a href="/" class="site-title"><img src="/assets/images/wattle-logo.svg" alt="WattleScript" style="height: 3.5em;"/></a></h1>
1+
<h1 class="noBorder noMargin">
2+
<a href="/" class="site-title">
3+
<picture>
4+
<source srcset="/assets/images/wattle-logo-dark.svg" media="(prefers-color-scheme: dark)">
5+
<img src="/assets/images/wattle-logo.svg" alt="WattleScript" style="height: 3.5em;">
6+
</picture>
7+
</a>
8+
</h1>

_includes/nav.html

+11-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,16 @@
11
<ul>
2-
<input id="menutoggle" class="menucheck" type="checkbox">
3-
<label for="menutoggle" class="menutext">Menu</label>
2+
<li>
3+
<input id="menutoggle" class="menucheck" type="checkbox">
4+
</li>
5+
<li>
6+
<label for="menutoggle" class="menutext">Menu</label>
7+
</li>
48
{% for item in site.data.navlist.docs %}
59
<li><a href="{{ item.url }}">{{ item.title }}</a></li>
610
{% endfor %}
7-
<li><a href="https://github.com/WattleScript/wattlescript"><div class="github-icon">Github</div></a></li>
11+
<li>
12+
<a href="https://github.com/WattleScript/wattlescript">
13+
<div class="github-icon">Github</div>
14+
</a>
15+
</li>
816
</ul>

assets/css/main.css

+169-22
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,44 @@
1+
:root {
2+
--pageBg: #ebe4cc;
3+
--textDefault: #1c1c1c;
4+
--linkDeafult:#188d8f;
5+
--navBg: #444;
6+
--navBorder: #555;
7+
--navBgHover: #111;
8+
--borderMuted: #b7b79a;
9+
}
10+
11+
@media (prefers-color-scheme: dark) {
12+
:root {
13+
--pageBg: rgb(13, 17, 23);
14+
--textDefault: rgb(201, 209, 217);
15+
--linkDefault: #58a6ff;
16+
--navBg: #1a222f;
17+
--navBorder: #1c2532;
18+
--navBgHover: #212b3b;
19+
--borderMuted: #21262d;
20+
}
21+
}
22+
123
body, html {
224
font-family: 'Libre Franklin', sans-serif;
3-
background: #ebe4cc;
4-
color: #1c1c1c;
25+
background: var(--pageBg);
26+
color: var(--textDefault);
27+
}
28+
29+
body {
30+
line-height: 1.5;
31+
word-wrap: break-word;
532
}
33+
634
pre, code {
735
font-family: 'Inconsolata', monospace;
836
}
937
div.highlight {
1038
padding: 0.3em 1em;
1139
}
1240
a {
13-
color: #188d8f;
41+
color: var(--linkDefault);
1442
}
1543
h1 a {
1644
text-decoration: none;
@@ -20,17 +48,16 @@ ul li {
2048
}
2149
nav {
2250
width: 100%;
23-
background: black;
24-
border-top: 1px solid #555;
25-
border-bottom: 1px solid #555;
51+
border-top: 1px solid var(--navBorder);
52+
border-bottom: 1px solid var(--navBorder);
2653
}
2754

2855
nav ul {
2956
list-style-type: none;
3057
margin: 0;
3158
padding: 0;
3259
overflow: hidden;
33-
background: #444;
60+
background: var(--navBg);
3461
line-height: 1.15;
3562
}
3663

@@ -47,22 +74,9 @@ nav ul li a {
4774
}
4875

4976
nav ul li a:hover {
50-
background-color: #111;
77+
background-color: var(--navBgHover);
5178
}
5279

53-
54-
.headerbottom {
55-
position: absolute;
56-
bottom: 0;
57-
left: 0;
58-
right: 0;
59-
width: 100%;
60-
}
61-
#contentwrap {
62-
max-width: 740px;
63-
margin-left: auto;
64-
margin-right: auto;
65-
}
6680
.fixednav {
6781
position: fixed;
6882
top: 0;
@@ -132,7 +146,71 @@ article {
132146
.next_page, .prev_page, .different_page {
133147
text-decoration: none;
134148
}
135-
@media screen and (max-width: 520px) {
149+
150+
#contentwrap {
151+
margin-left: auto;
152+
margin-right: auto;
153+
}
154+
155+
ul {
156+
list-style-type: square;
157+
}
158+
159+
h1 {
160+
margin: 0.67em 0;
161+
padding-bottom: 0.3em;
162+
font-size: 2em;
163+
border-bottom: 1px solid var(--borderMuted);
164+
}
165+
166+
h2 {
167+
font-weight: 600;
168+
padding-bottom: 0.3em;
169+
font-size: 1.5em;
170+
border-bottom: 1px solid var(--borderMuted);
171+
}
172+
173+
code {
174+
padding: 0.2em 0.4em;
175+
margin: 0;
176+
font-size: 85%;
177+
background-color: rgb(175 184 193 / 20%);
178+
border-radius: 6px;
179+
font-family: ui-monospace,SFMono-Regular,SF Mono,Menlo,Consolas,Liberation Mono,monospace;
180+
}
181+
182+
pre.highlight code {
183+
padding: inherit;
184+
margin: inherit;
185+
font-size: inherit;
186+
background-color: inherit;
187+
border-radius: inherit;
188+
font-family: inherit;
189+
}
190+
191+
.noBorder {
192+
border: none;
193+
}
194+
195+
.noMargin {
196+
margin: 0;
197+
}
198+
199+
@media screen and (min-width: 980px) {
200+
.headerbottom {
201+
position: absolute;
202+
bottom: 0;
203+
left: 0;
204+
right: 0;
205+
width: 100%;
206+
}
207+
208+
#contentwrap {
209+
max-width: 980px;
210+
}
211+
}
212+
213+
@media screen and (max-width: 980px) {
136214
nav ul li {
137215
float: none;
138216
display: none;
@@ -182,5 +260,74 @@ article {
182260
.responsivepad {
183261
display: none;
184262
}
263+
264+
#contentwrap p, #contentwrap h1, #contentwrap h2, #contentwrap h3, #contentwrap h4 {
265+
padding-left: 6px;
266+
padding-right: 6px;
267+
}
268+
269+
.github-icon {
270+
-webkit-mask-image: none;
271+
}
272+
273+
div.highlight {
274+
padding: 1px 6px 1px 6px;
275+
}
276+
277+
#contentwrap h3 {
278+
margin-bottom: 8px;
279+
}
280+
281+
ul {
282+
padding-left: 30px;
283+
margin-top: 0;
284+
}
285+
286+
.site-title {
287+
display: flex;
288+
justify-content: center;
289+
}
185290
}
186291

292+
@media (prefers-color-scheme: light) {
293+
code {
294+
color: #24292f;
295+
}
296+
}
297+
298+
@media (prefers-color-scheme: dark) {
299+
::-webkit-scrollbar {
300+
width: 15px;
301+
}
302+
303+
::-webkit-scrollbar-track {
304+
background: #202020;
305+
border-left: 1px solid #2c2c2c;
306+
}
307+
308+
::-webkit-scrollbar-thumb {
309+
background: #3e3e3e;
310+
border: solid 3px #202020;
311+
border-radius: 7px;
312+
}
313+
314+
::-webkit-scrollbar-thumb:hover {
315+
background: #4F4F4F;
316+
}
317+
318+
hr {
319+
box-sizing: content-box;
320+
overflow: hidden;
321+
background: transparent;
322+
border-bottom: 1px solid #21262d;
323+
height: 0.25em;
324+
padding: 0;
325+
margin: 24px 0;
326+
background-color: #30363d;
327+
border: 0;
328+
}
329+
330+
code {
331+
background-color: rgba(110,118,129,0.4);
332+
}
333+
}

0 commit comments

Comments
 (0)