diff --git a/src/components/Navigation/Navbar/styles.ts b/src/components/Navigation/Navbar/styles.ts index 0599235..52038b8 100644 --- a/src/components/Navigation/Navbar/styles.ts +++ b/src/components/Navigation/Navbar/styles.ts @@ -19,9 +19,10 @@ export const navbarStyles = ( return css` max-height: ${maxHeight}; width: 100%; - background-color: ${backgroundColor || theme === 'dark' + background-color: ${backgroundColor ?? + (theme === 'dark' ? getThemedColor('neutral', 800) - : getThemedColor('neutral', 100)}; + : getThemedColor('neutral', 100))}; position: ${fixed ? 'sticky' : 'absolute'}; top: 0; left: 0;