[refactor] improve theme accent string

This commit is contained in:
zombieFox 2018-12-26 15:03:21 -07:00
parent 5d448ca15a
commit e144a75b48
1 changed files with 1 additions and 1 deletions

View File

@ -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) {