@progress/kendo-angular-navigation
Version:
Kendo UI Navigation for Angular
19 lines (18 loc) • 984 B
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
* Represents the possible theme colors of the AppBar
* ([see example](https://www.telerik.com/kendo-angular-ui/components/navigation/appbar/theme-color)).
* The theme color will be applied as a background color to the component.
*
* * The possible values are:
* * `base`—Applies base coloring value.
* * `primary`—Applies primary coloring value.
* * `secondary`—Applies secondary coloring value.
* * `tertiary`—Applies tertiary coloring value.
* * `inverse`—Applies inverse coloring value.
*
*/
export type AppBarThemeColor = 'base' | 'primary' | 'secondary' | 'tertiary' | 'inverse';