import { CoreThemeColors } from "../components/theme"; import { createTheme, Overrides } from "./baseTheme"; /** * Theme definition map. * @typedef ThemeColorsDefinition * @property {CoreThemeColors} colors An object which specifies the base colors from 1 to 11. * @private */ export interface ThemeColorsDefinition { colors: CoreThemeColors; } /** * @deprecated * @deprecatedSince 0.25.0 * @category Theme * @private * @altRecommendation use ThemeColorsDefinition instead * @altRecommendationExample * import { ThemeColorsDefinition } from "@twilio/flex-ui-core"; * const colors: ThemeColorsDefinition = { colors: {} }; */ export interface ThemeDef extends ThemeColorsDefinition { } export { createTheme, Overrides };