Skip to main content

ThemeColor

Creates a theme color.

Syntax

expression.ThemeColor(name);

expression - A variable that represents a Api class.

Parameters

NameRequired/OptionalData typeDefaultDescription
nameOptionalSchemeColorId"tx1"The theme color name. If the provided name is not supported, the 'tx1' color will be used.

Returns

ApiColor

Example

This example shows how to create a theme-color and use it as a font color.

const doc = Api.GetDocument();
const color = Api.ThemeColor('accent6');
const paragraph = doc.GetElement(0);
paragraph.AddText('This text is in theme color.');
paragraph.SetColor(color);