diff --git a/frontend/__snapshots__/lemon-ui-icons--shelf-n.png b/frontend/__snapshots__/lemon-ui-icons--shelf-n.png
index f8c31c3cf2ee5..06e1bb5ea7682 100644
Binary files a/frontend/__snapshots__/lemon-ui-icons--shelf-n.png and b/frontend/__snapshots__/lemon-ui-icons--shelf-n.png differ
diff --git a/frontend/__snapshots__/lemon-ui-icons--shelf-v.png b/frontend/__snapshots__/lemon-ui-icons--shelf-v.png
index cc1e5aad7a235..4e03fd97ac7bc 100644
Binary files a/frontend/__snapshots__/lemon-ui-icons--shelf-v.png and b/frontend/__snapshots__/lemon-ui-icons--shelf-v.png differ
diff --git a/frontend/__snapshots__/posthog-3000-navigation--dark-mode.png b/frontend/__snapshots__/posthog-3000-navigation--dark-mode.png
index 794b9ae81baa6..6c6f7e40384f0 100644
Binary files a/frontend/__snapshots__/posthog-3000-navigation--dark-mode.png and b/frontend/__snapshots__/posthog-3000-navigation--dark-mode.png differ
diff --git a/frontend/__snapshots__/posthog-3000-navigation--light-mode.png b/frontend/__snapshots__/posthog-3000-navigation--light-mode.png
index ba56f03c141b1..a8594d3e6cf1d 100644
Binary files a/frontend/__snapshots__/posthog-3000-navigation--light-mode.png and b/frontend/__snapshots__/posthog-3000-navigation--light-mode.png differ
diff --git a/frontend/__snapshots__/scenes-other-signup--cloud.png b/frontend/__snapshots__/scenes-other-signup--cloud.png
index 94cc8f265f36e..72b39350bb235 100644
Binary files a/frontend/__snapshots__/scenes-other-signup--cloud.png and b/frontend/__snapshots__/scenes-other-signup--cloud.png differ
diff --git a/frontend/__snapshots__/scenes-other-signup--self-hosted-sso.png b/frontend/__snapshots__/scenes-other-signup--self-hosted-sso.png
index cca2dd52e6a64..c180077e98982 100644
Binary files a/frontend/__snapshots__/scenes-other-signup--self-hosted-sso.png and b/frontend/__snapshots__/scenes-other-signup--self-hosted-sso.png differ
diff --git a/frontend/__snapshots__/scenes-other-signup--self-hosted.png b/frontend/__snapshots__/scenes-other-signup--self-hosted.png
index 4c63ed6f1ef23..f9096aa33a0cf 100644
Binary files a/frontend/__snapshots__/scenes-other-signup--self-hosted.png and b/frontend/__snapshots__/scenes-other-signup--self-hosted.png differ
diff --git a/frontend/src/layout/navigation-3000/components/Navbar.tsx b/frontend/src/layout/navigation-3000/components/Navbar.tsx
index c2921515bfbd8..874f7edba17ef 100644
--- a/frontend/src/layout/navigation-3000/components/Navbar.tsx
+++ b/frontend/src/layout/navigation-3000/components/Navbar.tsx
@@ -1,7 +1,7 @@
import { LemonBadge } from '@posthog/lemon-ui'
import { useActions, useValues } from 'kea'
import { HelpButton } from 'lib/components/HelpButton/HelpButton'
-import { IconDarkMode, IconHelpOutline, IconLightMode, IconSettings, IconSync } from 'lib/lemon-ui/icons'
+import { IconQuestion, IconGear, IconDay, IconNight, IconAsterisk } from '@posthog/icons'
import { Popover } from 'lib/lemon-ui/Popover'
import { ProfilePicture } from 'lib/lemon-ui/ProfilePicture'
import { Scene } from 'scenes/sceneTypes'
@@ -24,7 +24,7 @@ export function Navbar(): JSX.Element {
useValues(themeLogic)
const { toggleTheme } = useActions(themeLogic)
- const activeThemeIcon = isDarkModeOn ? :
+ const activeThemeIcon = isDarkModeOn ? :
return (