Navbar

You can inspect the application navbar from vendor/vue-luma/components/Navbar/Navbar.vue.

App Navbar Skin

Configure the application navbar skin from store/settings.js. Possible values are light and dark. The values correspond to configuration keys in store/navbarConfig.js.

export const state = () => ({ state: { 'default::mainNavbar': { navbar: 'light' } } })

Layout Settings

We can have different settings per layout. The following example configures the application navbar skin for the fixed layout.

export const state = () => ({ state: { 'fixed::mainNavbar': { navbar: 'dark' } } })