From b646368bf4175ed38bf811900b477a175f677a1b Mon Sep 17 00:00:00 2001 From: Josha von Gizycki Date: Sun, 14 Dec 2025 16:06:40 +0100 Subject: [PATCH] nicer table colours --- src/main/resources/static/stylesheet.css | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/main/resources/static/stylesheet.css b/src/main/resources/static/stylesheet.css index 6ac4952..bfc111b 100644 --- a/src/main/resources/static/stylesheet.css +++ b/src/main/resources/static/stylesheet.css @@ -2,6 +2,8 @@ body { --dark-grey: #717171; --light-grey: #858585; --warning: #ce0000; + --table-header: #c0c0c0; + --table-highlight: #e5e4e4; margin: 0 3%; font-family: sans-serif; @@ -97,12 +99,12 @@ table { } thead { - background-color: ButtonFace; + background-color: var(--table-header); } tbody { tr:hover { - background-color: ButtonBorder; + background-color: var(--table-highlight); } } }