@barekey/cli 0.5.7 → 0.5.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/output/avatar.js +3 -3
- package/package.json +1 -1
- package/src/output/avatar.ts +3 -3
package/dist/output/avatar.js
CHANGED
|
@@ -2,9 +2,9 @@ import { Jimp } from "jimp";
|
|
|
2
2
|
import pc from "picocolors";
|
|
3
3
|
const DEFAULT_AVATAR_COLUMNS = 10;
|
|
4
4
|
const DEFAULT_AVATAR_ROWS = 5;
|
|
5
|
-
const EMAIL_HEX = "#
|
|
6
|
-
const BULLET_HEX = "#
|
|
7
|
-
const PLAN_HEX = "#
|
|
5
|
+
const EMAIL_HEX = "#AAAAAA";
|
|
6
|
+
const BULLET_HEX = "#555555";
|
|
7
|
+
const PLAN_HEX = "#FFAA00";
|
|
8
8
|
function supportsAnsiAvatar() {
|
|
9
9
|
if (!process.stdout.isTTY) {
|
|
10
10
|
return false;
|
package/package.json
CHANGED
package/src/output/avatar.ts
CHANGED
|
@@ -11,9 +11,9 @@ type Rgba = {
|
|
|
11
11
|
alpha: number;
|
|
12
12
|
};
|
|
13
13
|
|
|
14
|
-
const EMAIL_HEX = "#
|
|
15
|
-
const BULLET_HEX = "#
|
|
16
|
-
const PLAN_HEX = "#
|
|
14
|
+
const EMAIL_HEX = "#AAAAAA";
|
|
15
|
+
const BULLET_HEX = "#555555";
|
|
16
|
+
const PLAN_HEX = "#FFAA00";
|
|
17
17
|
|
|
18
18
|
function supportsAnsiAvatar(): boolean {
|
|
19
19
|
if (!process.stdout.isTTY) {
|