@junedc you can try with css changes as described bellow First, you can create a custom CSS file and add the following code:
.nova-header {
background-color: #1d2129;
color: #fff;
}
This code sets the background color of the header to a dark color and the font color to white.
Next, you can modify the CSS styles for both the dark and light themes to include the same header styles. To do this, you can add the following code to the resources/css/nova-dark.css and resources/css/nova-light.css files:
@import url('custom.css');
This code imports the custom CSS file we created earlier and includes the header styles for both the dark and light themes.