I am currently attempting to modify the background color of the entire header in antdesign. I believe the file containing the default settings can be found here: https://github.com/ant-design/ant-design/blob/master/components/style/themes/default.less
Upon inspecting this file, I have identified where the header color is defined and successfully changed it to red.
https://i.sstatic.net/hr4tP.png
In the Global.less file:
@import "./vars.less";
@layout-header-background: red;
However, I have noticed that this change is being overridden by another class https://i.sstatic.net/aA0So.png
My main query now is what would be considered the best practice for achieving a successful modification of the header color. https://i.sstatic.net/qcrvQ.png