Skip to content

Commit 0685773

Browse files
André Sebastian-Bathtigercosmos
authored andcommitted
increase contrast of labels
1 parent d12b901 commit 0685773

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

index.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ class Logger {
258258
} else {
259259
const d = this.getDate();
260260
this.log(d + " ").joint()
261-
.bgColor('yellow').log('[WARN]').joint()
261+
.bgColor('yellow').color('black').log('[WARN]').joint()
262262
.log(" ").joint()
263263
.color('yellow').log(...args);
264264
}
@@ -274,7 +274,7 @@ class Logger {
274274
} else {
275275
const d = this.getDate();
276276
this.log(d + " ").joint()
277-
.bgColor('green').log('[INFO]').joint()
277+
.bgColor('green').color('black').log('[INFO]').joint()
278278
.log(" ").joint()
279279
.color('green').log(...args);
280280
}
@@ -290,7 +290,7 @@ class Logger {
290290
} else {
291291
const d = this.getDate();
292292
this.log(d + " ").joint()
293-
.bgColor('cyan').log("[DEBUG]").joint()
293+
.bgColor('cyan').color('black').log("[DEBUG]").joint()
294294
.log(' ').joint()
295295
.color('cyan')
296296
.log(...args);
@@ -307,7 +307,7 @@ class Logger {
307307
} else {
308308
const d = this.getDate();
309309
this.log(d + " ").joint()
310-
.bgColor('green').log("[SUCCESS]").joint()
310+
.bgColor('green').color('black').log("[SUCCESS]").joint()
311311
.log(' ').joint()
312312
.color('green')
313313
.log(...args);

0 commit comments

Comments
 (0)