selectTextTheme()

Opens the editor's text theme picker for the selected component, letting a Wix user choose a site theme combination of font and color. A theme token is a named reference to one of these site-wide values, such as 'Heading 1' for a font or a named theme color, rather than a literal CSS value. For background on connecting a component to a site's theme, see Connect an Editor React Component's Colors and Fonts to a Site Theme.

Syntax

Copy

Parameters

NameTypeDescription
targetHTMLElementElement in your panel that the picker popup opens relative to.
initialValue.fontstringInitial font value to show when the picker opens, as CSS font shorthand or a theme token.
initialValue.colorstringInitial color value to show when the picker opens, as a CSS color string or a theme token.

Returns

Promise<SelectedTextTheme>

PropertyTypeDescription
fontstringSelected font, as CSS font shorthand or a theme token.
colorstringSelected color, as a CSS color string or a theme token.
textDecorationLinestringSelected text decoration, such as 'none' or 'underline'.
letterSpacingstringSelected letter spacing, as a CSS length or 'normal'.

Example

Copy

See also

Last updated: 8 September 2026

Did this help?