C’est bien cela. Tu peux également différencier les couleurs selon si ton smartphone/Anki est en mode nuit ou non. Ici avec les couleurs de Pleco :
.card {
font-family: arial;
font-size: 20px;
text-align: center;
color: black;
background-color: white;
--text-color1: #E30000;
--text-color2: #02B31C;
--text-color3: #1510F0;
--text-color4: #8900BF;
--text-color5: #777777;
}
.card.night_mode {
--text-color1: #ff8080;
--text-color2: #80ff80;
--text-color3: #8080ff;
--text-color4: #df80ff;
--text-color5: #c6c6c6;
}
.tone1 {color: var(--text-color1);}
.tone2 {color: var(--text-color2);}
.tone3 {color: var(--text-color3);}
.tone4 {color: var(--text-color4);}
.tone5 {color: var(--text-color5);}