fix: unreadable chip/badge text in dark mode
CI / test-and-package (push) Successful in 59s
CI / build-android (push) Successful in 1m36s

Added explicit color: var(--text) on .chip and .badge selectors
in dark mode so unselected Home/Out chips and not-answered badges
are readable against the dark surface background.
This commit is contained in:
agentbox
2026-08-01 13:26:20 +00:00
parent b41c1ade44
commit ec40e73422
+7
View File
@@ -407,9 +407,16 @@ body {
[data-theme="dark"] .chip-no.active {
color: #1a1a2e;
}
[data-theme="dark"] .chip {
color: var(--text);
}
[data-theme="dark"] .badge {
color: var(--text);
}
[data-theme="dark"] .badge-yes,
[data-theme="dark"] .badge-no {
color: #1a1a2e;
font-weight: 600;
}
[data-theme="dark"] .meal-table th {
background: #1a1a30;