@progress/kendo-angular-navigation
Version:
Kendo UI Navigation for Angular
19 lines (18 loc) • 879 B
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
* Specifies the theme color of the AppBar
* ([see example](slug:themecolor_appbar)).
* The theme color will be applied as background color of the component.
*
*
* * The possible values are:
* * `light` (Default)—Applies coloring based on light theme color.
* * `dark`—Applies coloring based on dark theme color.
* * `inherit`— Applies inherited coloring value.
* * `primary`— Applies primary coloring value.
*
*/
export type AppBarThemeColor = 'inherit' | 'light' | 'dark' | 'primary';