I’m looking for a way to make certain text stand out more—either through text color or a more distinct bolding option. Has anyone found a good solution or workaround for this? I find current bold option to be too similar to regular text. I would love to incorporate color in a more streamlined way rather than <span_style="color: color_value;">. Thanks!
Is there a practical way to implement better text emphasis in Mochi flashcards?
3 Answers
You could try uploading a custom CSS theme (Settings → Preferences → Appearance → Custom CSS Theme). In your CSS file you can select the strong
tag and add color, or background highlight, or whatever! For example:
.memo_markdown_styles_markdown-class strong {
color: rebeccapurple;
}
That worked great! Thank you
Do you plan on implementing a function that allows for a more streamlined way to change text color? Or is that not possible in markdown? I'm just curious as my coding experience is purely copy/paste and ChatGBT hahaha.
It’s all just HTML in the end. Take a look at https://www.instagram.com/p/C5gRdwNOZ3j/?img_index=1 to see what you can get.