Skip to content

Commit f6c5ba6

Browse files
committed
Improve colors on Windows terminal
1 parent 87d9422 commit f6c5ba6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/error/print.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ import { circleFilled, info, warning, cross } from 'figures'
44
export const printError = function ({
55
opts: {
66
chalk,
7-
chalk: { dim },
7+
chalk: { gray },
88
},
99
level,
1010
name,
1111
message,
1212
stack,
1313
}) {
1414
const header = getHeader({ level, name, message, chalk })
15-
const stackA = dim(stack)
15+
const stackA = gray(stack)
1616
return `${header}\n${stackA}`
1717
}
1818

0 commit comments

Comments
 (0)