Change the main text color of a community theme (css)

I use ultra lobster theme but I want to change the color of the main text in it, in both editing and reading modes
Could you help me out me the css for this?

You could try this to start. You change the hotpink part. You can define the color using a color keyword, #ff69b4, rgb(255, 105, 180), etc.

.workspace-leaf-content[data-type='markdown'] {
    --text-normal: hotpink;
    color: var(--text-normal);
}

another option:

.view-content {
    --text-normal: #ff69b4;
    color: var(--text-normal);
}
1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.