Fix SmartTaskTitleInput to set text color to transparent for better visibility in dark mode

This commit is contained in:
Mo Tarbin
2026-04-05 18:25:55 -04:00
parent 4ad8b1aef8
commit 175ef04c70

View File

@@ -213,7 +213,7 @@ const SmartTaskTitleInput = ({
fontSize: 'inherit', fontSize: 'inherit',
lineHeight: 'inherit', lineHeight: 'inherit',
backgroundColor: 'transparent', backgroundColor: 'transparent',
color: mode === 'dark' ? '#cbd5e1' : '#1a202c', color: 'transparent',
caretColor: mode === 'dark' ? '#fff' : '#000', caretColor: mode === 'dark' ? '#fff' : '#000',
}} }}
/> />