1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-22 18:00:18 +01:00

Dark Mode: Standardize error colors (#14029)

This commit is contained in:
David Walsh 2022-03-18 15:15:41 -05:00 committed by GitHub
parent 79d00f72e1
commit c0e930ea53
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 5 additions and 6 deletions

View File

@ -33,7 +33,7 @@
} }
&__password--error { &__password--error {
color: var(--crimson); color: var(--color-error-default);
margin-bottom: 0; margin-bottom: 0;
} }
@ -55,7 +55,7 @@
border-radius: 8px; border-radius: 8px;
background-color: #fff6f6; background-color: #fff6f6;
font-weight: 500; font-weight: 500;
color: var(--crimson); color: var(--color-error-default);
width: 292px; width: 292px;
padding: 9px 15px; padding: 9px 15px;
margin-top: 18px; margin-top: 18px;
@ -71,7 +71,7 @@
&__password-display-textarea { &__password-display-textarea {
@include Paragraph; @include Paragraph;
color: var(--crimson); color: var(--color-error-default);
border: none; border: none;
height: 75px; height: 75px;
width: 100%; width: 100%;

View File

@ -186,7 +186,7 @@
} }
&__warning { &__warning {
color: var(--crimson); color: var(--color-error-default);
} }
&__rows { &__rows {

View File

@ -131,7 +131,6 @@
--silver: #cdcdcd; --silver: #cdcdcd;
--caribbean-green: #02c9b1; --caribbean-green: #02c9b1;
--monzo: #d0021b; --monzo: #d0021b;
--crimson: #e91550;
--blue-lagoon: #038789; --blue-lagoon: #038789;
--purple: #690496; --purple: #690496;
--tulip-tree: #ebb33f; --tulip-tree: #ebb33f;

View File

@ -2,7 +2,7 @@
&__error { &__error {
padding-bottom: 20px; padding-bottom: 20px;
text-align: center; text-align: center;
color: var(--crimson); color: var(--color-error-default);
} }
&__rpc-save-button { &__rpc-save-button {