Skip to content

Commit 599fe49

Browse files
committed
fixup! WIP: Offer a dark mode if indicated by the operating system
1 parent 1a5bb18 commit 599fe49

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

assets/sass/dark-mode.css

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@
1919
$link-color: #579cab;
2020
$fixed-width-font-color: #3c3632;
2121
$base-border-color: #b3b2a7;
22-
$callout-color: #000000;
22+
$callout-color: #555555;
2323
$black-3: #cccccc;
24-
$main-bg: #000000;
24+
$main-bg: #444444;
2525

2626
body#{$class}::before {
2727
background-image: url("/images/bg/body.jpg");
@@ -56,6 +56,14 @@
5656
a {
5757
color: #579cab;
5858
}
59+
a.subtle-button {
60+
background-image: linear-gradient(#555555, #777777);
61+
border-top: solid 1px #333333;
62+
border-right: solid 1px #333333;
63+
border-bottom: solid 1px #333333;
64+
border-left: solid 1px #333333;
65+
@include box-shadow(none);
66+
}
5967
}
6068
}
6169

0 commit comments

Comments
 (0)