/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
 * Sets the theme color. The default value is set by the Kendo theme.
 *
 * You can use these values:
 * * `inherit`&mdash;Uses coloring based on the current color.
 * * `primary`&mdash;Uses coloring based on primary theme color.
 * * `secondary`&mdash;Uses coloring based on secondary theme color.
 * * `tertiary`&mdash;Uses coloring based on tertiary theme color.
 * * `info`&mdash;Uses coloring based on info theme color.
 * * `success`&mdash;Uses coloring based on success theme color.
 * * `warning`&mdash;Uses coloring based on warning theme color.
 * * `error`&mdash;Uses coloring based on error theme color.
 * * `dark`&mdash;Uses coloring based on dark theme color.
 * * `light`&mdash;Uses coloring based on light theme color.
 * * `inverse`&mdash;Uses coloring based on inverse theme color.
 */
export type TypographyThemeColor = 'inherit' | 'primary' | 'secondary' | 'tertiary' | 'info' | 'success' | 'warning' | 'error' | 'dark' | 'light' | 'inverse';
