in src/executable-code/index.js [218:226]
getTheme(targetNode) {
const theme = targetNode.getAttribute(ATTRIBUTES.THEME);
if (theme && theme !== THEMES.DARCULA && theme !== THEMES.IDEA) {
console.warn(`Custom theme '${theme}' requires custom css by developer, you might use default values for reduce size – ${THEMES.DARCULA} or ${THEMES.IDEA}.`);
}
return theme || THEMES.DEFAULT;
}