Why is the default text colour of my Joplin grey? How do I change it?

Hi, yes, you can change the color permanently on Desktop by editing the CSS.

You can change this from Settings > Appearance > Advanced > Custom Stylesheet for Rendered Markdown.

Change the color by adding:

body{
color: #000 // your color choice
}

Since it is standard css, you can also target things like p or h1.

To learn what styles are available you can use these instructions: Dev tools instructions

If you really want to customize, join us here: Share your CSS :slight_smile:

2 Likes