change some colours
This commit is contained in:
parent
d2837c12b3
commit
d0ebacc02c
4 changed files with 5 additions and 5 deletions
|
|
@ -10,7 +10,7 @@ export default function ExpenseItem(itemProps : ExpenseItemProps) {
|
|||
return (
|
||||
<CustomCard>
|
||||
<View style={[styles.colorTip, {backgroundColor: itemProps.color}]}></View>
|
||||
<View style={[styles.textSection, {backgroundColor: colors.backgroundColor}]}>
|
||||
<View style={[styles.textSection, {backgroundColor: colors.containerColor}]}>
|
||||
<Text style={{
|
||||
fontSize: SIZES.normal,
|
||||
color: colors.primaryText
|
||||
|
|
@ -24,7 +24,7 @@ export default function ExpenseItem(itemProps : ExpenseItemProps) {
|
|||
color: colors.primaryText
|
||||
}} numberOfLines={1}>{itemProps.date}</Text>
|
||||
</View>
|
||||
<View style={[styles.valueSection, {backgroundColor: colors.backgroundColor}]}>
|
||||
<View style={[styles.valueSection, {backgroundColor: colors.containerColor}]}>
|
||||
<Text style={{
|
||||
fontSize: SIZES.xxLarge,
|
||||
color: colors.primaryText
|
||||
|
|
|
|||
Reference in a new issue