how could i make the text use my primary color instead of my secondary color? i was looking through the common.scss file but i couldn’t find anything relating to the text/text color. (i’m talking about the text that you can choose, not sure what it’s called)
update:
html .custom-search-banner-wrap h1 {
color: var(--primary) !important;
}
html .custom-search-banner-wrap p {
color: var(--primary) !important;
}
achieves this, instead of using the secondary color for the text it uses your primary color.