Right click > inspect to see the html code rendered on the page. Here’s what you will see on firefox (this is very similar to the other major browsers):
You can see the rendered styles in the browser inspector (rule tab in firefox)
Then you can search in the advanced search for the class tc-title, to see where it is defined:
As you can see, it’s defined in the vanilla, base theme. It appears in the shadows tab because this is a plugin tiddler, and it wasn’t modified.
Open this tiddler by clicking on it, and edit it to see the content.
You will notice that this tiddler is tagged with $:/tags/Stylesheet
.
This is a system tag, and it is used by tiddlywiki to list the tiddlers that are to be used to style the wiki. See https://tiddlywiki.com/#SystemTag%3A%20%24%3A%2Ftags%2FStylesheet
Thus, if you want to create your own style, simply create a tiddler and add the tag $:/tags/Stylesheet
.
The order of the tiddler in the tag list is important, this will be the order in which the styles are rendered and this affect specificity / css cascade (the algorithm that determine what styles to apply ): Introducing the CSS Cascade - CSS: Cascading Style Sheets | MDN
And for only styling system tiddler, inspect the tiddlers :
You can see that the system tiddler title is contained in a div with the class tc-tiddler-system, so your css will be:
.tc-tiddler-system .tc-title{
font-size:0.5em;
}
To make sure your style apply, you can add a field “list-after”, set to nothing so your style will be listed at the bottom of the tag list. (see https://tiddlywiki.com/#Order%20of%20Tagged%20Tiddlers)
You might want to test a prototype I made to customize the fonts of a tiddlywiki:
https://fontmanager.tiddlyhost.com/
This will probably answer several questions you might have: https://tiddlywiki.com/#Custom%20Styles%20FAQ