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:
@@ -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 {
|
||||||
|
|||||||
Reference in New Issue
Block a user