Option to terminal colors

Terminal colors can be customized ad defined in configuration per theme
pull/137/head
alperozisik 2015-08-27 12:11:24 +03:00
rodzic a964d678fe
commit 6092fab83d
1 zmienionych plików z 8 dodań i 0 usunięć

Wyświetl plik

@ -64,6 +64,14 @@ define(function(require, exports, module) {
"dark" : ["#153649", "#FFFFFF", "#515D77", true],
"dark-gray" : ["#153649", "#FFFFFF", "#515D77", true]
};
(function() {
var themeName;
if (options.defaults) {
for (themeName in options.defaults) {
defaults[themeName] = options.defaults[themeName];
}
}
})();
// Import the CSS
ui.insertCss(require("text!./style.css"), options.staticPrefix, handle);