From 66f0b2bc3fed0c872d90db693124bf09d4fc5ca6 Mon Sep 17 00:00:00 2001 From: Gigi Date: Sun, 5 Oct 2025 22:35:37 +0100 Subject: [PATCH] fix: correct default highlight color for 'mine' to yellow (#ffff00) --- src/hooks/useSettings.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hooks/useSettings.ts b/src/hooks/useSettings.ts index 1b9ef5f7..d4f49c80 100644 --- a/src/hooks/useSettings.ts +++ b/src/hooks/useSettings.ts @@ -54,7 +54,7 @@ export function useSettings({ relayPool, eventStore, pubkey, accountManager }: U root.setProperty('--reading-font-size', `${settings.fontSize || 18}px`) // Set highlight colors for three levels - root.setProperty('--highlight-color-mine', settings.highlightColorMine || '#eab308') + root.setProperty('--highlight-color-mine', settings.highlightColorMine || '#ffff00') root.setProperty('--highlight-color-friends', settings.highlightColorFriends || '#f97316') root.setProperty('--highlight-color-nostrverse', settings.highlightColorNostrverse || '#9333ea') }, [settings])