Skip to content

Commit aa7fdf5

Browse files
committed
fix: change colors
1 parent b179905 commit aa7fdf5

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/index.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -135,9 +135,9 @@ function outputKeys({ mnemonic, passphrase }: { mnemonic: string, passphrase?: s
135135
const { bech32PrivateKey } = getBech32PrivateKey({ privateKey })
136136
const { bech32PublicKey } = getBech32PublicKey({ publicKey })
137137

138-
console.log(chalk.yellow('>'), 'mnemonic:', chalk.blue(mnemonic))
139-
console.log(chalk.yellow('>'), 'hex private key:', chalk.blue(privateKey))
140-
console.log(chalk.yellow('>'), 'hex public key:', chalk.blue(publicKey))
141-
console.log(chalk.yellow('>'), 'bech32 private key:', chalk.blue(bech32PrivateKey))
142-
console.log(chalk.yellow('>'), 'bech32 public key:', chalk.blue(bech32PublicKey))
138+
console.log(chalk.gray('mnemonic:'), chalk.bgCyan(mnemonic))
139+
console.log(chalk.gray('hex private key:'), chalk.cyan(privateKey))
140+
console.log(chalk.gray('hex public key:'), chalk.cyan(publicKey))
141+
console.log(chalk.gray('bech32 private key:'), chalk.cyan(bech32PrivateKey))
142+
console.log(chalk.gray('bech32 public key:'), chalk.cyan(bech32PublicKey))
143143
}

0 commit comments

Comments
 (0)