@@ -316,7 +316,7 @@ class MainScreen extends Component {
316
316
return < SectionItem item = { item } onPress = { this . openScreen } onLongPress = { this . setDefaultScreen } /> ;
317
317
} else {
318
318
return (
319
- < View paddingH-s5 marginV-s1 height = { 20 } bg-grey80 >
319
+ < View paddingH-s5 marginV-s1 height = { 20 } bg-$backgroundNeutralLight >
320
320
< Text text80M > { item . title } </ Text >
321
321
</ View >
322
322
) ;
@@ -387,7 +387,7 @@ class MainScreen extends Component {
387
387
388
388
{ showNoResults && (
389
389
< View padding-20 >
390
- < Text grey40 text50 >
390
+ < Text $textNeutralLight text50 >
391
391
Sorry, nothing was found. Try Button or something..
392
392
</ Text >
393
393
</ View >
@@ -413,19 +413,19 @@ const SectionItem = React.memo(props => {
413
413
activeOpacity = { 1 }
414
414
style = { Dividers . d10 }
415
415
>
416
- < Text style = { [ item . deprecate && styles . entryTextDeprecated ] } grey10 text80 >
416
+ < Text style = { [ item . deprecate && styles . entryTextDeprecated ] } text80 >
417
417
{ item . title }
418
418
</ Text >
419
- < Icon source = { chevronIcon } style = { { tintColor : Colors . grey10 } } supportRTL />
419
+ < Icon source = { chevronIcon } style = { { tintColor : Colors . $iconDefault } } supportRTL />
420
420
</ TouchableOpacity >
421
421
) ;
422
422
} ) ;
423
423
424
424
const SectionHeader = React . memo ( props => {
425
425
const { section} = props ;
426
426
return (
427
- < View backgroundColor = { 'white' } >
428
- < Text back marginV-20 marginH-20 text60M >
427
+ < View bg-$backgroundDefault >
428
+ < Text marginV-20 marginH-20 text60M >
429
429
{ section . title }
430
430
</ Text >
431
431
</ View >
@@ -449,15 +449,15 @@ const styles = StyleSheet.create({
449
449
} ,
450
450
selectedChipContainer : {
451
451
height : 20 ,
452
- borderColor : Colors . blue30
452
+ borderColor : Colors . $textPrimary
453
453
} ,
454
454
selectedChip : {
455
- color : Colors . blue30
455
+ color : Colors . $textPrimary
456
456
} ,
457
457
scrollViewContainer : {
458
- borderBottomColor : Colors . grey60 ,
458
+ borderBottomColor : Colors . $outlineDefault ,
459
459
borderBottomWidth : 1 ,
460
- borderTopColor : Colors . grey60 ,
460
+ borderTopColor : Colors . $outlineDefault ,
461
461
borderTopWidth : 1
462
462
} ,
463
463
searchResultsContainer : { paddingTop : 20 }
0 commit comments