[WIP] feat(ui) add semantic tokens (#16772)

This commit is contained in:
Mihaela Dumitru
2026-02-06 15:06:54 +02:00
committed by GitHub
parent 28c72bfa7f
commit 9ea9f4c899
112 changed files with 1189 additions and 363 deletions

View File

@@ -33,12 +33,12 @@ const useStyles = makeStyles()((theme: Theme) => {
contentPane: {
display: 'flex',
flexDirection: 'column',
background: theme.palette.ui01,
border: `1px solid ${theme.palette.ui03}`,
background: theme.palette.deepLinkingBackground,
border: `1px solid ${theme.palette.deepLinkingBorder}`,
padding: 40,
borderRadius: 16,
maxWidth: 410,
color: theme.palette.text01
color: theme.palette.deepLinkingText
},
logo: {
marginBottom: 32
@@ -66,14 +66,14 @@ const useStyles = makeStyles()((theme: Theme) => {
marginTop: 40,
height: 1,
maxWidth: 390,
background: theme.palette.ui03
background: theme.palette.deepLinkingSeparator
},
label: {
marginTop: 40,
...theme.typography.labelRegular,
color: theme.palette.text02,
color: theme.palette.deepLinkingLabelText,
'& a': {
color: theme.palette.link01
color: theme.palette.deepLinkingLink
}
}
};