Added new "white" theme

• Added:
- new "white" theme which makes navigation bar white and sets appropriate styles for children
This commit is contained in:
mgabdev
2020-11-03 15:12:24 -06:00
parent 20f9e82959
commit e40f7e6765
8 changed files with 52 additions and 12 deletions

View File

@@ -120,13 +120,25 @@ class DisplayOptionsModal extends ImmutablePureComponent {
</Text>
<div className={[_s.d, _s.radiusSmall, _s.flexRow, _s.mt10, _s.py10, _s.bgTertiary].join(' ')}>
<ThemeBlock
title='White'
value='white'
checked={theme === 'white'}
onChange={this.handleOnThemeSelected}
style={{
borderColor: '#ececed',
backgroundColor: '#fff',
color: '#2d3436',
}}
/>
<ThemeBlock
title='Light'
value='light'
checked={theme === 'light'}
onChange={this.handleOnThemeSelected}
style={{
borderColor: '#ececed',
borderColor: '#68D99F',
backgroundColor: '#fff',
color: '#2d3436',
}}