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

Dark Mode: Fix colors in toggle button (#14280)

This commit is contained in:
David Walsh 2022-03-30 17:29:59 -05:00 committed by GitHub
parent 9d7f4d2005
commit 97be10becd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -31,18 +31,18 @@ const thumbStyle = {
const colors = {
activeThumb: {
base: 'var(--color-primary-default)',
base: '#037DD6',
},
inactiveThumb: {
base: 'var(--color-icon-default)',
base: '#6A737D',
},
active: {
base: 'var(--color-background-default)',
hover: 'var(--color-background-default)',
base: '#F2F4F6',
hover: '#F2F4F6',
},
inactive: {
base: 'var(--color-background-alternative)',
hover: 'var(color-background-alternative)',
base: '#F2F4F6',
hover: '#F2F4F6',
},
};