mirror of
https://github.com/ankitects/anki.git
synced 2025-09-19 14:32:22 -04:00
Fix lack of marked color in day mode
The call to .lighter() was turning the already-light color into white. https://forums.ankiweb.net/t/2-1-55-marked-cards-not-colored-in-browser/25568
This commit is contained in:
parent
1dc728eb6c
commit
ff1f5f9f7a
1 changed files with 1 additions and 1 deletions
|
@ -378,7 +378,7 @@ $vars: (
|
|||
marked: (
|
||||
"Accent color for marked cards",
|
||||
(
|
||||
light: palette(indigo, 2),
|
||||
light: palette(indigo, 5),
|
||||
dark: palette(purple, 5),
|
||||
),
|
||||
),
|
||||
|
|
Loading…
Reference in a new issue