generated from Tolga1452/discord.js-bot-template
-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathlogchu.config.js
24 lines (22 loc) · 872 Bytes
/
logchu.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
const { ColorPreset, fromChalk } = require('@tolga1452/logchu');
const chalk = require('chalk');
const config = {
customColorPresets: {
info: fromChalk(chalk.cyan(' ')),
success: fromChalk(chalk.green(' ')),
warning: fromChalk(chalk.yellow(' ')),
error: fromChalk(chalk.red(' ')),
debug: fromChalk(chalk.dim.magenta(' ')),
infoItem: fromChalk(chalk.cyanBright(' ')),
successItem: fromChalk(chalk.greenBright(' ')),
infoBackground: fromChalk(chalk.bgBlue(' ')),
debugBackground: fromChalk(chalk.dim.bgMagenta(' ')),
debugItem: fromChalk(chalk.dim.magentaBright(' ')),
successBackground: fromChalk(chalk.bgGreen(' ')),
errorItem: fromChalk(chalk.redBright(' ')),
errorBackground: fromChalk(chalk.bgRed(' ')),
warningItem: fromChalk(chalk.yellowBright(' ')),
warningBackground: fromChalk(chalk.bgYellow(' ')),
},
};
module.exports = config;