Resolve colors and app icon

This commit is contained in:
Lei Nelissen
2020-07-07 14:40:03 +02:00
parent 1f0db4c71d
commit a458164ee7
63 changed files with 25 additions and 50 deletions

View File

@@ -29,7 +29,7 @@ const Letter = styled.Text`
text-align: center;
padding: 1px 0;
font-size: 12px;
color: salmon;
color: #FF3C00;
`;
interface Props {

View File

@@ -16,8 +16,8 @@ const Container = styled.TouchableOpacity`
const ListButton: React.FC<TouchableOpacityProps> = ({ children, ...props }) => {
return (
<Container {...props}>
<Text style={{ color: 'salmon', fontSize: 16 }}>{children}</Text>
<ChevronRight width={BUTTON_SIZE} height={BUTTON_SIZE} fill="salmon" />
<Text style={{ color: '#FF3C00', fontSize: 16 }}>{children}</Text>
<ChevronRight width={BUTTON_SIZE} height={BUTTON_SIZE} fill="#FF3C00" />
</Container>
);
};