add css vars to theme palette

This commit is contained in:
2025-04-28 19:55:48 +03:00
parent ba9062dbcf
commit ed7b36791a
33 changed files with 149 additions and 110 deletions

View File

@@ -562,11 +562,12 @@ export const NotAuthenticated = ({
}}
sx={{
backgroundColor:
hasSeenGettingStarted === false && 'var(--green)',
hasSeenGettingStarted === false && theme.palette.other.positive,
color: hasSeenGettingStarted === false && 'black',
'&:hover': {
backgroundColor:
hasSeenGettingStarted === false && 'var(--green)',
hasSeenGettingStarted === false &&
theme.palette.other.positive,
color: hasSeenGettingStarted === false && 'black',
},
}}
@@ -1077,7 +1078,7 @@ export const NotAuthenticated = ({
>
<HelpIcon
sx={{
color: 'var(--unread)',
color: theme.palette.other.unread,
}}
/>
</ButtonBase>