diff --git a/src/components/LeftSidebar.tsx b/src/components/LeftSidebar.tsx index fbb25ff7..db932e48 100644 --- a/src/components/LeftSidebar.tsx +++ b/src/components/LeftSidebar.tsx @@ -351,7 +351,7 @@ export function LeftSidebar() { {sidebarUserThemes.data.map((ut) => { const isActive = theme === 'custom' && customTheme && JSON.stringify(customTheme.colors) === JSON.stringify(ut.colors); return ( - applyCustomTheme({ colors: ut.colors, font: ut.font })} className="flex items-center justify-between cursor-pointer"> + applyCustomTheme({ colors: ut.colors, font: ut.font, background: ut.background ?? customTheme?.background })} className="flex items-center justify-between cursor-pointer">
{ut.title}
{isActive && }
diff --git a/src/components/SidebarThemeDropdown.tsx b/src/components/SidebarThemeDropdown.tsx index 6bcdefc8..b60490c3 100644 --- a/src/components/SidebarThemeDropdown.tsx +++ b/src/components/SidebarThemeDropdown.tsx @@ -92,7 +92,7 @@ export function SidebarThemeDropdown({ userPubkey, onNavigate, className }: Side {userThemes.data.map((ut) => { const isActive = theme === 'custom' && customTheme && JSON.stringify(customTheme.colors) === JSON.stringify(ut.colors); return ( - applyCustomTheme({ colors: ut.colors, font: ut.font })} className="flex items-center justify-between cursor-pointer"> + applyCustomTheme({ colors: ut.colors, font: ut.font, background: ut.background ?? customTheme?.background })} className="flex items-center justify-between cursor-pointer">
{ut.title}
{isActive && }