@progress/kendo-angular-buttons
Version:
Buttons Package for Angular
41 lines (40 loc) • 2.05 kB
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
* Specifies the possible theme colors for the buttons ([see examples](https://www.telerik.com/kendo-angular-ui/components/buttons/button/appearance#theme-colors)).
*
* The possible values are:
* * `base`—Applies the `base` theme color.
* * `primary`—Applies the `primary` theme color.
* * `secondary`—Applies the `secondary` theme color.
* * `tertiary`—Applies the `tertiary` theme color.
* * `info`—Applies the `info` theme color.
* * `success`—Applies the `success` theme color.
* * `warning`—Applies the `warning` theme color.
* * `error`—Applies the `error` theme color.
* * `inverse`—Applies the `inverse` theme color.
*/
export type ButtonThemeColor = 'base' | 'primary' | 'secondary' | 'tertiary' | 'info' | 'success' | 'warning' | 'error' | 'inverse';
/**
* Specifies the possible theme colors for the Chip.
*
* The possible values are:
* * `base`—Applies the `base` theme color.
* * `info`—Applies the `info` theme color.
* * `success`—Applies the `success` theme color.
* * `warning`—Applies the `warning` theme color.
* * `error`—Applies the `error` theme color.
*/
export type ChipThemeColor = 'base' | 'info' | 'success' | 'warning' | 'error';
/**
* Specifies the possible theme colors for the FloatingActionButton component.
*
* The possible values are:
* * `base`—Applies the `base` theme color.
* * `primary`—Applies the `primary` theme color.
* * `secondary`—Applies the `secondary` theme color.
* * `tertiary`—Applies the `tertiary` theme color.
*/
export type FloatingActionButtonThemeColor = 'base' | 'primary' | 'secondary' | 'tertiary';