stagit

[fork]
git clone git://bvnf.space/stagit.git
Log | Files | Refs | README | LICENSE

commit 13a569440b4fec162612d06bdfc79562b2f81afc
parent 4fcf39d603038df26c0599fd8df0a900fb419d7c
Author: aabacchus <ben@bvnf.space>
Date:   Sun, 24 Oct 2021 01:05:47 +0100

colour tweaks in style.css

Diffstat:
Mstyle.css | 16+++++++++-------
1 file changed, 9 insertions(+), 7 deletions(-)

diff --git a/style.css b/style.css @@ -1,7 +1,8 @@ body { color: #000; - background-color: #fff; + background: #eee; font-family: monospace; + font-size: 16px; } h1, h2, h3, h4, h5, h6 { @@ -55,7 +56,7 @@ table td { #index tr:hover td, #log tr:hover td, #files tr:hover td { - background-color: #eee; + background-color: #ddd; } #index tr td:nth-child(2), @@ -105,22 +106,23 @@ pre a.d:hover { text-decoration: none; } +<<<<<<< HEAD @media (prefers-color-scheme: dark) { body { - background-color: #000; - color: #bdbdbd; + background: #292929; + color: #fff; } hr { border-color: #222; } a { - color: #56c8ff; + color: #6cf; } a:target { background-color: #222; } .desc { - color: #aaa; + color: #999; } #blob a { color: #555; @@ -149,6 +151,6 @@ pre a.d:hover { #index tr:hover td, #log tr:hover td, #files tr:hover td { - background-color: #111; + background-color: #333; } }