1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 01:39:44 +01:00

Fixing COLORS.GRAY (#12538)

This commit is contained in:
ryanml 2021-10-30 11:04:09 -07:00 committed by GitHub
parent 2e8752183f
commit b058cbed3b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 2 deletions

View File

@ -97,6 +97,7 @@ $success-2: #caf4d1;
$success-3: #219e37;
$ui-black: #24292e;
$ui-grey: #d6d9dc;
$ui-white: #fff;
$ui-1: #f2f3f4;
$ui-2: #d6d9dc;
@ -117,6 +118,7 @@ $color-map: (
'ui-4': $ui-4,
'white': $ui-white,
'black': $ui-black,
'grey': $ui-grey,
'primary-1': $primary-1,
'primary-2': $primary-2,
'primary-3': $primary-3,

View File

@ -10,7 +10,7 @@ export const COLORS = {
UI3: 'ui-3',
UI4: 'ui-4',
BLACK: 'black',
GRAY: 'gray',
GREY: 'grey',
WHITE: 'white',
PRIMARY1: 'primary-1',
PRIMARY2: 'primary-2',

View File

@ -495,7 +495,7 @@ export default class ConfirmTransactionBase extends Component {
<Typography
variant={TYPOGRAPHY.H7}
fontStyle={FONT_STYLE.ITALIC}
color={COLORS.GRAY}
color={COLORS.UI4}
>
{t('transactionDetailDappGasMoreInfo')}
</Typography>