refactor: Replace white & black colors with theme aware ones

Signed-off-by: Carlos Esteban Lopez <lcarlosesteb@vmware.com>
This commit is contained in:
Carlos Esteban Lopez
2023-02-19 13:27:08 -05:00
committed by Carlos Lopez
parent f14f82c563
commit cee0cd96cc
36 changed files with 169 additions and 129 deletions
@@ -64,7 +64,7 @@ const useStyles = makeStyles((theme: BackstageTheme) => ({
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
color: 'black',
color: theme.palette.common.black,
},
legend: {
position: 'absolute',
@@ -41,7 +41,7 @@ const useStyles = makeStyles<BackstageTheme>(theme => ({
},
lifecycle: {
lineHeight: '0.8em',
color: 'white',
color: theme.palette.common.white,
},
ga: {
backgroundColor: theme.palette.status.ok,