385389d23c
Signed-off-by: Andre Wanlin <67169551+awanlin@users.noreply.github.com>
667 B
667 B
@backstage/plugin-catalog
| @backstage/plugin-catalog |
|---|
| patch |
Previously, the color of the Entity Context Menu (in the Entity Page Header) was hardcoded as white.
This was an issue for themes that use a header with a white background. By default, the color of the icon is now theme.page.fontColor.
It can now also be overridden in the theme, which is only necessary if the header title, subtitle and three-dots icon need to have different colors. For example:
export function createThemeOverrides(theme: BackstageTheme): Overrides {
return {
PluginCatalogEntityContextMenu: {
button: {
color: 'blue',
},
},
...
},
...
}