Builder Settings
Builder Settings can be used to configure the template builder. This is optional.
Here is an example of how to define Builder settings in your template:
javascript
import { defineBuilderSettings } from "@enpage/sdk/builder-settings";
defineBuilderSettings({
// Customize the outline color of the editor
// when an element is selected/hovered
editorOutlineColor: "#FF9900",
});
Available settings
editorOutlineColor
The outline color of the editor when an element is selected/hovered.
This can be useful if the default purple color does not fit well with your template. You can use any valid CSS color value, such as hex, rgb, or color names.