nightTab/js/theme.js

20 lines
344 B
JavaScript

var theme = (function() {
var render = function() {
var html = helper.e("html");
var color = state.get().layout.theme;
html.style.setProperty("--accent", color.r + ", " + color.g + ", " + color.b);
};
var init = function() {
render();
};
// exposed methods
return {
init: init,
render: render
};
})();