houl
Version:
Full-contained static site workflow
24 lines (17 loc) • 351 B
JavaScript
const GREEN = '\u001b[32m'
const YELLOW = '\u001b[33m'
const CYAN = '\u001b[36m'
const RESET = '\u001b[0m'
function green(str) {
return GREEN + str + RESET
}
function yellow(str) {
return YELLOW + str + RESET
}
function cyan(str) {
return CYAN + str + RESET
}
exports.green = green
exports.yellow = yellow
exports.cyan = cyan