fix splash themeing

This commit is contained in:
Vendicated
2025-12-12 20:56:56 +01:00
parent 5c992d66a6
commit 24047d7fdd
2 changed files with 1 additions and 8 deletions

View File

@@ -152,10 +152,3 @@
flex: 1;
}
}
.vcd-screen-picker-hint-description {
color: var(--header-secondary);
font-size: 14px;
line-height: 20px;
font-weight: 400;
}

View File

@@ -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]);