From 2f3969724512140d32b39b5b4e48b30bc574ab9a Mon Sep 17 00:00:00 2001 From: katty barroso Date: Thu, 12 Dec 2024 10:18:31 +0100 Subject: [PATCH] Fix placeholder color --- fabric/src/components/TextInput/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fabric/src/components/TextInput/index.tsx b/fabric/src/components/TextInput/index.tsx index 698b80b75..fcba6c21d 100644 --- a/fabric/src/components/TextInput/index.tsx +++ b/fabric/src/components/TextInput/index.tsx @@ -273,7 +273,7 @@ const StyledTextArea = styled.textarea` padding: ${({ theme }) => theme.space[1]}px; ::placeholder { - color: ${({ theme }) => theme.colors.textDisabled}; + color: ${({ theme }) => theme.colors.textSecondary}; } `