diff --git a/site/src/pages/WorkspacePage/WorkspaceReadyPage.tsx b/site/src/pages/WorkspacePage/WorkspaceReadyPage.tsx index d124a9d046..7daeb934c9 100644 --- a/site/src/pages/WorkspacePage/WorkspaceReadyPage.tsx +++ b/site/src/pages/WorkspacePage/WorkspaceReadyPage.tsx @@ -104,7 +104,8 @@ export const WorkspaceReadyPage = ({ return; } const isDark = window.matchMedia("(prefers-color-scheme: dark)"); - setFaviconTheme(isDark ? "dark" : "light"); + // We want the favicon the opposite of the theme. + setFaviconTheme(isDark ? "light" : "dark"); }, []); const buildLogs = useWorkspaceBuildLogs(workspace.latest_build.id); const shouldDisplayBuildLogs =