Custom Theme
Appmixer SDK allows you to completely change the look&feel of all the UI widgets it provides (Designer, FlowManager, Insights, ...).
Setting a Custom Theme
var appmixer = new Appmixer({ baseUrl: BASE_URL });
appmixer.set('theme', THEME);Structure of the Theme Object
appmixer.set('theme', {
$flowManager: {
backgroundColor: 'lightgray',
color: 'blue',
$header: {
$btnCreateFlow: {
'@hover': {
backgroundColor: 'black',
color: 'white'
}
}
},
$thumbnails: {
spacing: '15px',
$flow: {
color: 'white'
}
}
}
});

Complete Theme Object




Last updated
Was this helpful?
