aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2021-10-12 11:31:02 -0300
committerEuAndreh <eu@euandre.org>2021-10-12 11:31:02 -0300
commit2188cc491b3844909d69cddbeff4cb29da7083f9 (patch)
tree7432b24c17b3f01cb55de148cbe0ba5163f1e65b
parentBuild Jekyll output directly to public/ (diff)
downloadeuandre.org-2188cc491b3844909d69cddbeff4cb29da7083f9.tar.gz
euandre.org-2188cc491b3844909d69cddbeff4cb29da7083f9.tar.xz
TODOs.md: Add #td-d85f64b1-24c2-efe5-f214-c4e5a0b9ea31
-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