diff options
author | EuAndreh <eu@euandre.org> | 2021-10-12 11:31:02 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-10-12 11:31:02 -0300 |
commit | 2188cc491b3844909d69cddbeff4cb29da7083f9 (patch) | |
tree | 7432b24c17b3f01cb55de148cbe0ba5163f1e65b | |
parent | Build Jekyll output directly to public/ (diff) | |
download | euandre.org-2188cc491b3844909d69cddbeff4cb29da7083f9.tar.gz euandre.org-2188cc491b3844909d69cddbeff4cb29da7083f9.tar.xz |
TODOs.md: Add #td-d85f64b1-24c2-efe5-f214-c4e5a0b9ea31
-rw-r--r-- | TODOs.md | 19 |
1 files changed, 19 insertions, 0 deletions
@@ -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 |