Change color of Top Bar

There is an optional top bar at the top of the theme template I have turned on. Under theme options it is labeled as “Top Bar Section.” How do I change the color of this bar to a different color? I am struggling to find the necessary code to do this using CSS.

Thank you for any help.

Hey there,

I hope you are well today and thank you for your question.

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Additional CSS

/*change color of top bar*/
div.top-header {
    background-color: #050505;
}

Best regards,
Support.