I am looking for the same. In the editor, I noticed that the header is defined by a template and package at a remote location:
/**
* The header for our theme.
*
* This is the template that displays all of the <head> section and everything up until <div id=”content”>
*
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
*
* @package Sanse
*/
I don’t think it’s possible to change that color without access to those files. Which is a crying shame, because this theme works REALLY well with the Yada Wiki plug-in, but oh man that color is just so intense, and does not work well with my brand assets!
So, the developer of Yada Wiki plug-in gave me this advice – thought I’d share.
****************
Plugin Author dmccan (@dmccan)
…You should be able to change the header colors with CSS. If you go to Appearance \ Customize, on the bottom, there is Additional CSS. Paste in something like this:
.hero {
background-color: #AC3860;
}
.site-header {
background-color: #AC3860;
}
NOTE: Change the color hex code to what you want.
*******************
Hope this helps!
Hi. Advice above is a good way to change hero element color.