commit 93e00d65e00f498f8987b38986c7345a5ed41068
parent fe98b77128b2bf92e1baddcd989f7de2b80109d2
Author: Andreas Gruhler <agruhl@gmx.ch>
Date: Fri, 23 Jan 2026 12:17:46 +0100
feat: swap nav active color
Diffstat:
3 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/src/frontend/css/blue.css b/src/frontend/css/blue.css
@@ -1,10 +1,10 @@
nav.blue {
- background: #44546e;
+ background: #556f99;
border-bottom: 1px solid white;
}
nav.blue a.active {
font-weight: bold;
- background: #556f99;
+ background: #44546e;
}
nav.blue a {
color: white;
diff --git a/src/frontend/css/red.css b/src/frontend/css/red.css
@@ -1,10 +1,10 @@
nav.red {
- background: #bb0d15;
+ background: #cc3037;
border-bottom: 1px solid white;
}
nav.red a.active {
font-weight: bold;
- background: #cc3037;
+ background: #bb0d15;
}
nav.red a {
color: white;
diff --git a/src/frontend/css/yellow.css b/src/frontend/css/yellow.css
@@ -1,10 +1,10 @@
nav.yellow {
- background: #fd0;
+ background: #ffe95a;
border-bottom: 1px solid #fffceb;
}
nav.yellow a.active {
font-weight: bold;
- background: #ffe95a;
+ background: #fd0;
}
nav.yellow a {
color: black;