Fix visibility of completed checkmarks on onyx theme

Ensure checkmarks under the "completed" state are visible on the
near-white primary background for the onyx theme. The change adjusts
selector scoping so dark text and icons (including elements with
.text-white inside .bg-primary) are explicitly styled with a dark color,
preventing white-on-near-white contrast issues.
This commit is contained in:
Tristan Michael 2026-04-06 17:30:43 -07:00
parent 5756e19ceb
commit 58e205a024

View file

@ -166,8 +166,9 @@ body {
color: #d1bf82; color: #d1bf82;
} }
/* Dark text on primary buttons/FAB */ /* Dark text/icons on primary buttons/FAB */
[data-theme="onyx"] .bg-primary { [data-theme="onyx"] .bg-primary,
[data-theme="onyx"] .bg-primary .text-white {
color: #141414; color: #141414;
} }