diff --git a/src/preprocessors/genericTheme.js b/src/preprocessors/genericTheme.js index db19a27..3c44600 100644 --- a/src/preprocessors/genericTheme.js +++ b/src/preprocessors/genericTheme.js @@ -121,7 +121,6 @@ export default (manifest, content, repo) => { oninput: (val) => { ${x[2] === 'color' && x[1][0] !== '#' ? `val = parseInt(val.substring(1, 3), 16).toString() + ', ' + parseInt(val.substring(3, 5), 16).toString() + ', ' + parseInt(val.substring(5, 7), 16).toString()` : ''} - console.log(val); document.body.style.setProperty('${x[0]}', val); },