diff options
-rw-r--r-- | src/components/comments/CommentTile.tsx | 6 | ||||
-rw-r--r-- | src/constants/constants.ts | 1 |
2 files changed, 3 insertions, 4 deletions
diff --git a/src/components/comments/CommentTile.tsx b/src/components/comments/CommentTile.tsx index 9a1607f7..39605f2c 100644 --- a/src/components/comments/CommentTile.tsx +++ b/src/components/comments/CommentTile.tsx @@ -4,7 +4,7 @@ import {ProfilePreview} from '../profile'; import {CommentType, ScreenType, TypeOfComment} from '../../types'; import {StyleSheet} from 'react-native'; import ClockIcon from '../../assets/icons/clock-icon-01.svg'; -import {COMMENT_REPLIES} from '../../constants'; +import {TAGG_LIGHT_BLUE} from '../../constants'; import {TouchableOpacity} from 'react-native-gesture-handler'; import {getTimePosted, normalize, SCREEN_WIDTH} from '../../utils'; import Arrow from '../../assets/icons/back-arrow-colored.svg'; @@ -89,7 +89,7 @@ const CommentTile: React.FC<CommentTileProps> = ({ <Arrow width={12} height={11} - color={COMMENT_REPLIES} + color={TAGG_LIGHT_BLUE} style={ !showReplies ? styles.repliesDownArrow @@ -164,7 +164,7 @@ const styles = StyleSheet.create({ }, repliesText: { - color: COMMENT_REPLIES, + color: TAGG_LIGHT_BLUE, fontWeight: '500', fontSize: normalize(12), marginRight: '3%', diff --git a/src/constants/constants.ts b/src/constants/constants.ts index 6a94f51f..ad43c337 100644 --- a/src/constants/constants.ts +++ b/src/constants/constants.ts @@ -63,7 +63,6 @@ export const YOUTUBE_FONT_COLOR: string = '#FCA4A4'; export const TAGG_DARK_BLUE = '#4E699C'; export const TAGG_LIGHT_BLUE: string = '#698DD3'; export const TAGG_LIGHT_PURPLE = '#F4DDFF'; -export const COMMENT_REPLIES = '#698DD3'; export const TAGGS_GRADIENT = { start: '#9F00FF', |