Bullet Theme - change header background color when active

HI im currently using the bullet theme, I would like to change the header background color to pink when active, when i hover over and click on the header, but when not active, the color will remain white color like current. i want it on homepage only.

Please help me.

see attached link https://themes.shopify.com/themes/bullet/styles/default/preview

@vanessaliew
Hello,

#header:hover {
  background: #F9C0C0;
}

Add this css at the bottom of Online Store->Theme->Edit code->Assets->skelet.scss.liquid

Like This

Hi,

Add below css in app.css file.

header {
    background: #ffafafe6 !important;
}

Thanks

Hit Like and Accept as Solution.