Skip to content

Commit 63001a1

Browse files
committed
Improve logo/accent contrast for dark mode
1 parent d586f26 commit 63001a1

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/Main.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
on:click={refreshFeed}
1515
use:tooltip={{ theme: "dark-border" }}
1616
title="Click to refresh"
17-
class="flex items-center gap-1 text-xl font-extrabold bg-gradient-to-br from-blue-600 to-indigo-800 hover:opacity-90 bg-clip-text text-transparent"
17+
class="flex items-center gap-1 text-xl font-extrabold bg-gradient-to-br from-blue-600 to-indigo-600 hover:opacity-90 bg-clip-text text-transparent"
1818
>
1919
<img src={appLogo} alt="Seismic logo" width="24" />
2020
Seismic

src/Settings.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
on:click={closeSettings}
4141
use:tooltip={{ theme: "dark-border" }}
4242
title="Close Settings"
43-
class="text-2xl text-indigo-800 hover:opacity-90"
43+
class="text-2xl text-blue-600 hover:opacity-90"
4444
>
4545
&times;
4646
</button>
@@ -84,7 +84,7 @@
8484
/>
8585
<button
8686
on:click={saveRefreshInterval}
87-
class="text-sm bg-gradient-to-br from-blue-600 to-indigo-800 hover:opacity-90 text-white px-2 py-1 rounded"
87+
class="text-sm bg-gradient-to-br from-blue-600 to-indigo-600 hover:opacity-90 text-white px-2 py-1 rounded"
8888
>Save</button
8989
>
9090
</div>

src/lib/SettingsButton.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
}
88
</script>
99

10-
<button on:click={openSettings} use:tooltip={{ theme: "dark-border" }} title="Settings" class="text-indigo-800">
10+
<button on:click={openSettings} use:tooltip={{ theme: "dark-border" }} title="Settings" class="text-blue-600">
1111
<svg viewBox="0 0 20 20" fill="currentColor" width="20" height="20">
1212
<path
1313
fill-rule="evenodd"

0 commit comments

Comments
 (0)