Skip to content

Commit

Permalink
Tuned colors for boolean and null
Browse files Browse the repository at this point in the history
  • Loading branch information
exdis committed Jul 25, 2019
1 parent bed027c commit 6f0ca2c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions utils/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ const TOKEN_COLORS = {
[TOKENS.COMMA]: chalk.gray,
[TOKENS.STRING]: chalk.green,
[TOKENS.NUMBER]: chalk.blue,
[TOKENS.TRUE]: chalk.cyan,
[TOKENS.FALSE]: chalk.cyan,
[TOKENS.NULL]: chalk.red
[TOKENS.TRUE]: chalk.blue,
[TOKENS.FALSE]: chalk.blue,
[TOKENS.NULL]: chalk.bold
};

const PUNCTUATOR_TOKENS_MAP = {
Expand Down

0 comments on commit 6f0ca2c

Please sign in to comment.