diff options
| -rw-r--r-- | style.css | 3 | ||||
| -rw-r--r-- | theme.scm | 4 |
2 files changed, 3 insertions, 4 deletions
@@ -1,6 +1,3 @@ -:root { - color-scheme: light dark; -} html { font-size: 100%; } @@ -20,14 +20,16 @@ (lambda (site title body) `((doctype "html") (html + (@ (lang "en")) (head (meta (@ (http-equiv "Content-Type") (content "text/html") (charset "utf-8"))) (meta (@ (name "viewport") (content "width=device-width, initial-scale=1.0"))) + (meta (@ (name "color-scheme") + (content "light dark"))) (link (@ (rel "stylesheet") - (type "text/css") (href "/style.css"))) (link (@ (rel "icon") (href "data:,"))) |
