Skip to content

Commit 2214631

Browse files
committed
🎨 Change comparing color to magenta for better readability
1 parent e3bb5cf commit 2214631

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ inquirer.prompt(questions).then(answers => {
5050
chalk.yellow(`Variables that's different from ${mainEnvPath} and ${comparingEnvPath}:`),
5151
differentEnvironmentVariables.reduce((accumulator, currentValue) => {
5252
const main = chalk.green(`${currentValue.main} (${mainEnvPath})`);
53-
const comparing = chalk.blue(`${currentValue.comparing} (${comparingEnvPath})`);
53+
const comparing = chalk.magenta(`${currentValue.comparing} (${comparingEnvPath})`);
5454
return `${accumulator}\n${currentValue.key}\n${main}\n${comparing}\n`
5555
}, ''),
5656
);

0 commit comments

Comments
 (0)