Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/7ma7X/HugoTeX.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/static
diff options
context:
space:
mode:
Diffstat (limited to 'static')
-rw-r--r--static/css/darkmode.css35
1 files changed, 35 insertions, 0 deletions
diff --git a/static/css/darkmode.css b/static/css/darkmode.css
new file mode 100644
index 0000000..fee713a
--- /dev/null
+++ b/static/css/darkmode.css
@@ -0,0 +1,35 @@
+@media (prefers-color-scheme: dark) {
+ html, body {
+ color: #dcdcdc;
+ background-color: #292929;
+ }
+
+ html *:not(input) {
+ color: #dcdcdc !important;
+ }
+
+ a[ping]:link,
+ :link:not(cite) {
+ color: #8db2e5 !important;
+ }
+
+ html a:visited {
+ color: #d248ea !important;
+ }
+
+ html cite,
+ html cite a:link,
+ html cite a:visited {
+ color: #92de92 !important;
+ }
+
+ /* inline styles */
+ [style*='background: #'], [style*='background:#'],
+ [style*='background: rgb'], [style*='background:rgb'],
+ [style*='background: var('], [style*='background:var('],
+ [style*='background-color: #'], [style*='background-color:#'],
+ [style*='background-color: rgb'], [style*='background-color:rgb'],
+ [style*='background-color: var('], [style*='background-color:var('] {
+ background-color: #292929 !important;
+ }
+}