fix: update styles for accessibility

This commit is contained in:
Keith Solomon
2026-07-21 18:37:58 -05:00
parent 2a72972b4f
commit 8a1c74e7d6
+11 -7
View File
@@ -4,6 +4,7 @@
--text: #f0f0f0; --text: #f0f0f0;
--muted: #a0a0a0; --muted: #a0a0a0;
--accent: #ff6b35; --accent: #ff6b35;
--button: #d6420c;
--ok: #4caf50; --ok: #4caf50;
--warn: #ff9800; --warn: #ff9800;
--danger: #f44336; --danger: #f44336;
@@ -91,7 +92,7 @@ main {
} }
#session-controls button { #session-controls button {
background: var(--accent); background: var(--button);
color: #fff; color: #fff;
border: none; border: none;
padding: 0.7rem 1rem; padding: 0.7rem 1rem;
@@ -201,12 +202,13 @@ main {
} }
.setpoint-editor button { .setpoint-editor button {
background: #333; background: var(--button);
color: var(--text); border: 1px solid var(--button);
border: 1px solid #444;
padding: 0.4rem 0.7rem;
border-radius: 4px; border-radius: 4px;
color: white;
cursor: pointer; cursor: pointer;
font-weight: bold;
padding: 0.4rem 0.7rem;
} }
.chart-controls { .chart-controls {
@@ -226,9 +228,11 @@ main {
} }
.chart-controls button { .chart-controls button {
background: var(--accent); background: var(--button);
border: none; border: none;
color: white;
cursor: pointer; cursor: pointer;
font-weight: bold;
} }
.chart-container { .chart-container {
@@ -295,7 +299,7 @@ main {
.session-row .session-times { .session-row .session-times {
font-size: 0.8rem; font-size: 0.8rem;
color: var(--muted); color: white;
} }
footer { footer {