Update of green color

This commit is contained in:
Victor Baranov 2018-08-20 19:45:52 +03:00
parent 7731b438f6
commit 75d60a5a7b
8 changed files with 16 additions and 16 deletions

View File

@ -405,7 +405,7 @@ App.prototype.renderNetworkDropdown = function () {
style: { style: {
paddingLeft: '20px', paddingLeft: '20px',
fontSize: '16px', fontSize: '16px',
color: '#8fdc97', color: '#60db97',
}, },
}, },
[ [

View File

@ -54,7 +54,7 @@ class AccountDropdowns extends Component {
style: { style: {
width: '4px', width: '4px',
height: '26px', height: '26px',
background: '#8fdc97', background: '#60db97',
position: 'absolute', position: 'absolute',
left: '-25px', left: '-25px',
}, },
@ -150,7 +150,7 @@ class AccountDropdowns extends Component {
onClick: () => actions.addNewAccount(), onClick: () => actions.addNewAccount(),
}, },
[ [
h('span', { style: { fontSize: '16px', color: '#8fdc97' } }, 'Create Account'), h('span', { style: { fontSize: '16px', color: '#60db97' } }, 'Create Account'),
], ],
), ),
h( h(
@ -167,7 +167,7 @@ class AccountDropdowns extends Component {
style: { style: {
fontSize: '16px', fontSize: '16px',
marginBottom: '5px', marginBottom: '5px',
color: '#8fdc97', color: '#60db97',
}, },
}, 'Import Account'), }, 'Import Account'),
] ]

View File

@ -51,7 +51,7 @@ Notice.prototype.render = function () {
} }
.markdown a { .markdown a {
color: #8fdc97; color: #60db97;
} }
.markdown::-webkit-scrollbar { .markdown::-webkit-scrollbar {

View File

@ -36,7 +36,7 @@ TokenList.prototype.render = function () {
'We had trouble loading your token balances. You can view them ', 'We had trouble loading your token balances. You can view them ',
h('span.hotFix', { h('span.hotFix', {
style: { style: {
color: '#8fdc97', color: '#60db97',
cursor: 'pointer', cursor: 'pointer',
}, },
onClick: () => { onClick: () => {

View File

@ -97,12 +97,12 @@ button, input[type="submit"] {
border-radius: 3px; border-radius: 3px;
font-size: 14px; font-size: 14px;
/* default green */ /* default green */
background: #8fdc97; background: #60db97;
/*box-shadow: 0px 5px 10px 0px rgba(92, 52, 162, 0.3);*/ /*box-shadow: 0px 5px 10px 0px rgba(92, 52, 162, 0.3);*/
} }
.btn-green, input[type="submit"].btn-green { .btn-green, input[type="submit"].btn-green {
background: #8fdc97; background: #60db97;
} }
.btn-red { .btn-red {
@ -230,7 +230,7 @@ textarea.twelve-word-phrase {
.check { .check {
margin-left: 12px; margin-left: 12px;
color: #8fdc97; color: #60db97;
flex: 1 0 auto; flex: 1 0 auto;
display: flex; display: flex;
justify-content: flex-end; justify-content: flex-end;
@ -279,7 +279,7 @@ app sections
} }
.warning { .warning {
color: #8fdc97; color: #60db97;
} }
p.exchanges { p.exchanges {
@ -391,7 +391,7 @@ p.exchanges {
.selected-network { .selected-network {
width: 4px; width: 4px;
height: 26px; height: 26px;
background: #8fdc97; background: #60db97;
position: absolute; position: absolute;
left: 0; left: 0;
} }

View File

@ -1,7 +1,7 @@
/* color */ /* color */
.color-green { .color-green {
color: #8fdc97; color: #60db97;
} }
.color-violet { .color-violet {
@ -231,7 +231,7 @@ hr.horizontal-line {
.keyring-label { .keyring-label {
z-index: 1; z-index: 1;
font-size: 11px; font-size: 11px;
background: #8fdc97; background: #60db97;
color: white; color: white;
border-radius: 3px; border-radius: 3px;
height: 20px; height: 20px;

View File

@ -77,7 +77,7 @@ InitializeMenuScreen.prototype.renderMenu = function (state) {
style: { style: {
fontSize: '18px', fontSize: '18px',
position: 'relative', position: 'relative',
color: '#8fdc97', color: '#60db97',
top: '2px', top: '2px',
marginLeft: '4px', marginLeft: '4px',
}, },
@ -134,7 +134,7 @@ InitializeMenuScreen.prototype.renderMenu = function (state) {
onClick: this.showRestoreVault.bind(this), onClick: this.showRestoreVault.bind(this),
style: { style: {
fontSize: '0.8em', fontSize: '0.8em',
color: '#8fdc97', color: '#60db97',
}, },
}, 'Import Existing DEN'), }, 'Import Existing DEN'),
]), ]),

View File

@ -81,7 +81,7 @@ UnlockScreen.prototype.render = function () {
onClick: () => this.props.dispatch(actions.forgotPassword()), onClick: () => this.props.dispatch(actions.forgotPassword()),
style: { style: {
fontSize: '14px', fontSize: '14px',
color: '#8fdc97', color: '#60db97',
}, },
}, 'Restore from seed phrase'), }, 'Restore from seed phrase'),
]), ]),