From 40cb39cdaaacaec4c6677710b1eabfb5d5267959 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rodrigo=20Santana=20Gon=C3=A7alves?= Date: Wed, 27 Mar 2024 10:24:06 -0300 Subject: [PATCH] remove unused input shared color --- src/components/input/index.tsx | 2 +- src/shared/constants/colors.ts | 4 ---- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/src/components/input/index.tsx b/src/components/input/index.tsx index bed315ef7..3f5b3a5a6 100644 --- a/src/components/input/index.tsx +++ b/src/components/input/index.tsx @@ -221,7 +221,7 @@ const styles = StyleSheet.create({ minHeight: 80, }), containerActive: castStyle.view({ - backgroundColor: sharedColors.input.active, + backgroundColor: sharedColors.background.accent, }), contentPadding: castStyle.view({ paddingBottom: 18, diff --git a/src/shared/constants/colors.ts b/src/shared/constants/colors.ts index 739cf4ddd..5d7589644 100644 --- a/src/shared/constants/colors.ts +++ b/src/shared/constants/colors.ts @@ -19,10 +19,6 @@ export const sharedColors = { highlight: '#575757', light: '#FBFBFB', }, - input: { - active: '#3A3A3A', - inactive: '#252525', - }, text: { primary: '#fff', secondary: '#000',