From 8a1c74e7d6a4e0c1e32d9bd62e4646b825a2378d Mon Sep 17 00:00:00 2001 From: Keith Solomon Date: Tue, 21 Jul 2026 18:37:58 -0500 Subject: [PATCH] fix: update styles for accessibility --- frontend/static/style.css | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/frontend/static/style.css b/frontend/static/style.css index b441d65..e4cf5b9 100644 --- a/frontend/static/style.css +++ b/frontend/static/style.css @@ -4,6 +4,7 @@ --text: #f0f0f0; --muted: #a0a0a0; --accent: #ff6b35; + --button: #d6420c; --ok: #4caf50; --warn: #ff9800; --danger: #f44336; @@ -91,7 +92,7 @@ main { } #session-controls button { - background: var(--accent); + background: var(--button); color: #fff; border: none; padding: 0.7rem 1rem; @@ -201,12 +202,13 @@ main { } .setpoint-editor button { - background: #333; - color: var(--text); - border: 1px solid #444; - padding: 0.4rem 0.7rem; + background: var(--button); + border: 1px solid var(--button); border-radius: 4px; + color: white; cursor: pointer; + font-weight: bold; + padding: 0.4rem 0.7rem; } .chart-controls { @@ -226,9 +228,11 @@ main { } .chart-controls button { - background: var(--accent); + background: var(--button); border: none; + color: white; cursor: pointer; + font-weight: bold; } .chart-container { @@ -295,7 +299,7 @@ main { .session-row .session-times { font-size: 0.8rem; - color: var(--muted); + color: white; } footer {