Skip to content

Commit f930f2b

Browse files
committed
fix colors
1 parent 3eef678 commit f930f2b

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

src/config/colors.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,6 @@ export const colors = {
3232
githubDark: '#1f2327',
3333
alabaster: '#f7f7f7',
3434
topicLightBlue: '#f1f8ff',
35-
pictonBlue: '#33B5E5',
35+
pictonBlue: '#33B5E5',
36+
themeBlue: '#5481b8',
3637
};

src/gists/screens/gistComments.screen.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ const InputContainer = styled.View`
7171
const Button = styled.TouchableOpacity`
7272
padding: 3%;
7373
align-self: center;
74-
background-color: ${colors.pictonBlue};
74+
background-color: ${colors.themeBlue};
7575
`;
7676

7777
const EndOfViewStyle = styled.View`
@@ -175,6 +175,7 @@ class GistCommentsScreen extends React.Component {
175175
);
176176
}
177177
}
178+
178179
renderList = comments => {
179180
return (
180181
<React.Fragment>
@@ -197,7 +198,7 @@ class GistCommentsScreen extends React.Component {
197198
placeholder="Add comment here"
198199
value={this.state.comment}
199200
onChangeText={comment => this.setState({ comment })}
200-
underlineColorAndroid={colors.white}
201+
underlineColorAndroid={'rgba(0,0,0,0)'}
201202
/>
202203
<Button
203204
onPress={this.onPressItem}>

0 commit comments

Comments
 (0)