Skip to content

Commit

Permalink
style: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
zdm committed Sep 11, 2024
1 parent 4b9ae0d commit 1a027b8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/text/ansi.js
Original file line number Diff line number Diff line change
Expand Up @@ -230,10 +230,10 @@ const ansi = new ANSI();
ansi.defineStyles( {
"hl": ansi.brightWhite,
"dim": ansi.gray,
"ok": ansi.bold.brightWhite.onColor( 0x6400 ),
"warn": ansi.color( 0x0 ).onColor( 0xcccc00 ),
"ok": ansi.bold.brightWhite.onColor( 0x64_00 ),
"warn": ansi.color( 0x0 ).onColor( 0xCC_CC_00 ),
"error": ansi.bold.brightWhite.onRed,
"dark": ansi.white.onColor( 0x333333 ),
"dark": ansi.white.onColor( 0x33_33_33 ),
} );

export default ansi;

0 comments on commit 1a027b8

Please sign in to comment.