Merge pull request #16521 from luchillo17/fix/BCKSTG-102-theme-aware-colors
refactor: Replace white & black colors with theme aware ones
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user