@@ -19,12 +19,12 @@ export default class ActionBarScreen extends Component {
1919
2020 render ( ) {
2121 return (
22- < View flex bg-grey80 >
22+ < View flex bg-$backgroundNeutralLight >
2323 < PageControl
2424 containerStyle = { [ styles . pageControl , styles . absoluteContainer ] }
2525 numOfPages = { 6 }
2626 currentPage = { this . state . currentPage }
27- color = { Colors . grey10 }
27+ color = { Colors . $backgroundInverted }
2828 size = { 15 }
2929 />
3030 < Carousel
@@ -35,7 +35,7 @@ export default class ActionBarScreen extends Component {
3535 < View style = { styles . page } >
3636 < ActionBar
3737 actions = { [
38- { label : 'Delete' , onPress : ( ) => Alert . alert ( 'delete' ) , red30 : true } ,
38+ { label : 'Delete' , onPress : ( ) => Alert . alert ( 'delete' ) , $textDangerLight : true } ,
3939 { label : 'Replace Photo' , onPress : ( ) => Alert . alert ( 'replace photo' ) } ,
4040 { label : 'Edit' , onPress : ( ) => Alert . alert ( 'edit' ) }
4141 ] }
@@ -44,17 +44,17 @@ export default class ActionBarScreen extends Component {
4444
4545 < View style = { styles . page } >
4646 < ActionBar
47- backgroundColor = { Colors . primary }
47+ backgroundColor = { Colors . $backgroundPrimaryHeavy }
4848 actions = { [
49- { label : 'Hide' , onPress : ( ) => Alert . alert ( 'hide' ) , white : true } ,
50- { label : 'Add Discount' , onPress : ( ) => Alert . alert ( 'add discount' ) , white : true } ,
51- { label : 'Duplicate' , onPress : ( ) => Alert . alert ( 'duplicate' ) , white : true }
49+ { label : 'Hide' , onPress : ( ) => Alert . alert ( 'hide' ) , $textDefaultLight : true } ,
50+ { label : 'Add Discount' , onPress : ( ) => Alert . alert ( 'add discount' ) , $textDefaultLight : true } ,
51+ { label : 'Duplicate' , onPress : ( ) => Alert . alert ( 'duplicate' ) , $textDefaultLight : true }
5252 ] }
5353 />
5454 </ View >
5555
5656 < View style = { styles . page } >
57- < ActionBar actions = { [ { label : 'Delete' , red30 : true } , { label : 'Edit' } ] } />
57+ < ActionBar actions = { [ { label : 'Delete' , $textDangerLight : true } , { label : 'Edit' } ] } />
5858 </ View >
5959
6060 < View style = { styles . page } >
@@ -65,9 +65,9 @@ export default class ActionBarScreen extends Component {
6565 < ActionBar
6666 centered
6767 actions = { [
68- { label : 'Bold' , labelStyle : { color : Colors . grey10 , ...Typography . text60 , fontWeight : '400' } } ,
69- { label : 'Italic' , text60 : true , labelStyle : { fontStyle : 'italic' , color : Colors . grey10 } } ,
70- { label : 'Link' , text60 : true , labelStyle : { textDecorationLine : 'underline' , color : Colors . grey10 } }
68+ { label : 'Bold' , labelStyle : { color : Colors . $textDefault , ...Typography . text60 , fontWeight : '400' } } ,
69+ { label : 'Italic' , text60 : true , labelStyle : { fontStyle : 'italic' , color : Colors . $textDefault } } ,
70+ { label : 'Link' , text60 : true , labelStyle : { textDecorationLine : 'underline' , color : Colors . $textDefault } }
7171 ] }
7272 />
7373 </ View >
0 commit comments