AppTheme
Home > @backstage/core-plugin-api > AppTheme
Describes a theme provided by the app.
Signature:
export type AppTheme = {
    id: string;
    title: string;
    variant: 'light' | 'dark';
    icon?: React.ReactElement;
    Provider(props: {
        children: ReactNode;
    }): JSX.Element | null;
};