From 24047d7fdd60c35368f9b345a9f8c983344d722c Mon Sep 17 00:00:00 2001 From: Vendicated Date: Fri, 12 Dec 2025 20:56:56 +0100 Subject: [PATCH] fix splash themeing --- src/renderer/components/screenSharePicker.css | 7 ------- src/renderer/themedSplash.ts | 2 +- 2 files changed, 1 insertion(+), 8 deletions(-) diff --git a/src/renderer/components/screenSharePicker.css b/src/renderer/components/screenSharePicker.css index 3dd7129..c00c622 100644 --- a/src/renderer/components/screenSharePicker.css +++ b/src/renderer/components/screenSharePicker.css @@ -151,11 +151,4 @@ >section { flex: 1; } -} - -.vcd-screen-picker-hint-description { - color: var(--header-secondary); - font-size: 14px; - line-height: 20px; - font-weight: 400; } \ No newline at end of file diff --git a/src/renderer/themedSplash.ts b/src/renderer/themedSplash.ts index 36ad281..72cc6fe 100644 --- a/src/renderer/themedSplash.ts +++ b/src/renderer/themedSplash.ts @@ -60,7 +60,7 @@ const updateSplashColors = () => { const bodyStyles = document.body.computedStyleMap(); const color = bodyStyles.get("--text-default"); - const backgroundColor = bodyStyles.get("--background-primary"); + const backgroundColor = bodyStyles.get("--background-base-lowest"); if (isValidColor(color)) { Settings.store.splashColor = resolveColor(color[0]);