phewsh 0.11.14 → 0.11.15
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/bin/phewsh.js +1 -1
- package/lib/ui.js +2 -2
- package/package.json +1 -1
package/bin/phewsh.js
CHANGED
|
@@ -7,7 +7,7 @@ const command = args[0];
|
|
|
7
7
|
const b = (s) => `\x1b[1m${s}\x1b[0m`; // bold
|
|
8
8
|
const d = (s) => `\x1b[2m${s}\x1b[0m`; // dim
|
|
9
9
|
const w = (s) => `\x1b[97m${s}\x1b[0m`; // bright white
|
|
10
|
-
const g = (s) => `\x1b[
|
|
10
|
+
const g = (s) => `\x1b[38;2;130;142;138m${s}\x1b[0m`; // slate (matches ui.js)
|
|
11
11
|
const cyan = (s) => `\x1b[36m${s}\x1b[0m`;
|
|
12
12
|
const green = (s) => `\x1b[32m${s}\x1b[0m`;
|
|
13
13
|
|
package/lib/ui.js
CHANGED
|
@@ -11,8 +11,8 @@ const rgbBg = (r, g, b) => (s) => `\x1b[48;2;${r};${g};${b}m${s}\x1b[0m`;
|
|
|
11
11
|
// Brand colors — relief, quiet, future
|
|
12
12
|
const teal = rgb(100, 215, 195); // cool calm — primary
|
|
13
13
|
const peach = rgb(255, 195, 145); // warm exhale — accent
|
|
14
|
-
const sage = rgb(
|
|
15
|
-
const slate = rgb(
|
|
14
|
+
const sage = rgb(175, 195, 185); // quiet — secondary text
|
|
15
|
+
const slate = rgb(130, 142, 138); // whisper — dim text
|
|
16
16
|
const cream = rgb(240, 235, 225); // clarity — bright text
|
|
17
17
|
const ember = rgb(220, 140, 90); // glow — warnings/energy
|
|
18
18
|
|