Hi. I recently updated my anki to the new update and noticed that the back of my cards don’t show any text. I was messing around and realized the “issue” was because I was using the black theme. If I change the theme to light, the answer shows. I realized that when I use the black theme, the text on the back doesn’t change to white, it remains black, matching the background color. I looked through the forums and found possible solutions, but nothing seems to work. I’ve tried messing with the CSS with no avail.
The original CSS style is
.card {
font-family: arial;
font-size: 20px;
text-align: center;
color: black;
background-color: white;
}
I’ve tried switching color to white and background-color to black, but that doesn’t seem to work.
I’ve tried adding nightmode with the below code with no luck.
.card.night_mode {
font-family: arial;
font-size: 20px;
text-align: center;
color: white;
background-color: black;
}
I’ve attached screenshots of the resulting cards, no matter the changes I made to the CSS. Any help would be appreciated.