diff options
author | Shravya Ramesh <shravs1208@gmail.com> | 2021-05-21 14:07:19 -0700 |
---|---|---|
committer | Shravya Ramesh <shravs1208@gmail.com> | 2021-05-21 14:07:19 -0700 |
commit | 5b57d5c82a0d8b30a58fd66acd79f083e3019cfc (patch) | |
tree | 360deccdf5274a5c8aa7b6c10c3a6c73ac96c39c /src/screens/chat/ChatScreen.tsx | |
parent | d28255ac358c5d49dc3b1b1d99c967b4063b6abd (diff) |
Add colors through types
Diffstat (limited to 'src/screens/chat/ChatScreen.tsx')
-rw-r--r-- | src/screens/chat/ChatScreen.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/screens/chat/ChatScreen.tsx b/src/screens/chat/ChatScreen.tsx index 17618867..8991d65b 100644 --- a/src/screens/chat/ChatScreen.tsx +++ b/src/screens/chat/ChatScreen.tsx @@ -21,6 +21,7 @@ import { MessageFooter, TypingIndicator, } from '../../components'; +import {TAGG_LIGHT_BLUE_2} from '../../constants/constants'; import {MainStackParams} from '../../routes'; import {ScreenType} from '../../types'; import {HeaderHeight, normalize, SCREEN_WIDTH} from '../../utils'; @@ -38,7 +39,7 @@ const ChatScreen: React.FC<ChatScreenProps> = ({navigation}) => { const insets = useSafeAreaInsets(); const chatTheme: DeepPartial<Theme> = { colors: { - accent_blue: '#6EE7E7', + accent_blue: TAGG_LIGHT_BLUE_2, }, messageList: { container: { |