Changing wiki title font color

Hi,
I’ve been playing with the colour options using the palette and the editor.
You would think this would be easy… However, without a better understanding of what the elements are and how to locate them, I can’t determine where to change the title text color.
Is there a guide with pictures?
Thank you.
Parodocs

Depending whether your wiki is showing titles as links or not, this might need a little massaging:

.tc-site-title.tc-site-title,
.tc-site-title.tc-site-title a {
  color:red;
}

I’m doubling up on the class to increases specificity. If that doesn’t work for you…

.tc-site-title,
.tc-site-title a {
  color:red !important;
}

Create a tiddler, call it anything you like and add a tag $:/tags/Stylesheet. Paste the example above into the tiddler and save.

(Alternately to stylesheet-approach answer by @CodaCoder:slight_smile:

Control Panel > Appearance > Palette > show editor (at bottom)…

Choose a new color for site-title-foreground

Ah, one complication! If your site-title is itself a LINK (as it is at tiddlywiki.com), and if you don’t just want to use the color applied to other links (tiddler-link-foreground in the palette), then you need the stylesheet solution described above, since the palette does not separately specify a color for a site-title LINK as such.