diff options
author | Fabio Berger <me@fabioberger.com> | 2017-12-18 17:06:16 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2017-12-18 17:06:16 +0800 |
commit | 445ff1e28ee572236ec963a27bff227e859f685c (patch) | |
tree | 394f9ec709053d170e3c0438f1c2c127ad65896a /packages/website/ts/components/inputs/balance_bounded_input.tsx | |
parent | df9d3e3e16e5a00ea84369691c46a6e4a6a53049 (diff) | |
download | dexon-sol-tools-445ff1e28ee572236ec963a27bff227e859f685c.tar.gz dexon-sol-tools-445ff1e28ee572236ec963a27bff227e859f685c.tar.zst dexon-sol-tools-445ff1e28ee572236ec963a27bff227e859f685c.zip |
Standardize colors to always be in uppercase hex and consolidate material-ui greys
Diffstat (limited to 'packages/website/ts/components/inputs/balance_bounded_input.tsx')
-rw-r--r-- | packages/website/ts/components/inputs/balance_bounded_input.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/website/ts/components/inputs/balance_bounded_input.tsx b/packages/website/ts/components/inputs/balance_bounded_input.tsx index d02778392..0b92a5856 100644 --- a/packages/website/ts/components/inputs/balance_bounded_input.tsx +++ b/packages/website/ts/components/inputs/balance_bounded_input.tsx @@ -83,7 +83,7 @@ export class BalanceBoundedInput extends fullWidth={true} floatingLabelText={label} floatingLabelFixed={true} - floatingLabelStyle={{color: colors.grey500, width: 206}} + floatingLabelStyle={{color: colors.grey, width: 206}} errorText={errorText} value={this.state.amountString} hintText={<span style={{textTransform: 'capitalize'}}>amount</span>} @@ -133,7 +133,7 @@ export class BalanceBoundedInput extends const increaseBalanceText = 'Increase balance'; const linkStyle = { cursor: 'pointer', - color: colors.grey900, + color: colors.darkestGray, textDecoration: 'underline', display: 'inline', }; |