Skip to content

Commit 210a71c

Browse files
committed
Dark mode for web server
1 parent 6cbf9df commit 210a71c

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

examples/server/public/index.html

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77

88
<style>
99
body {
10-
background-color: #fff;
11-
color: #000;
10+
background-color: #000;
11+
color: #fff;
1212
font-family: system-ui;
1313
font-size: 90%;
1414
}
@@ -74,11 +74,18 @@
7474
}
7575

7676
textarea {
77+
background-color: #111;
78+
color: #fff;
7779
padding: 5px;
7880
flex-grow: 1;
7981
width: 100%;
8082
}
8183

84+
input {
85+
background-color: #111;
86+
color: #fff;
87+
}
88+
8289
pre code {
8390
display: block;
8491
background-color: #222;

0 commit comments

Comments
 (0)