We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a800152 commit 5664cd7Copy full SHA for 5664cd7
src/assets/css/_example/_example.css
@@ -1,22 +1,22 @@
1
/* Example stylesheet */
2
@media screen and (prefers-color-scheme: light), screen and (prefers-color-scheme: no-preference) {
3
- /*light theme*/
+ /* Light theme */
4
body{
5
- color: black;
6
- background-color: white;
+ color: #000;
+ background-color: #fff;
7
}
8
9
10
@media screen and (prefers-color-scheme: dark) {
11
- /*dark theme*/
+ /* Dark theme */
12
body {
13
- color: white;
14
- background-color: black;
+ color: #fff;
+ background-color: #000;
15
16
17
18
h1 {
19
- font-family: helvetica;
+ font-family: Helvetica, Arial, sans-serif;
20
font-size: 21px;
21
font-weight: 200;
22
0 commit comments