diff --git a/images/session/session_icon.png b/images/session/session_icon.png index 8555d93fe..2c07ba2e9 100644 Binary files a/images/session/session_icon.png and b/images/session/session_icon.png differ diff --git a/ts/components/AboutView.tsx b/ts/components/AboutView.tsx index 321ddecb8..122f9c312 100644 --- a/ts/components/AboutView.tsx +++ b/ts/components/AboutView.tsx @@ -22,10 +22,13 @@ const StyledContent = styled(Flex)` } img:first-child { + filter: brightness(0) saturate(100%) invert(75%) sepia(84%) saturate(3272%) hue-rotate(103deg) + brightness(106%) contrast(103%); margin: var(--margins-2xl) 0 var(--margins-lg); } img:nth-child(2) { + filter: var(--session-logo-text-current-filter); margin-bottom: var(--margins-xl); } diff --git a/ts/themes/SessionTheme.tsx b/ts/themes/SessionTheme.tsx index cac8e1c47..4a7f14fee 100644 --- a/ts/themes/SessionTheme.tsx +++ b/ts/themes/SessionTheme.tsx @@ -6,6 +6,7 @@ import { SettingsKey } from '../data/settings-key'; import { getOppositeTheme, isThemeMismatched } from '../util/theme'; import { THEME_GLOBALS, setThemeValues } from './globals'; import { switchThemeTo } from './switchTheme'; +import { Storage } from '../util/storage'; export async function ensureThemeConsistency(): Promise { const theme = window.Events.getThemeSetting(); @@ -63,7 +64,9 @@ export const SessionTheme = ({ useMount(() => { setThemeValues(THEME_GLOBALS); if (runSetup) { - void setupTheme(); + void Storage.onready(() => { + void setupTheme(); + }); } }); return children;