diff --git a/docs/create.html b/docs/create.html index 82a8384..6ba963a 100644 --- a/docs/create.html +++ b/docs/create.html @@ -277,7 +277,7 @@ module.exports.uninstall = function() { } let css = `.th-${manifest.theme.name} {\n`; for (const el of document.querySelectorAll('input[type=color]')) { - css += el.id.replace('color-', ' --') + 'color: ' + el.value + '\n'; + css += el.id.replace('color-', ' --') + '-color: ' + el.value + '\n'; } css += '}'; return css;