We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In our team we are creating changes to the Backstage UI and we would like to change the color of the background and the header text.
We've already managed to do it with the header background, but we haven't managed to do it with the font.
I've tried to implement it locally but it seems to be a limitation of the Backstage component itself.
Any suggestions for a better approach?
The text was updated successfully, but these errors were encountered:
Did you try creating a custom theme and overriding the pageTheme as explained here: https://backstage.io/docs/getting-started/app-custom-theme/#example-of-a-custom-theme
pageTheme
Sorry, something went wrong.
I tried, but I changed the color of all the fonts, not just the q&a header 😕
Did you try passing custom themeId to the RootPage and then applying custom theme for that theme?
themeId
So for example:
<QetaPage themeId="qeta"/>
And then in your app
createTheme({ pageTheme: { qeta: genPageTheme({ options: { fontColor: 'blue' } }) } });
No branches or pull requests
In our team we are creating changes to the Backstage UI and we would like to change the color of the background and the header text.
We've already managed to do it with the header background, but we haven't managed to do it with the font.
I've tried to implement it locally but it seems to be a limitation of the Backstage component itself.
Any suggestions for a better approach?
The text was updated successfully, but these errors were encountered: