aboutsummaryrefslogtreecommitdiff
path: root/src/components/common
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/common')
-rw-r--r--src/components/common/TaggRadioButton.tsx5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/components/common/TaggRadioButton.tsx b/src/components/common/TaggRadioButton.tsx
index fc4008e5..25d00ec9 100644
--- a/src/components/common/TaggRadioButton.tsx
+++ b/src/components/common/TaggRadioButton.tsx
@@ -1,5 +1,6 @@
import React from 'react';
import {StyleSheet, TouchableOpacity, View} from 'react-native';
+import {RADIO_BUTTON_GREY, TAGG_LIGHT_BLUE_2} from '../../constants/constants';
interface TaggRadioButtonProps {
pressed: boolean;
@@ -10,11 +11,11 @@ const TaggRadioButton: React.FC<TaggRadioButtonProps> = ({
onPress,
}) => {
const activeOuterStyle = {
- borderColor: pressed ? '#6EE7E7' : '#BEBEBE',
+ borderColor: pressed ? TAGG_LIGHT_BLUE_2 : RADIO_BUTTON_GREY,
};
const activeInnerStyle = {
- backgroundColor: pressed ? '#6EE7E7' : 'white',
+ backgroundColor: pressed ? TAGG_LIGHT_BLUE_2 : 'white',
};
return (
<TouchableOpacity