/**
 * @license
 *-------------------------------------------------------------------------------------------
 * Copyright © 2026 Progress Software Corporation. All rights reserved.
 * Licensed under commercial license. See LICENSE.md in the package root for more information
 *-------------------------------------------------------------------------------------------
 */
/**
 * Specifies the theme color of the Floating Action Button..
 *
 * The possible values are:
 * * `base` (Default)&mdash;Applies base coloring.
 * * `primary`&mdash;Applies coloring based on the primary theme color.
 * * `secondary`&mdash;Applies coloring based on the secondary theme color.
 * * `tertiary`&mdash; Applies coloring based on the tertiary theme color.
 *
 */
export type FloatingActionButtonThemeColor = 'base' | 'primary' | 'secondary' | 'tertiary';
