Help Tweaking Magma Theme

@Mayonnaise2124 made the Magma theme. I would like to change some colors on the header levels, but I can’t tell when looking at the code which header level is which. Header level 6 is a different color that I like and want to keep. All the others are white. I’d like to have at least one other header level be orange.

Here’s a link to the theme, for others’ convenience: Magma Theme: A dark theme for Obsidian

It looks like the headers aren’t explicitly selected in the theme, which is why you can’t find ‘em—they’re being styled implicitly through the other selectors.

So, all you should need to do is:

h3 {
    color: orange;	
}

Or, if you want it to be the same colour as the rest of the theme:

h3 {
    color: var(--text-accent);
}

…I think. I’m bad at CSS when I’m not guessing and checking…

@ryanjamurphy Thanks. I’ll give that a shot. :slightly_smiling_face: That worked! Thank you again.