@agenticmail/cli 0.8.14 → 0.8.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/dist/cli.js +7 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -207,8 +207,14 @@ var c = {
|
|
|
207
207
|
red: (s) => `\x1B[31m${s}\x1B[0m`,
|
|
208
208
|
yellow: (s) => `\x1B[33m${s}\x1B[0m`,
|
|
209
209
|
cyan: (s) => `\x1B[36m${s}\x1B[0m`,
|
|
210
|
+
blue: (s) => `\x1B[34m${s}\x1B[0m`,
|
|
211
|
+
magenta: (s) => `\x1B[35m${s}\x1B[0m`,
|
|
210
212
|
dim: (s) => `\x1B[90m${s}\x1B[0m`,
|
|
211
|
-
bold: (s) => `\x1B[1m${s}\x1B[0m
|
|
213
|
+
bold: (s) => `\x1B[1m${s}\x1B[0m`,
|
|
214
|
+
// Brand pink — xterm-256 hot-pink background (205) with white text (97).
|
|
215
|
+
// Mirrors the pinkBg helper in cli.ts; the shell uses it for the "🎀
|
|
216
|
+
// AgenticMail is running" welcome banner and any future brand marks.
|
|
217
|
+
pinkBg: (s) => `\x1B[48;5;205m\x1B[97m${s}\x1B[0m`
|
|
212
218
|
};
|
|
213
219
|
var dotColors = [
|
|
214
220
|
(s) => `\x1B[35m${s}\x1B[0m`,
|
package/package.json
CHANGED