diff options
| author | Ivan Chen <ivan@tagg.id> | 2021-04-19 16:18:44 -0400 |
|---|---|---|
| committer | Ivan Chen <ivan@tagg.id> | 2021-04-19 16:18:44 -0400 |
| commit | 9458d888cc03fc61c13db69492682ac268991887 (patch) | |
| tree | 953f3b29708bc1f5b918bb403e59d4e70af58f4f /src/screens/profile/CaptionScreen.tsx | |
| parent | c477ebfd00e3898814721b8316a47cf14f1740c4 (diff) | |
cleaned up TAGG_LIGHT_BLUE_2 color constant
Diffstat (limited to 'src/screens/profile/CaptionScreen.tsx')
| -rw-r--r-- | src/screens/profile/CaptionScreen.tsx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/screens/profile/CaptionScreen.tsx b/src/screens/profile/CaptionScreen.tsx index 998897e2..282857d6 100644 --- a/src/screens/profile/CaptionScreen.tsx +++ b/src/screens/profile/CaptionScreen.tsx @@ -13,11 +13,12 @@ import { } from 'react-native'; import {Button} from 'react-native-elements'; import {useDispatch, useSelector} from 'react-redux'; -import {MainStackParams} from '../../routes'; import {SearchBackground, TaggBigInput} from '../../components'; import {CaptionScreenHeader} from '../../components/'; import TaggLoadingIndicator from '../../components/common/TaggLoadingIndicator'; +import {TAGG_LIGHT_BLUE_2} from '../../constants'; import {ERROR_UPLOAD, SUCCESS_PIC_UPLOAD} from '../../constants/strings'; +import {MainStackParams} from '../../routes'; import {postMoment} from '../../services'; import { loadUserMoments, @@ -137,7 +138,7 @@ const styles = StyleSheet.create({ }, shareButtonTitle: { fontWeight: 'bold', - color: '#6EE7E7', + color: TAGG_LIGHT_BLUE_2, }, header: { marginVertical: 20, |
