Skip to content

Commit afea9af

Browse files
committed
Documentation: improve placeholder color in visual explanation when using light mode: use orange instead of yellow
1 parent 8ed5353 commit afea9af

File tree

1 file changed

+12
-8
lines changed

1 file changed

+12
-8
lines changed

docs/docs.css

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,3 @@
1-
@media (prefers-color-scheme: dark) {
2-
body {
3-
background: black;
4-
color: white;
5-
}
6-
}
7-
81
body {
92
font-family: Verdana, Geneva, Tahoma, sans-serif;
103
max-width: 65rem;
@@ -43,7 +36,7 @@ p {
4336
}
4437

4538
.drawing-Placeholder {
46-
border: 2px solid yellow;
39+
border: 2px solid orange;
4740
border-top: 0;
4841
padding: 0.3em;
4942
margin: 0.05em;
@@ -84,4 +77,15 @@ kbd {
8477
margin-bottom: 2rem;
8578
text-align: center;
8679
font-size: 1.5rem;
80+
}
81+
82+
@media (prefers-color-scheme: dark) {
83+
body {
84+
background: black;
85+
color: white;
86+
}
87+
88+
.drawing-Placeholder {
89+
border-color: yellow;
90+
}
8791
}

0 commit comments

Comments
 (0)