diff options
Diffstat (limited to 'src/components')
-rw-r--r-- | src/components/search/SearchCategories.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/components/search/SearchCategories.tsx b/src/components/search/SearchCategories.tsx index e905c195..30de7e2c 100644 --- a/src/components/search/SearchCategories.tsx +++ b/src/components/search/SearchCategories.tsx @@ -3,6 +3,7 @@ import React from 'react'; import {StyleSheet, Text, View} from 'react-native'; import {TouchableOpacity} from 'react-native-gesture-handler'; import LinearGradient from 'react-native-linear-gradient'; +import {TAGG_LIGHT_BLUE_2, TAGG_PURPLE} from '../../constants'; import {SCREEN_WIDTH} from '../../utils'; const SearchCategories: React.FC = () => { @@ -30,7 +31,7 @@ const SearchCategories: React.FC = () => { {categories && categories.map((searchCategory) => ( <LinearGradient - colors={['#8000FF', '#00FFFF']} + colors={[TAGG_PURPLE, TAGG_LIGHT_BLUE_2]} start={{x: 0.0, y: 1.0}} end={{x: 1.0, y: 1.0}} style={styles.gradientContainer}> |