Merge pull request #16853 from backstage/timbonicus/header-label-colors

Fix colors in HeaderLabel not following page theme
This commit is contained in:
Ben Lambert
2023-03-15 10:19:24 +01:00
committed by GitHub
2 changed files with 10 additions and 4 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/core-components': patch
---
Fixed the font color on `BackstageHeaderLabel` to respect the active page theme.
@@ -14,8 +14,9 @@
* limitations under the License.
*/
import { BackstageTheme } from '@backstage/theme';
import Grid from '@material-ui/core/Grid';
import { makeStyles } from '@material-ui/core/styles';
import { alpha, makeStyles } from '@material-ui/core/styles';
import Typography from '@material-ui/core/Typography';
import React from 'react';
import { Link } from '../../components/Link';
@@ -23,13 +24,13 @@ import { Link } from '../../components/Link';
/** @public */
export type HeaderLabelClassKey = 'root' | 'label' | 'value';
const useStyles = makeStyles(
const useStyles = makeStyles<BackstageTheme>(
theme => ({
root: {
textAlign: 'left',
},
label: {
color: theme.palette.common.white,
color: theme.page.fontColor,
fontWeight: theme.typography.fontWeightBold,
letterSpacing: 0,
fontSize: theme.typography.fontSize,
@@ -37,7 +38,7 @@ const useStyles = makeStyles(
lineHeight: 1,
},
value: {
color: 'rgba(255, 255, 255, 0.8)',
color: alpha(theme.page.fontColor, 0.8),
fontSize: theme.typography.fontSize,
lineHeight: 1,
},