How do I make one header section a different color while keeping the others the same?

How do I make one header section a different color while keeping the others the same?, I am using dawn theme, is there any code I need to paste in base.css? I want to make ‘TXTURE Powder’ gold

Yes, inside base.css file under everything add this


.list-menu li:nth-child(2) a{

  color: gold;

}

You can change the color value from gold to your brand value.

Best