@progress/kendo-angular-navigation
Version:
Kendo UI Navigation for Angular
18 lines (17 loc) • 885 B
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 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](slug:themecolor_appbar)).
* The theme color will be applied as a background color to the component.
*
* * The possible values are:
* * `light`—Applies coloring based on the light theme color.
* * `dark`—Applies coloring based on the dark theme color.
* * `inherit`&mdash Applies inherited coloring value.
* * `primary`—Applies primary coloring value.
*
*/
export type AppBarThemeColor = 'inherit' | 'light' | 'dark' | 'primary';