I am trying to change background color of entire header in antdesign. I am not sure but file with defaults should be this https://github.com/ant-design/ant-design/blob/master/components/style/themes/default.less
I found out that color of header is used here so i changed it to red
Global.less
@import "./vars.less";
@layout-header-background: red;
But its override with another class
Now my question is what is best practice to achieve change of header color.