@progress/kendo-angular-buttons
Version:
Buttons Package for Angular
35 lines (34 loc) • 1.8 kB
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 possible theme colors for the buttons ([see examples]({% slug appearance_button %}#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.
* * `dark`—Applies the `dark` theme color.
* * `light`—Applies the `light` theme color.
* * `inverse`—Applies the `inverse` theme color.
* * `none`—Removes the theme color.
*/
export type ButtonThemeColor = 'base' | 'primary' | 'secondary' | 'tertiary' | 'info' | 'success' | 'warning' | 'error' | 'dark' | 'light' | 'inverse' | 'none';
/**
* 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.
* * `none`—Removes the theme color.
*/
export type ChipThemeColor = 'base' | 'info' | 'success' | 'warning' | 'error' | 'none';