@duckmind/dm-darwin-x64 0.34.8 → 0.34.9
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/dm
CHANGED
|
Binary file
|
|
@@ -217,12 +217,14 @@ const iconMorphing: AnimationFn = (f) => {
|
|
|
217
217
|
|
|
218
218
|
// ─── 16 Brainstorm ───────────────────────────────────────────────
|
|
219
219
|
const weatherPhases = [
|
|
220
|
-
|
|
221
|
-
{ icon: "\
|
|
222
|
-
{ icon: "\
|
|
223
|
-
{ icon: "\
|
|
224
|
-
{ icon: "\
|
|
225
|
-
{ icon: "\
|
|
220
|
+
|
|
221
|
+
{ icon: "\ue30d", label: "on the pond", r: 255, g: 220, b: 80 },
|
|
222
|
+
{ icon: "\ue302", label: "following ripples", r: 180, g: 180, b: 220 },
|
|
223
|
+
{ icon: "\ue318", label: "ducking deeper", r: 120, g: 160, b: 255 },
|
|
224
|
+
{ icon: "\ue31d", label: "found something!", r: 255, g: 255, b: 120 },
|
|
225
|
+
{ icon: "\ue30b", label: "bringing it back", r: 255, g: 220, b: 100 },
|
|
226
|
+
{ icon: "\ue302", label: "making sense of it", r: 180, g: 200, b: 220 }
|
|
227
|
+
|
|
226
228
|
];
|
|
227
229
|
const brainstorm: AnimationFn = (f) => {
|
|
228
230
|
const pd = 35, pos = f % (weatherPhases.length * pd), pi = Math.floor(pos / pd), p = weatherPhases[pi];
|
|
@@ -310,8 +312,26 @@ const shimmerText: AnimationFn = (f, _w, phase) => {
|
|
|
310
312
|
|
|
311
313
|
// ─── 24 Vibe Typewriter ──────────────────────────────────────────
|
|
312
314
|
const vibeMessages = [
|
|
313
|
-
"
|
|
314
|
-
"
|
|
315
|
+
"Ducking beneath the surface...",
|
|
316
|
+
"Paddling through possibilities...",
|
|
317
|
+
"Following the breadcrumbs...",
|
|
318
|
+
"Reading the ripples...",
|
|
319
|
+
"Listening to distant echoes...",
|
|
320
|
+
"Tracing hidden currents...",
|
|
321
|
+
"Charting calmer waters...",
|
|
322
|
+
"Gathering scattered clues...",
|
|
323
|
+
"Connecting distant islands...",
|
|
324
|
+
"Finding patterns beneath the waves...",
|
|
325
|
+
"Exploring what lies downstream...",
|
|
326
|
+
"Searching beyond the horizon...",
|
|
327
|
+
"Turning ripples into waves...",
|
|
328
|
+
"Following a trail of clues...",
|
|
329
|
+
"Piecing together the shoreline...",
|
|
330
|
+
"Making sense of the pond...",
|
|
331
|
+
"Fishing for insights...",
|
|
332
|
+
"Surfacing with answers...",
|
|
333
|
+
"Polishing the final thought...",
|
|
334
|
+
"Ready when you are..."
|
|
315
335
|
];
|
|
316
336
|
const cursorChars = ["✦", "✧", "⚡", "★", "·"];
|
|
317
337
|
const cursorColors = [[255, 220, 100], [100, 200, 255], [255, 100, 200], [200, 255, 100]];
|