diff options
author | EuAndreh <eu@euandre.org> | 2021-09-13 09:40:39 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-09-13 13:13:48 -0300 |
commit | 63643a72b2335d083535f3ee8a93f083877dbd59 (patch) | |
tree | 56ec495c701b7939c499c540c702d5f98a4f7f20 /aux/workflow | |
parent | aux/containers/guix/with-container.sh: Use $ENV_CMD for less duplication (diff) | |
download | git-permalink-63643a72b2335d083535f3ee8a93f083877dbd59.tar.gz git-permalink-63643a72b2335d083535f3ee8a93f083877dbd59.tar.xz |
aux/workflow/style.css: Add dark mode
Diffstat (limited to 'aux/workflow')
-rw-r--r-- | aux/workflow/style.css | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/aux/workflow/style.css b/aux/workflow/style.css index dc9bda9..507071f 100644 --- a/aux/workflow/style.css +++ b/aux/workflow/style.css @@ -1,4 +1,19 @@ <style> + @media(prefers-color-scheme: dark) { + :root { + color: white; + background-color: black; + } + + a { + color: hsl(211, 100%, 60%); + } + + a:visited { + color: hsl(242, 100%, 80%); + } + } + body { max-width: 800px; margin: 0 auto 0 auto; @@ -16,6 +31,7 @@ font-family: monospace; font-size: 70%; background-color: lightgray; + color: black; padding: 3px; border-radius: 5px; } |