diff options
author | Ivan Chen <ivan@tagg.id> | 2021-05-21 21:47:43 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-21 21:47:43 -0400 |
commit | 5afdf9208fd3d7498a2595797e6c9fb5f567fc61 (patch) | |
tree | b76d16e06c0fb5f89a3da9ffa44eddec71f9d52c /src/screens/chat/ChatScreen.tsx | |
parent | 83802c3a18b1a1406cb4f1336b91e477161e7340 (diff) | |
parent | dcbe315638f6c5edc98415d6cec2a016bfc601bf (diff) |
Merge pull request #436 from shravyaramesh/tma853-tag-selection-screen
[TMA-853] Tag selection screen
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: { |