Uhm… can we get back colours on the study/review items description (meaning/reading)? I’m somewhat colour blind and having saturated colouring for the word/radical/kanji was awesome. now it’s washed out and having font colour match the background somewhat doesn’t read the readability at all ![]()
EDIT:
vs
Custom CSS:
.kanji-highlight {
color: white;
background-color: var(--color-pink);
border: var(--color-pink-dark) 2px solid;
}
.vocabulary-highlight {
color: white;
background-color: var(--color-purple);
border: var(--color-purple-dark) 2px solid;
}
.radical-highlight {
color: white;
background-color: var(--color-blue);
border: var(--color-blue-dark) 2px solid;
}
.reading-highlight {
color: black;
/* background-color: var(--color-text-highlight-reading-background); */
background-color: lightgray;
border: var(--color-text-highlight-reading-text) 2px solid;
}



