From e144a75b482ff2e09cd96d67b81a9ce7d563fa79 Mon Sep 17 00:00:00 2001 From: zombieFox Date: Wed, 26 Dec 2018 15:03:21 -0700 Subject: [PATCH] [refactor] improve theme accent string --- js/theme.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/theme.js b/js/theme.js index c78f973a..d024aaa6 100644 --- a/js/theme.js +++ b/js/theme.js @@ -30,7 +30,7 @@ var theme = (function() { var render = function(input) { var html = helper.e("html"); - html.style.setProperty("--accent", accent.r + "," + accent.g + "," + accent.b); + html.style.setProperty("--accent", accent.r + ", " + accent.g + ", " + accent.b); }; var restore = function(object) {