sn-sms
Version:
A simple CLI tool for work with sms in standart-n automation
23 lines (21 loc) • 460 B
JavaScript
// Generated by CoffeeScript 1.6.2
exports.init = function() {
var colors, setColorTheme;
colors = require('colors');
setColorTheme = function(colors) {
return colors.setTheme({
silly: 'rainbow',
input: 'grey',
verbose: 'cyan',
prompt: 'grey',
info: 'green',
data: 'grey',
help: 'cyan',
warn: 'yellow',
debug: 'blue',
error: 'red'
});
};
setColorTheme(colors);
return colors;
};