fix(ui): align stop button icon contrast

Use --text-inverted for stop button icon color in dark mode so it matches send button styling, with a safe fallback in CSS.
This commit is contained in:
Shantur Rathore
2026-02-03 22:22:47 +00:00
parent fd22a5ed9d
commit 06b0d03c31
2 changed files with 4 additions and 4 deletions

View File

@@ -167,7 +167,7 @@
.stop-button {
@apply w-10 h-10 rounded-md border-none cursor-pointer flex items-center justify-center transition-all flex-shrink-0;
background-color: var(--button-danger-bg, rgba(239, 68, 68, 0.85));
color: var(--button-danger-text, #ffffff);
color: var(--button-danger-text, var(--text-inverted, #ffffff));
}
.stop-button:hover:not(:disabled) {