From 175ef04c7014723f360b754d4b695fa9f0761ff6 Mon Sep 17 00:00:00 2001 From: Mo Tarbin Date: Sun, 5 Apr 2026 18:25:55 -0400 Subject: [PATCH] Fix SmartTaskTitleInput to set text color to transparent for better visibility in dark mode --- src/views/components/SmartTaskTitleInput.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/components/SmartTaskTitleInput.jsx b/src/views/components/SmartTaskTitleInput.jsx index 4d87016..8432c44 100644 --- a/src/views/components/SmartTaskTitleInput.jsx +++ b/src/views/components/SmartTaskTitleInput.jsx @@ -213,7 +213,7 @@ const SmartTaskTitleInput = ({ fontSize: 'inherit', lineHeight: 'inherit', backgroundColor: 'transparent', - color: mode === 'dark' ? '#cbd5e1' : '#1a202c', + color: 'transparent', caretColor: mode === 'dark' ? '#fff' : '#000', }} />