Update background color in StreamingIndicator animations for improved visibility

This commit is contained in:
Andrew Beal 2025-09-28 23:45:16 +01:00
parent 81e3d9c34f
commit 788b83db64

View file

@ -21,6 +21,7 @@
align-items: center;
position: relative;
margin-left: 4px;
margin-top: 12px;
}
.📦 {
@ -87,7 +88,7 @@
@keyframes slide {
0% {
background-color: color-mix(in srgb, var(--interactive-accent) 70%, black 30%);
background-color: color-mix(in srgb, var(--interactive-accent) 70%, white 30%);
transform: translatex(0vw);
}
100% {
@ -100,7 +101,7 @@
@keyframes color-change {
0% {
background-color: color-mix(in srgb, var(--interactive-accent) 70%, black 30%);
background-color: color-mix(in srgb, var(--interactive-accent) 70%, white 30%);
}
100% {
background-color: color-mix(in srgb, var(--interactive-accent) 95%, white 5%);