interface NavigationLookAndFeel {
    color: string;
    highlightColor?: null | string;
    hoverOrFocus: {
        backgroundColor: string;
        color: string;
    } & {
        [key: string]: unknown;
    };
}

Hierarchy

  • Record<string, unknown>
    • NavigationLookAndFeel

Properties

color: string
highlightColor?: null | string
hoverOrFocus: {
    backgroundColor: string;
    color: string;
} & {
    [key: string]: unknown;
}