Skip to content

Commit

Permalink
fix(cli/migrate): gray should be gray, not blue (remix-run#2787)
Browse files Browse the repository at this point in the history
pcattori authored and chaance committed Apr 13, 2022
1 parent a4af266 commit c5d15ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/remix-dev/colors.ts
Original file line number Diff line number Diff line change
@@ -19,5 +19,5 @@ export const logoYellow = useColor ? chalk.yellowBright : K;
export const logoPink = useColor ? chalk.magentaBright : K;
export const logoRed = useColor ? chalk.redBright : K;

export const gray = useColor ? chalk.blue : K;
export const gray = useColor ? chalk.gray : K;
export const blue = useColor ? chalk.blue : K;

0 comments on commit c5d15ab

Please sign in to comment.