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

Dark Mode: Snackbar component (#14075)

This commit is contained in:
David Walsh 2022-03-21 13:26:21 -05:00 committed by GitHub
parent b797e24b9e
commit ea4181d227
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 6 deletions

View File

@ -2,10 +2,10 @@
@include H7;
padding: 0.75rem 1rem;
color: var(--Blue-600);
color: var(--color-text-default);
min-width: 360px;
width: fit-content;
background: var(--Blue-000);
border: 1px solid var(--Blue-200);
background: var(--color-info-muted);
border: 1px solid var(--color-info-default);
border-radius: 6px;
}

View File

@ -1,12 +1,9 @@
:root {
// These are the colors of the MetaMask design system
// Only design system colors should be added, no superfluous variables
--Blue-000: #eaf6ff;
--Blue-200: #75c4fd;
--Blue-300: #43aefc;
--Blue-400: #1098fc;
--Blue-500: #037dd6;
--Blue-600: #0260a4;
// Greys
--Grey-000: #f2f3f4;
--Grey-100: #d6d9dc;