Theming
Customize the builder UI using primaryColor and CSS variables.
You can customize the builder primary theme color using primaryColor.
Primary color
<EmailBuilder token="..." primaryColor="#E11D48" />This updates the CSS variable:
--color-builder-primary: #E11D48;Tip: use your brand token
const BRAND_PRIMARY = "#2563EB";
<EmailBuilder token="..." primaryColor={BRAND_PRIMARY} />