From dc2b22eaa501e50f872e6a843583106ea94c6f71 Mon Sep 17 00:00:00 2001 From: Michael Freno Date: Mon, 10 Aug 2026 20:57:13 -0400 Subject: [PATCH] feat(settings): accent-colored input cursor in add-source form Match the input's focusedTextColor with cursorColor=theme.accent on both the name and URL fields. --- src/pages/Settings/SourceManager.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/pages/Settings/SourceManager.tsx b/src/pages/Settings/SourceManager.tsx index cc57010..b237f35 100644 --- a/src/pages/Settings/SourceManager.tsx +++ b/src/pages/Settings/SourceManager.tsx @@ -105,6 +105,7 @@ function AddSourceForm() { width={25} textColor={theme.text} focusedTextColor={theme.accent} + cursorColor={theme.accent} /> @@ -120,6 +121,7 @@ function AddSourceForm() { width={35} textColor={theme.text} focusedTextColor={theme.accent} + cursorColor={theme.accent} />