Skip to content

Commit

Permalink
Updating text/muted to text/alternative for select text on home screen (
Browse files Browse the repository at this point in the history
  • Loading branch information
georgewrmarshall authored Apr 28, 2022
1 parent 6309d53 commit ad1abaa
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion ui/components/app/selected-account/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
&__address {
@include H7;

color: var(--color-text-muted);
color: var(--color-text-alternative);
display: flex;
align-items: center;
}
Expand Down
4 changes: 2 additions & 2 deletions ui/components/app/wallet-overview/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
&__secondary-balance {
@include Paragraph;

color: var(--color-text-muted);
color: var(--color-text-alternative);
}

&__button {
Expand Down Expand Up @@ -125,7 +125,7 @@
&__secondary-balance {
@include H5;

color: var(--color-text-muted);
color: var(--color-text-alternative);
}

&__button {
Expand Down
2 changes: 1 addition & 1 deletion ui/components/ui/list-item/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
@include H7;

grid-area: sub;
color: var(--color-text-muted);
color: var(--color-text-alternative);
margin-top: 4px;
// all direct descendants should be truncated with ellipses
// allows flexibility in consuming components to use h3/other tag
Expand Down
4 changes: 2 additions & 2 deletions ui/pages/home/home.component.js
Original file line number Diff line number Diff line change
Expand Up @@ -281,14 +281,14 @@ export default class Home extends PureComponent {
descriptionText={
<>
<Typography
color={COLORS.TEXT_MUTED}
color={COLORS.TEXT_ALTERNATIVE}
variant={TYPOGRAPHY.H5}
fontWeight={FONT_WEIGHT.NORMAL}
>
{t('somethingWentWrong')}
</Typography>
<Typography
color={COLORS.TEXT_MUTED}
color={COLORS.TEXT_ALTERNATIVE}
variant={TYPOGRAPHY.H7}
fontWeight={FONT_WEIGHT.NORMAL}
>
Expand Down

0 comments on commit ad1abaa

Please sign in to comment.