/**-----------------------------------------------------------------------------------------
* 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`&mdash;Applies base coloring value.
 * * `primary`&mdash;Applies primary coloring value.
 * * `secondary`&mdash;Applies secondary coloring value.
 * * `tertiary`&mdash;Applies tertiary coloring value.
 * * `inverse`&mdash;Applies inverse coloring value.
 *
 */
export type AppBarThemeColor = 'base' | 'primary' | 'secondary' | 'tertiary' | 'inverse';
