Skip to content

Commit 497588f

Browse files
committed
fixes orange warning color
Why: * fixes gistia#5 What: * Blessed doesn't appear to have an orange named color, so we use RGB
1 parent dee148b commit 497588f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/utils.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ const trunc = (text, length, ignoreColors=false) => {
9595
const levelColors = {
9696
debug: s => `{cyan-fg}${s}{/cyan-fg}`,
9797
info: s => `{#ffff94-fg}{bold}${s}{/bold}{/#ffff94-fg}`,
98-
warn: s => `{orange-fg}${s}{/orange-fg}`,
98+
warn: s => `{#ffa500-fg}${s}{/#ffa500-fg}`,
9999
error: s => `{red-fg}${s}{/red-fg}`,
100100
};
101101

0 commit comments

Comments
 (0)