The Placid Editor SDK allows you to customize the appearance of its components through a simple theming system. You can easily change the primary and secondary colors to match your branding or preferred aesthetic.
<!DOCTYPE html>
<html lang="en">
<head>
<script type="text/javascript">
// Configuring the EditorSDK theming options
window.EditorSDKConfig = {
theme: {
primary_color: '#FF6827', // Set your desired primary color here
secondary_color: '#FFE6F5' // Set your desired secondary color here
}
}
</script>
</head>
<body>
<!-- Your content here -->
</body>
</html>