From 8d3c9390ae235efb39bf0d75139dff2cd7ae4ab9 Mon Sep 17 00:00:00 2001 From: Cookie <52550063+Covkie@users.noreply.github.com> Date: Thu, 26 Jun 2025 21:09:33 -0400 Subject: [PATCH] update discord css variable name (#1164) --- src/renderer/themedSplash.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/renderer/themedSplash.ts b/src/renderer/themedSplash.ts index 13d762b..36ad281 100644 --- a/src/renderer/themedSplash.ts +++ b/src/renderer/themedSplash.ts @@ -59,7 +59,7 @@ function resolveColor(color: string) { const updateSplashColors = () => { const bodyStyles = document.body.computedStyleMap(); - const color = bodyStyles.get("--text-normal"); + const color = bodyStyles.get("--text-default"); const backgroundColor = bodyStyles.get("--background-primary"); if (isValidColor(color)) {