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 {
color: #fff;
background: #16a34a;
border-color: #16a34a;
color: var(--accent-text);
background: var(--accent);
border-color: var(--accent);
}
.stopwatchStart:hover {
background: #15803d;
filter: brightness(0.9);
}
.stopwatchStop {
color: #fff;
background: #dc2626;
border-color: #dc2626;
color: var(--accent-text);
background: var(--accent);
border-color: var(--accent);
opacity: 0.8;
}
.stopwatchStop:hover {
background: #b91c1c;
opacity: 1;
}
.stopwatchLap {