From fcc497e64b8fdf71226f34c82d0a908ef9a1bfad Mon Sep 17 00:00:00 2001 From: antelle Date: Sat, 6 May 2017 21:04:40 +0200 Subject: [PATCH] fix themes --- docs/create.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;