More blue theming

zio/stable
Paul Frazee 2022-09-29 09:11:48 -05:00
parent e9f0405555
commit 44e208f283
2 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@ export function FAB({icon, onPress}: {icon: IconProp; onPress: OnPress}) {
<TouchableWithoutFeedback onPress={onPress}> <TouchableWithoutFeedback onPress={onPress}>
<View style={styles.outer}> <View style={styles.outer}>
<LinearGradient <LinearGradient
colors={[gradients.primary.start, gradients.primary.end]} colors={[gradients.purple.start, gradients.purple.end]}
start={{x: 0, y: 0}} start={{x: 0, y: 0}}
end={{x: 1, y: 1}} end={{x: 1, y: 1}}
style={styles.inner}> style={styles.inner}>

View File

@ -126,7 +126,7 @@ const styles = StyleSheet.create({
underline: { underline: {
position: 'absolute', position: 'absolute',
height: 4, height: 4,
backgroundColor: colors.purple3, backgroundColor: colors.black,
bottom: 0, bottom: 0,
}, },
}) })