Hey guys! Is it possible to get the same menu text and colors as this shopify page on my Sense theme? Anyone know how I do that?

Site: Brush Up
A user wants to replicate the menu text styling and colors from another Shopify site onto their Sense theme.
Solution Provided:
Another user shared CSS code to achieve this customization:
Key CSS modifications include:
Initial Issue:
The first code snippet had formatting errors. After clarification about which file to edit (Base.css), a corrected version was provided with the complete styling code to match the reference site’s appearance.
Hey guys! Is it possible to get the same menu text and colors as this shopify page on my Sense theme? Anyone know how I do that?

Site: Brush Up
Hi, @MrKingstone .
Hope everything is well!
/** This is just to adjust the width of your navigation container **/
.nav-container-menu {
flex: 0 0 70%;
}
/** Color of background header bar **/
.site-header {
background: #004C3F !important;
}
/** Color of text **/
.site-header a, .site-header span {
color: white !important;
}
To add this to your style file
Nothing happened. You mean in Base.css right? And do you also know how do i get the same font-style & size in menu or is that also in the code?
Sorry, @MrKingstone .
My mistake, yes in Base.css pase the following to get the exact same style:
/** This is just to adjust the width of your navigation container **/
.nav-container-menu {
flex: 0 0 70%;
}
/** Color of background header bar **/
.site-header {
background: #004C3F !important;
}
/** Color of text **/
.site-header a, .site-header span {
color: white !important;
}
/** Font Size & Family **/
.site-header a {
font-family: "Shopify Sans",sans-serif;
font-size: 15px;
}