ThemeColor
Creates a theme color.
Syntax
expression.ThemeColor(name);
expression - A variable that represents a Api class.
Parameters
| Name | Required/Optional | Data type | Default | Description |
|---|---|---|---|---|
| name | Optional | SchemeColorId | "tx1" | The theme color name. If the provided name is not supported, the 'tx1' color will be used. |
Returns
Example
This example shows how to create a theme color and use it as a shape fill.
- Code
- Result
const doc = Api.GetDocument();
const page = doc.GetPage(0);
const color = Api.ThemeColor('accent6');
const fill = Api.CreateSolidFill(color);
const stroke = Api.CreateStroke(36000, Api.CreateSolidFill(Api.RGB(0, 0, 0)));
const shape = Api.CreateShape("rect", 150 * 36000, 65 * 36000, fill, stroke);
shape.SetPosition(608400, 1267200);
page.AddObject(shape);