mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-02 22:24:27 +01:00
0bc1eeaf37
* Deprecating Rinkeby, setting default debug network to Goerli * Deprecating Ropsten and Kovan * Conflict fix * Remove unused localization, test fixes * Add migration for moving used deprecated testnets to custom networks * Fix migrator test * Add more unit tests * Migration updates provider type to rpc if deprecated network is selected * Migration fully and correctly updates the provider if selected network is a deprecated testnet * Continue to show deprecation warning on each of rinkeby, ropsten and kovan * Add rpcUrl deprecation message to loading screen * Removing mayBeFauceting prop Co-authored-by: Dan Miller <danjm.com@gmail.com>
47 lines
1.8 KiB
SCSS
47 lines
1.8 KiB
SCSS
$color-map: (
|
|
'background-default': --color-background-default,
|
|
'background-alternative': --color-background-alternative,
|
|
'text-default': --color-text-default,
|
|
'text-alternative': --color-text-alternative,
|
|
'text-muted': --color-text-muted,
|
|
'icon-default': --color-icon-default,
|
|
'icon-alternative': --color-icon-alternative,
|
|
'icon-muted': --color-icon-muted,
|
|
'border-default': --color-border-default,
|
|
'border-muted': --color-border-muted,
|
|
'overlay-default': --color-overlay-default,
|
|
'overlay-inverse': --color-overlay-inverse,
|
|
'primary-default': --color-primary-default,
|
|
'primary-alternative': --color-primary-alternative,
|
|
'primary-muted': --color-primary-muted,
|
|
'primary-inverse': --color-primary-inverse,
|
|
'primary-disabled': --color-primary-disabled,
|
|
'error-default': --color-error-default,
|
|
'error-alternative': --color-error-alternative,
|
|
'error-muted': --color-error-muted,
|
|
'error-inverse': --color-error-inverse,
|
|
'error-disabled': --color-error-disabled,
|
|
'warning-default': --color-warning-default,
|
|
'warning-alternative': --color-warning-alternative,
|
|
'warning-muted': --color-warning-muted,
|
|
'warning-inverse': --color-warning-inverse,
|
|
'warning-disabled': --color-warning-disabled,
|
|
'success-default': --color-success-default,
|
|
'success-alternative': --color-success-alternative,
|
|
'success-muted': --color-success-muted,
|
|
'success-inverse': --color-success-inverse,
|
|
'success-disabled': --color-success-disabled,
|
|
'info-default': --color-info-default,
|
|
'info-alternative': --color-info-alternative,
|
|
'info-muted': --color-info-muted,
|
|
'info-inverse': --color-info-inverse,
|
|
'info-disabled': --color-info-disabled,
|
|
'mainnet': --mainnet,
|
|
'goerli': --goerli,
|
|
'sepolia': --sepolia,
|
|
'localhost': --localhost,
|
|
'transparent': --transparent,
|
|
'flask-purple': --flask-purple,
|
|
'inherit': --inherit,
|
|
);
|