CSS to change math color in preview mode?

Things I have tried

What I’m trying to do

I’d like to change the color of math equations in css when in preview mode.

This post answers the question for edit mode. I would like a similar solution for preview mode, if it exists.

You can by putting this in a css file:

.math-inline{
color: #ff8800;
font-size: 1em;
}

.math-block{
color: #0088ff;
font-size: 1em;
}

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