Use accent color for stopwatch buttons instead of hardcoded green/red

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Claude
2026-06-20 12:07:21 +02:00
parent b82e0e68c5
commit 09a0e44b30
+9 -8
View File
@@ -36,23 +36,24 @@
} }
.stopwatchStart { .stopwatchStart {
color: #fff; color: var(--accent-text);
background: #16a34a; background: var(--accent);
border-color: #16a34a; border-color: var(--accent);
} }
.stopwatchStart:hover { .stopwatchStart:hover {
background: #15803d; filter: brightness(0.9);
} }
.stopwatchStop { .stopwatchStop {
color: #fff; color: var(--accent-text);
background: #dc2626; background: var(--accent);
border-color: #dc2626; border-color: var(--accent);
opacity: 0.8;
} }
.stopwatchStop:hover { .stopwatchStop:hover {
background: #b91c1c; opacity: 1;
} }
.stopwatchLap { .stopwatchLap {