UNPKG
atam
Version:
latest (2.0.0)
2.0.0
1.1.0
1.0.0
atcoder on terminal
github.com/XMLPro/atam
XMLPro/atam
atam
/
src
/
message_color.js
14 lines
(11 loc)
•
242 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
const
chalk = require(
'chalk'
);
const
error
= chalk.bold.red;
const
warning = chalk.keyword(
'orange'
);
const
success = chalk.keyword(
'green'
);
const
info = chalk.keyword(
'blue'
); module.exports = {
error
, warning, success, info, };