Skip to content

Commit b944a38

Browse files
committed
use correct logo for splash screen in dark mode
1 parent 8b97430 commit b944a38

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

src/app.html

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -197,10 +197,6 @@
197197
background: #000;
198198
}
199199

200-
html.dark #splash-screen img {
201-
filter: invert(1);
202-
}
203-
204200
html.her #splash-screen {
205201
background: #983724;
206202
}

src/lib/components/OnBoarding.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
darkImage.src = '/static/splash.png';
2323
2424
darkImage.onload = () => {
25-
logo.src = '/static/splash.png';
25+
logo.src = '/static/splash-dark.png';
2626
logo.style.filter = ''; // Ensure no inversion is applied if splash-dark.png exists
2727
};
2828

0 commit comments

Comments
 (0)