feat(ui): tweak light mode colors, buttons pop

This commit is contained in:
psychedelicious
2023-06-30 13:07:37 +10:00
parent 877483093a
commit d6cfbe982f
4 changed files with 101 additions and 34 deletions

View File

@@ -98,11 +98,12 @@ const IAIMantineMultiSelect = (props: IAIMultiSelectProps) => {
},
},
'&[data-selected]': {
color: mode(base900, base50)(colorMode),
backgroundColor: mode(accent300, accent600)(colorMode),
backgroundColor: mode(accent400, accent600)(colorMode),
color: mode(base50, base100)(colorMode),
fontWeight: 600,
'&:hover': {
backgroundColor: mode(accent400, accent500)(colorMode),
backgroundColor: mode(accent500, accent500)(colorMode),
color: mode('white', base50)(colorMode),
},
},
},

View File

@@ -101,11 +101,12 @@ const IAIMantineSelect = (props: IAISelectProps) => {
},
},
'&[data-selected]': {
color: mode(base900, base50)(colorMode),
backgroundColor: mode(accent300, accent600)(colorMode),
backgroundColor: mode(accent400, accent600)(colorMode),
color: mode(base50, base100)(colorMode),
fontWeight: 600,
'&:hover': {
backgroundColor: mode(accent400, accent500)(colorMode),
backgroundColor: mode(accent500, accent500)(colorMode),
color: mode('white', base50)(colorMode),
},
},
},