Change header title font colour

Can anyone help with changing the font colour of this header on mobile? I’ve tried a few snippets but none seem to work.

Cupertino theme if it makes a difference

Give this a try:

/* title color */
.workspace-leaf.mod-active .view-header-title, 
.is-focused .workspace-leaf.mod-active .view-header-title {
    color: rgba(250, 128, 114, 1); /* salmon */
}

/* breadcrumbs color */
.workspace-leaf.mod-active .view-header-title-parent .view-header-breadcrumb  {
    color: rgba(250, 128, 114, 0.6); /* salmon 0.6 opacity */
}

It works on desktop and mobile.

Thanks!

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