File tree 2 files changed +5
-3
lines changed
2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -32,5 +32,6 @@ export const colors = {
32
32
githubDark : '#1f2327' ,
33
33
alabaster : '#f7f7f7' ,
34
34
topicLightBlue : '#f1f8ff' ,
35
- pictonBlue : '#33B5E5' ,
35
+ pictonBlue : '#33B5E5' ,
36
+ themeBlue : '#5481b8' ,
36
37
} ;
Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ const InputContainer = styled.View`
71
71
const Button = styled . TouchableOpacity `
72
72
padding: 3%;
73
73
align-self: center;
74
- background-color: ${ colors . pictonBlue } ;
74
+ background-color: ${ colors . themeBlue } ;
75
75
` ;
76
76
77
77
const EndOfViewStyle = styled . View `
@@ -175,6 +175,7 @@ class GistCommentsScreen extends React.Component {
175
175
) ;
176
176
}
177
177
}
178
+
178
179
renderList = comments => {
179
180
return (
180
181
< React . Fragment >
@@ -197,7 +198,7 @@ class GistCommentsScreen extends React.Component {
197
198
placeholder = "Add comment here"
198
199
value = { this . state . comment }
199
200
onChangeText = { comment => this . setState ( { comment } ) }
200
- underlineColorAndroid = { colors . white }
201
+ underlineColorAndroid = { 'rgba(0,0,0,0)' }
201
202
/>
202
203
< Button
203
204
onPress = { this . onPressItem } >
You can’t perform that action at this time.
0 commit comments