Designer API
Control the Webflow Designer
webflow.removeStyle(Style)
Remove an unused style from a site. In order to remove the style, it must not be used by any elements throughout the site.
1webflow.removeStyle(style: Style): Promise<void>
Style
Promise<void>
A Promise that resolves to undefined.
undefined
1// Retrieve the style by name2const retrievedStyle = await webflow.getStyleByName(styleName)34if (retrievedStyle) {56 // Remove Style7 await webflow.removeStyle(retrievedStyle)8 console.log(`Style: ${styleName} was removed`)910} else {11 console.log(`Style ${styleName} not found.`)12}
Try this example