Customization

You can customize the appearance of editable controls using CSS custom properties. Add these to your custom SCSS/CSS file:

Element Controls

:root {
  /* Main accent color (handles, buttons, border) */
  --editable-accent-color: #ff6600;

  /* Color when edit mode is active */
  --editable-accent-active: #00cc00;

  /* Color of the rotation handle */
  --editable-rotate-color: #ff6600;

  /* Size of resize corner handles */
  --editable-handle-size: 12px;

  /* Border color around handles */
  --editable-handle-border-color: #000;

  /* Border width when hovering */
  --editable-border-width: 3px;

  /* Animation duration */
  --editable-transition: 0.3s;
}