File tree Expand file tree Collapse file tree 2 files changed +20
-0
lines changed
Expand file tree Collapse file tree 2 files changed +20
-0
lines changed Original file line number Diff line number Diff line change 77 < link rel ="stylesheet " type ="text/css " href ="stylesheets/normalize.css " media ="screen ">
88 < link href ='https://fonts.googleapis.com/css?family=Open+Sans:400,700 ' rel ='stylesheet ' type ='text/css '>
99 < link rel ="stylesheet " type ="text/css " href ="stylesheets/stylesheet.css " media ="screen ">
10+ < link rel ="stylesheet " type ="text/css " href ="stylesheets/stylesheet_dark.css " media ="screen ">
1011 < link rel ="stylesheet " type ="text/css " href ="stylesheets/github-light.css " media ="screen ">
1112 </ head >
1213 < body >
Original file line number Diff line number Diff line change 1+ /*
2+ * Custom modified stylesheet to support dark mode as upstream doesn't support
3+ * it.
4+ */
5+ : root {
6+ prefer-color-schemes : light dark;
7+ color-scheme : light dark;
8+ }
9+ @media (prefers-color-scheme : dark) {
10+ a {
11+ color : # 2583E2 ;
12+ }
13+ body {
14+ color : # 9F938E ;
15+ }
16+ .site-footer-credits {
17+ color : # 7E6E67 ;
18+ }
19+ }
You can’t perform that action at this time.
0 commit comments