Fix color naming
This commit is contained in:
@@ -29,7 +29,7 @@ AppText.propTypes = {
|
|||||||
|
|
||||||
const styles = StyleSheet.create({
|
const styles = StyleSheet.create({
|
||||||
text: {
|
text: {
|
||||||
color: Colors.grey,
|
color: Colors.greyDark,
|
||||||
...Typography.mainText
|
...Typography.mainText
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
+6
-6
@@ -1,11 +1,11 @@
|
|||||||
export default {
|
export default {
|
||||||
greenSuperLight: '#E9F2ED',
|
greyDark: '#A5A5A5',
|
||||||
grey: '#A5A5A5',
|
grey: '#D2D2D2',
|
||||||
greyLight: '#D2D2D2',
|
greyLight: '#F2F2F2',
|
||||||
greySuperLight: '#F2F2F2',
|
|
||||||
orange: '#F38337',
|
orange: '#F38337',
|
||||||
purple: '#3A2671',
|
purple: '#3A2671',
|
||||||
purpleLight: '#5D4F8A',
|
purpleLight: '#5D4F8A',
|
||||||
tourquise: '#69CBC1',
|
tourquiseDark: '#69CBC1',
|
||||||
tourquiseLight: '#CFECEA',
|
tourquise: '#CFECEA',
|
||||||
|
tourquiseLight: '#E9F2ED',
|
||||||
}
|
}
|
||||||
@@ -5,7 +5,7 @@ export default {
|
|||||||
bottomBorder: {
|
bottomBorder: {
|
||||||
borderStyle: 'solid',
|
borderStyle: 'solid',
|
||||||
borderBottomWidth: 2,
|
borderBottomWidth: 2,
|
||||||
borderBottomColor: Colors.greyLight,
|
borderBottomColor: Colors.grey,
|
||||||
paddingBottom: Spacing.base
|
paddingBottom: Spacing.base
|
||||||
},
|
},
|
||||||
centerItems: {
|
centerItems: {
|
||||||
@@ -14,7 +14,7 @@ export default {
|
|||||||
justifyContent: 'center'
|
justifyContent: 'center'
|
||||||
},
|
},
|
||||||
greyBorder: {
|
greyBorder: {
|
||||||
borderColor: Colors.greyLight,
|
borderColor: Colors.grey,
|
||||||
borderRadius: 5,
|
borderRadius: 5,
|
||||||
borderStyle: 'solid',
|
borderStyle: 'solid',
|
||||||
borderWidth: 1,
|
borderWidth: 1,
|
||||||
@@ -25,7 +25,7 @@ export default {
|
|||||||
borderRadius: 25
|
borderRadius: 25
|
||||||
},
|
},
|
||||||
page: {
|
page: {
|
||||||
backgroundColor: Colors.greenSuperLight,
|
backgroundColor: Colors.tourquiseLight,
|
||||||
flex: 1
|
flex: 1
|
||||||
},
|
},
|
||||||
segmentContainer: { marginHorizontal: Spacing.base }
|
segmentContainer: { marginHorizontal: Spacing.base }
|
||||||
|
|||||||
Reference in New Issue
Block a user