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 8f7fcb0 commit eeee969Copy full SHA for eeee969
lib/core/show-dir/styles.js
@@ -9,6 +9,17 @@ css += 'table tr { white-space: nowrap; }\n';
9
css += 'td.perms {}\n';
10
css += 'td.file-size { text-align: right; padding-left: 1em; }\n';
11
css += 'td.display-name { padding-left: 1em; }\n';
12
+css += `
13
+@media (prefers-color-scheme: dark) {
14
+ body {
15
+ background-color: #303030;
16
+ color: #efefef;
17
+ }
18
+ a {
19
+ color: #ffff11;
20
21
+}
22
+`;
23
24
Object.keys(icons).forEach((key) => {
25
css += `i.icon-${key} {\n`;
0 commit comments