Change Color of Mobile Menu

I’m showing and hiding a white version of my menu and black version depening on the background color of each page.

On mobile only the first menu (white) shows even when I’ve hidden it on desktop.
So on my white pages it’s invisible.

I thought wix would intuitively show the black one on mobile, but it doesn’t.

Any thoughts on how to change the color or to show the second menu.

$w.onReady( function () {
$w(‘#darkHeader’).show();
$w(‘#whiteHeader’).hide();
});

You can use the formFactor to check whether the user view the site using a mobile device or a desktop.
Thank, you can show / hide depending on the device.

Best,
Tal.