aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--TODOs.md19
1 files changed, 19 insertions, 0 deletions
diff --git a/TODOs.md b/TODOs.md
index 3ae8298..0ce9bf7 100644
--- a/TODOs.md
+++ b/TODOs.md
@@ -1,5 +1,24 @@
# Tasks
+## TODO Setup CSS dark mode {#td-d85f64b1-24c2-efe5-f214-c4e5a0b9ea31}
+- TODO in 2021-10-12
+
+---
+
+```css
+:root {
+ --color: black;
+ --background-color: white;
+}
+
+@media(prefers-color-scheme: dark) {
+ :root {
+ --color: white;
+ --background-color: black;
+ }
+}
+```
+
## TODO Remove dependency on Jekyll {#td-94511264-e301-be51-23e2-cf960dcd603d}
- TODO in 2021-10-02