@markusylisiurunen/tau 0.2.84 → 0.2.86

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.
Files changed (47) hide show
  1. package/README.md +3 -3
  2. package/dist/core/auth/providers/openai_codex.js +16 -2
  3. package/dist/core/auth/providers/openai_codex.js.map +1 -1
  4. package/dist/core/config/builtin_themes.js +242 -180
  5. package/dist/core/config/builtin_themes.js.map +1 -1
  6. package/dist/core/diff_review/index.js.map +1 -1
  7. package/dist/core/diff_review/protocol.js +12 -2
  8. package/dist/core/diff_review/protocol.js.map +1 -1
  9. package/dist/core/diff_review/review_thread.js +94 -4
  10. package/dist/core/diff_review/review_thread.js.map +1 -1
  11. package/dist/core/diff_review/session.js +206 -66
  12. package/dist/core/diff_review/session.js.map +1 -1
  13. package/dist/core/runtime/conversation_turn_runtime.js +3 -2
  14. package/dist/core/runtime/conversation_turn_runtime.js.map +1 -1
  15. package/dist/core/static/prompts/diff-review-wrapper.md +2 -1
  16. package/dist/core/utils/format.js +9 -0
  17. package/dist/core/utils/format.js.map +1 -1
  18. package/dist/core/version.js +1 -1
  19. package/dist/diff_tool/app/dist/assets/{index-C-1keqv7.js → index-CIHlC9Fu.js} +43 -43
  20. package/dist/diff_tool/app/dist/assets/{index-Bd9JHhzU.css → index-CuIFfjc2.css} +1 -1
  21. package/dist/diff_tool/app/dist/index.html +2 -2
  22. package/dist/diff_tool/http_server.js +42 -22
  23. package/dist/diff_tool/http_server.js.map +1 -1
  24. package/dist/diff_tool/protocol_client.js +26 -3
  25. package/dist/diff_tool/protocol_client.js.map +1 -1
  26. package/dist/diff_tool/review_prompts.js +63 -0
  27. package/dist/diff_tool/review_prompts.js.map +1 -0
  28. package/dist/diff_tool/review_state.js +10 -1
  29. package/dist/diff_tool/review_state.js.map +1 -1
  30. package/dist/tui/chat_controller/diff_review_service.js +20 -11
  31. package/dist/tui/chat_controller/diff_review_service.js.map +1 -1
  32. package/dist/tui/chat_controller.js +22 -10
  33. package/dist/tui/chat_controller.js.map +1 -1
  34. package/dist/tui/chat_view.js +4 -0
  35. package/dist/tui/chat_view.js.map +1 -1
  36. package/dist/tui/ui/agent_activity_format.js +82 -0
  37. package/dist/tui/ui/agent_activity_format.js.map +1 -0
  38. package/dist/tui/ui/chat_message_model.js +4 -3
  39. package/dist/tui/ui/chat_message_model.js.map +1 -1
  40. package/dist/tui/ui/diff_review_message.js +147 -62
  41. package/dist/tui/ui/diff_review_message.js.map +1 -1
  42. package/dist/tui/ui/subagent_panel.js +8 -61
  43. package/dist/tui/ui/subagent_panel.js.map +1 -1
  44. package/dist/tui/ui/theme/palette.js +2 -0
  45. package/dist/tui/ui/theme/palette.js.map +1 -1
  46. package/dist/tui/ui/theme/theme.js.map +1 -1
  47. package/package.json +1 -1
@@ -32,6 +32,8 @@ export const PALETTE_TOKEN_NAMES = [
32
32
  "userMemoryText",
33
33
  "userReviewSurface",
34
34
  "userReviewText",
35
+ "userReviewTextMuted",
36
+ "userReviewTextDim",
35
37
  "riskReadOnlyText",
36
38
  "riskReadWriteText",
37
39
  ];
@@ -40,10 +42,10 @@ export const builtinThemes = [
40
42
  id: "crimson",
41
43
  tokens: {
42
44
  brandAccent: "#d88aa2",
43
- textMuted: "#9f9598",
44
- textDim: "#7f787a",
45
+ textMuted: "#928a8c",
46
+ textDim: "#666263",
45
47
  linkText: "#d88aa2",
46
- thinkingText: "#7f787a",
48
+ thinkingText: "#666263",
47
49
  codeInlineText: "#dc8b86",
48
50
  codeBlockText: "#dc8b86",
49
51
  editorBorderNone: "#a37885",
@@ -61,7 +63,7 @@ export const builtinThemes = [
61
63
  actionRunning: "#eeab98",
62
64
  actionSuccess: "#c2c282",
63
65
  actionError: "#eea8af",
64
- actionOutput: "#7f787a",
66
+ actionOutput: "#666263",
65
67
  diffAdd: "#979751",
66
68
  diffRemove: "#c37a83",
67
69
  toastSuccess: "#bebd68",
@@ -72,16 +74,18 @@ export const builtinThemes = [
72
74
  userMemoryText: "#c0c6fc",
73
75
  userReviewSurface: "#181c15",
74
76
  userReviewText: "#bad0aa",
75
- riskReadOnlyText: "#9f9598",
76
- riskReadWriteText: "#9f9598",
77
+ userReviewTextMuted: "#9da498",
78
+ userReviewTextDim: "#7b7e79",
79
+ riskReadOnlyText: "#928a8c",
80
+ riskReadWriteText: "#928a8c",
77
81
  },
78
82
  variants: {
79
83
  light: {
80
84
  brandAccent: "#ad0059",
81
- textMuted: "#756368",
82
- textDim: "#8f8286",
85
+ textMuted: "#7f7074",
86
+ textDim: "#a49c9e",
83
87
  linkText: "#ad0059",
84
- thinkingText: "#8f8286",
88
+ thinkingText: "#a49c9e",
85
89
  codeInlineText: "#b3001c",
86
90
  codeBlockText: "#b3001c",
87
91
  editorBorderNone: "#af5c78",
@@ -99,7 +103,7 @@ export const builtinThemes = [
99
103
  actionRunning: "#a72900",
100
104
  actionSuccess: "#646100",
101
105
  actionError: "#a62144",
102
- actionOutput: "#8f8286",
106
+ actionOutput: "#a49c9e",
103
107
  diffAdd: "#706d00",
104
108
  diffRemove: "#c01249",
105
109
  toastSuccess: "#646100",
@@ -110,8 +114,10 @@ export const builtinThemes = [
110
114
  userMemoryText: "#220d70",
111
115
  userReviewSurface: "#edefeb",
112
116
  userReviewText: "#183400",
113
- riskReadOnlyText: "#756368",
114
- riskReadWriteText: "#756368",
117
+ userReviewTextMuted: "#424f38",
118
+ userReviewTextDim: "#686e64",
119
+ riskReadOnlyText: "#7f7074",
120
+ riskReadWriteText: "#7f7074",
115
121
  },
116
122
  },
117
123
  sourcePath: "builtin:themes/crimson.json",
@@ -121,10 +127,10 @@ export const builtinThemes = [
121
127
  id: "ember",
122
128
  tokens: {
123
129
  brandAccent: "#dc8b86",
124
- textMuted: "#a09695",
125
- textDim: "#7f7978",
130
+ textMuted: "#928a89",
131
+ textDim: "#666262",
126
132
  linkText: "#dc8b86",
127
- thinkingText: "#7f7978",
133
+ thinkingText: "#666262",
128
134
  codeInlineText: "#d8916c",
129
135
  codeBlockText: "#d8916c",
130
136
  editorBorderNone: "#a67976",
@@ -142,7 +148,7 @@ export const builtinThemes = [
142
148
  actionRunning: "#eeab98",
143
149
  actionSuccess: "#c2c282",
144
150
  actionError: "#eea8af",
145
- actionOutput: "#7f7978",
151
+ actionOutput: "#666262",
146
152
  diffAdd: "#979751",
147
153
  diffRemove: "#c37a83",
148
154
  toastSuccess: "#bebd68",
@@ -153,16 +159,18 @@ export const builtinThemes = [
153
159
  userMemoryText: "#c0c6fc",
154
160
  userReviewSurface: "#181c15",
155
161
  userReviewText: "#bad0aa",
156
- riskReadOnlyText: "#a09695",
157
- riskReadWriteText: "#a09695",
162
+ userReviewTextMuted: "#9da498",
163
+ userReviewTextDim: "#7b7e79",
164
+ riskReadOnlyText: "#928a89",
165
+ riskReadWriteText: "#928a89",
158
166
  },
159
167
  variants: {
160
168
  light: {
161
169
  brandAccent: "#b3001c",
162
- textMuted: "#766462",
163
- textDim: "#908381",
170
+ textMuted: "#80706f",
171
+ textDim: "#a59c9b",
164
172
  linkText: "#b3001c",
165
- thinkingText: "#908381",
173
+ thinkingText: "#a59c9b",
166
174
  codeInlineText: "#974000",
167
175
  codeBlockText: "#974000",
168
176
  editorBorderNone: "#b35d59",
@@ -180,7 +188,7 @@ export const builtinThemes = [
180
188
  actionRunning: "#a72900",
181
189
  actionSuccess: "#646100",
182
190
  actionError: "#a62144",
183
- actionOutput: "#908381",
191
+ actionOutput: "#a59c9b",
184
192
  diffAdd: "#706d00",
185
193
  diffRemove: "#c01249",
186
194
  toastSuccess: "#646100",
@@ -191,8 +199,10 @@ export const builtinThemes = [
191
199
  userMemoryText: "#220d70",
192
200
  userReviewSurface: "#edefeb",
193
201
  userReviewText: "#183400",
194
- riskReadOnlyText: "#766462",
195
- riskReadWriteText: "#766462",
202
+ userReviewTextMuted: "#424f38",
203
+ userReviewTextDim: "#686e64",
204
+ riskReadOnlyText: "#80706f",
205
+ riskReadWriteText: "#80706f",
196
206
  },
197
207
  },
198
208
  sourcePath: "builtin:themes/ember.json",
@@ -202,10 +212,10 @@ export const builtinThemes = [
202
212
  id: "gold",
203
213
  tokens: {
204
214
  brandAccent: "#d8916c",
205
- textMuted: "#9f9692",
206
- textDim: "#7f7976",
215
+ textMuted: "#928a87",
216
+ textDim: "#666261",
207
217
  linkText: "#d8916c",
208
- thinkingText: "#7f7976",
218
+ thinkingText: "#666261",
209
219
  codeInlineText: "#cb9a5b",
210
220
  codeBlockText: "#cb9a5b",
211
221
  editorBorderNone: "#a37c69",
@@ -223,7 +233,7 @@ export const builtinThemes = [
223
233
  actionRunning: "#eeab98",
224
234
  actionSuccess: "#c2c282",
225
235
  actionError: "#eea8af",
226
- actionOutput: "#7f7976",
236
+ actionOutput: "#666261",
227
237
  diffAdd: "#979751",
228
238
  diffRemove: "#c37a83",
229
239
  toastSuccess: "#bebd68",
@@ -234,16 +244,18 @@ export const builtinThemes = [
234
244
  userMemoryText: "#c0c6fc",
235
245
  userReviewSurface: "#181c15",
236
246
  userReviewText: "#bad0aa",
237
- riskReadOnlyText: "#9f9692",
238
- riskReadWriteText: "#9f9692",
247
+ userReviewTextMuted: "#9da498",
248
+ userReviewTextDim: "#7b7e79",
249
+ riskReadOnlyText: "#928a87",
250
+ riskReadWriteText: "#928a87",
239
251
  },
240
252
  variants: {
241
253
  light: {
242
254
  brandAccent: "#974000",
243
- textMuted: "#75655d",
244
- textDim: "#8f837e",
255
+ textMuted: "#7f716a",
256
+ textDim: "#a49d99",
245
257
  linkText: "#974000",
246
- thinkingText: "#8f837e",
258
+ thinkingText: "#a49d99",
247
259
  codeInlineText: "#835100",
248
260
  codeBlockText: "#835100",
249
261
  editorBorderNone: "#af643b",
@@ -261,7 +273,7 @@ export const builtinThemes = [
261
273
  actionRunning: "#a72900",
262
274
  actionSuccess: "#646100",
263
275
  actionError: "#a62144",
264
- actionOutput: "#8f837e",
276
+ actionOutput: "#a49d99",
265
277
  diffAdd: "#706d00",
266
278
  diffRemove: "#c01249",
267
279
  toastSuccess: "#646100",
@@ -272,8 +284,10 @@ export const builtinThemes = [
272
284
  userMemoryText: "#220d70",
273
285
  userReviewSurface: "#edefeb",
274
286
  userReviewText: "#183400",
275
- riskReadOnlyText: "#75655d",
276
- riskReadWriteText: "#75655d",
287
+ userReviewTextMuted: "#424f38",
288
+ userReviewTextDim: "#686e64",
289
+ riskReadOnlyText: "#7f716a",
290
+ riskReadWriteText: "#7f716a",
277
291
  },
278
292
  },
279
293
  sourcePath: "builtin:themes/gold.json",
@@ -283,10 +297,10 @@ export const builtinThemes = [
283
297
  id: "lime",
284
298
  tokens: {
285
299
  brandAccent: "#cb9a5b",
286
- textMuted: "#9d9790",
287
- textDim: "#7d7a75",
300
+ textMuted: "#908b86",
301
+ textDim: "#656360",
288
302
  linkText: "#cb9a5b",
289
- thinkingText: "#7d7a75",
303
+ thinkingText: "#656360",
290
304
  codeInlineText: "#b7a458",
291
305
  codeBlockText: "#b7a458",
292
306
  editorBorderNone: "#9c8161",
@@ -304,7 +318,7 @@ export const builtinThemes = [
304
318
  actionRunning: "#eeab98",
305
319
  actionSuccess: "#c2c282",
306
320
  actionError: "#eea8af",
307
- actionOutput: "#7d7a75",
321
+ actionOutput: "#656360",
308
322
  diffAdd: "#979751",
309
323
  diffRemove: "#c37a83",
310
324
  toastSuccess: "#bebd68",
@@ -315,16 +329,18 @@ export const builtinThemes = [
315
329
  userMemoryText: "#c0c6fc",
316
330
  userReviewSurface: "#181c15",
317
331
  userReviewText: "#bad0aa",
318
- riskReadOnlyText: "#9d9790",
319
- riskReadWriteText: "#9d9790",
332
+ userReviewTextMuted: "#9da498",
333
+ userReviewTextDim: "#7b7e79",
334
+ riskReadOnlyText: "#908b86",
335
+ riskReadWriteText: "#908b86",
320
336
  },
321
337
  variants: {
322
338
  light: {
323
339
  brandAccent: "#835100",
324
- textMuted: "#72675a",
325
- textDim: "#8c857c",
340
+ textMuted: "#7c7368",
341
+ textDim: "#a29d98",
326
342
  linkText: "#835100",
327
- thinkingText: "#8c857c",
343
+ thinkingText: "#a29d98",
328
344
  codeInlineText: "#705c00",
329
345
  codeBlockText: "#705c00",
330
346
  editorBorderNone: "#a36e1f",
@@ -342,7 +358,7 @@ export const builtinThemes = [
342
358
  actionRunning: "#a72900",
343
359
  actionSuccess: "#646100",
344
360
  actionError: "#a62144",
345
- actionOutput: "#8c857c",
361
+ actionOutput: "#a29d98",
346
362
  diffAdd: "#706d00",
347
363
  diffRemove: "#c01249",
348
364
  toastSuccess: "#646100",
@@ -353,8 +369,10 @@ export const builtinThemes = [
353
369
  userMemoryText: "#220d70",
354
370
  userReviewSurface: "#edefeb",
355
371
  userReviewText: "#183400",
356
- riskReadOnlyText: "#72675a",
357
- riskReadWriteText: "#72675a",
372
+ userReviewTextMuted: "#424f38",
373
+ userReviewTextDim: "#686e64",
374
+ riskReadOnlyText: "#7c7368",
375
+ riskReadWriteText: "#7c7368",
358
376
  },
359
377
  },
360
378
  sourcePath: "builtin:themes/lime.json",
@@ -364,10 +382,10 @@ export const builtinThemes = [
364
382
  id: "grass",
365
383
  tokens: {
366
384
  brandAccent: "#b7a458",
367
- textMuted: "#9a9890",
368
- textDim: "#7c7a75",
385
+ textMuted: "#8e8c85",
386
+ textDim: "#646360",
369
387
  linkText: "#b7a458",
370
- thinkingText: "#7c7a75",
388
+ thinkingText: "#646360",
371
389
  codeInlineText: "#9cae65",
372
390
  codeBlockText: "#9cae65",
373
391
  editorBorderNone: "#90865f",
@@ -385,7 +403,7 @@ export const builtinThemes = [
385
403
  actionRunning: "#eeab98",
386
404
  actionSuccess: "#c2c282",
387
405
  actionError: "#eea8af",
388
- actionOutput: "#7c7a75",
406
+ actionOutput: "#646360",
389
407
  diffAdd: "#979751",
390
408
  diffRemove: "#c37a83",
391
409
  toastSuccess: "#bebd68",
@@ -396,16 +414,18 @@ export const builtinThemes = [
396
414
  userMemoryText: "#c0c6fc",
397
415
  userReviewSurface: "#181c15",
398
416
  userReviewText: "#bad0aa",
399
- riskReadOnlyText: "#9a9890",
400
- riskReadWriteText: "#9a9890",
417
+ userReviewTextMuted: "#9da498",
418
+ userReviewTextDim: "#7b7e79",
419
+ riskReadOnlyText: "#8e8c85",
420
+ riskReadWriteText: "#8e8c85",
401
421
  },
402
422
  variants: {
403
423
  light: {
404
424
  brandAccent: "#705c00",
405
- textMuted: "#6d695a",
406
- textDim: "#89867c",
425
+ textMuted: "#787568",
426
+ textDim: "#a09e98",
407
427
  linkText: "#705c00",
408
- thinkingText: "#89867c",
428
+ thinkingText: "#a09e98",
409
429
  codeInlineText: "#556700",
410
430
  codeBlockText: "#556700",
411
431
  editorBorderNone: "#8e7917",
@@ -423,7 +443,7 @@ export const builtinThemes = [
423
443
  actionRunning: "#a72900",
424
444
  actionSuccess: "#646100",
425
445
  actionError: "#a62144",
426
- actionOutput: "#89867c",
446
+ actionOutput: "#a09e98",
427
447
  diffAdd: "#706d00",
428
448
  diffRemove: "#c01249",
429
449
  toastSuccess: "#646100",
@@ -434,8 +454,10 @@ export const builtinThemes = [
434
454
  userMemoryText: "#220d70",
435
455
  userReviewSurface: "#edefeb",
436
456
  userReviewText: "#183400",
437
- riskReadOnlyText: "#6d695a",
438
- riskReadWriteText: "#6d695a",
457
+ userReviewTextMuted: "#424f38",
458
+ userReviewTextDim: "#686e64",
459
+ riskReadOnlyText: "#787568",
460
+ riskReadWriteText: "#787568",
439
461
  },
440
462
  },
441
463
  sourcePath: "builtin:themes/grass.json",
@@ -445,10 +467,10 @@ export const builtinThemes = [
445
467
  id: "emerald",
446
468
  tokens: {
447
469
  brandAccent: "#9cae65",
448
- textMuted: "#979991",
449
- textDim: "#797b76",
470
+ textMuted: "#8b8d86",
471
+ textDim: "#636460",
450
472
  linkText: "#9cae65",
451
- thinkingText: "#797b76",
473
+ thinkingText: "#636460",
452
474
  codeInlineText: "#7db57c",
453
475
  codeBlockText: "#7db57c",
454
476
  editorBorderNone: "#828c65",
@@ -466,7 +488,7 @@ export const builtinThemes = [
466
488
  actionRunning: "#eeab98",
467
489
  actionSuccess: "#c2c282",
468
490
  actionError: "#eea8af",
469
- actionOutput: "#797b76",
491
+ actionOutput: "#636460",
470
492
  diffAdd: "#979751",
471
493
  diffRemove: "#c37a83",
472
494
  toastSuccess: "#bebd68",
@@ -477,16 +499,18 @@ export const builtinThemes = [
477
499
  userMemoryText: "#c0c6fc",
478
500
  userReviewSurface: "#181c15",
479
501
  userReviewText: "#bad0aa",
480
- riskReadOnlyText: "#979991",
481
- riskReadWriteText: "#979991",
502
+ userReviewTextMuted: "#9da498",
503
+ userReviewTextDim: "#7b7e79",
504
+ riskReadOnlyText: "#8b8d86",
505
+ riskReadWriteText: "#8b8d86",
482
506
  },
483
507
  variants: {
484
508
  light: {
485
509
  brandAccent: "#556700",
486
- textMuted: "#676b5c",
487
- textDim: "#85887d",
510
+ textMuted: "#737669",
511
+ textDim: "#9d9f99",
488
512
  linkText: "#556700",
489
- thinkingText: "#85887d",
513
+ thinkingText: "#9d9f99",
490
514
  codeInlineText: "#007500",
491
515
  codeBlockText: "#007500",
492
516
  editorBorderNone: "#72842f",
@@ -504,7 +528,7 @@ export const builtinThemes = [
504
528
  actionRunning: "#a72900",
505
529
  actionSuccess: "#646100",
506
530
  actionError: "#a62144",
507
- actionOutput: "#85887d",
531
+ actionOutput: "#9d9f99",
508
532
  diffAdd: "#706d00",
509
533
  diffRemove: "#c01249",
510
534
  toastSuccess: "#646100",
@@ -515,8 +539,10 @@ export const builtinThemes = [
515
539
  userMemoryText: "#220d70",
516
540
  userReviewSurface: "#edefeb",
517
541
  userReviewText: "#183400",
518
- riskReadOnlyText: "#676b5c",
519
- riskReadWriteText: "#676b5c",
542
+ userReviewTextMuted: "#424f38",
543
+ userReviewTextDim: "#686e64",
544
+ riskReadOnlyText: "#737669",
545
+ riskReadWriteText: "#737669",
520
546
  },
521
547
  },
522
548
  sourcePath: "builtin:themes/emerald.json",
@@ -526,10 +552,10 @@ export const builtinThemes = [
526
552
  id: "jade",
527
553
  tokens: {
528
554
  brandAccent: "#7db57c",
529
- textMuted: "#949a94",
530
- textDim: "#787c77",
555
+ textMuted: "#898e88",
556
+ textDim: "#626461",
531
557
  linkText: "#7db57c",
532
- thinkingText: "#787c77",
558
+ thinkingText: "#626461",
533
559
  codeInlineText: "#5eb999",
534
560
  codeBlockText: "#5eb999",
535
561
  editorBorderNone: "#728f71",
@@ -547,7 +573,7 @@ export const builtinThemes = [
547
573
  actionRunning: "#eeab98",
548
574
  actionSuccess: "#c2c282",
549
575
  actionError: "#eea8af",
550
- actionOutput: "#787c77",
576
+ actionOutput: "#626461",
551
577
  diffAdd: "#979751",
552
578
  diffRemove: "#c37a83",
553
579
  toastSuccess: "#bebd68",
@@ -558,16 +584,18 @@ export const builtinThemes = [
558
584
  userMemoryText: "#c0c6fc",
559
585
  userReviewSurface: "#181c15",
560
586
  userReviewText: "#bad0aa",
561
- riskReadOnlyText: "#949a94",
562
- riskReadWriteText: "#949a94",
587
+ userReviewTextMuted: "#9da498",
588
+ userReviewTextDim: "#7b7e79",
589
+ riskReadOnlyText: "#898e88",
590
+ riskReadWriteText: "#898e88",
563
591
  },
564
592
  variants: {
565
593
  light: {
566
594
  brandAccent: "#007500",
567
- textMuted: "#616d60",
568
- textDim: "#818980",
595
+ textMuted: "#6e786d",
596
+ textDim: "#9ba09a",
569
597
  linkText: "#007500",
570
- thinkingText: "#818980",
598
+ thinkingText: "#9ba09a",
571
599
  codeInlineText: "#007151",
572
600
  codeBlockText: "#007151",
573
601
  editorBorderNone: "#4e8b4e",
@@ -585,7 +613,7 @@ export const builtinThemes = [
585
613
  actionRunning: "#a72900",
586
614
  actionSuccess: "#646100",
587
615
  actionError: "#a62144",
588
- actionOutput: "#818980",
616
+ actionOutput: "#9ba09a",
589
617
  diffAdd: "#706d00",
590
618
  diffRemove: "#c01249",
591
619
  toastSuccess: "#646100",
@@ -596,8 +624,10 @@ export const builtinThemes = [
596
624
  userMemoryText: "#220d70",
597
625
  userReviewSurface: "#edefeb",
598
626
  userReviewText: "#183400",
599
- riskReadOnlyText: "#616d60",
600
- riskReadWriteText: "#616d60",
627
+ userReviewTextMuted: "#424f38",
628
+ userReviewTextDim: "#686e64",
629
+ riskReadOnlyText: "#6e786d",
630
+ riskReadWriteText: "#6e786d",
601
631
  },
602
632
  },
603
633
  sourcePath: "builtin:themes/jade.json",
@@ -607,10 +637,10 @@ export const builtinThemes = [
607
637
  id: "teal",
608
638
  tokens: {
609
639
  brandAccent: "#5eb999",
610
- textMuted: "#929b97",
611
- textDim: "#767c79",
640
+ textMuted: "#878e8b",
641
+ textDim: "#616463",
612
642
  linkText: "#5eb999",
613
- thinkingText: "#767c79",
643
+ thinkingText: "#616463",
614
644
  codeInlineText: "#4ab8b5",
615
645
  codeBlockText: "#4ab8b5",
616
646
  editorBorderNone: "#659180",
@@ -628,7 +658,7 @@ export const builtinThemes = [
628
658
  actionRunning: "#eeab98",
629
659
  actionSuccess: "#c2c282",
630
660
  actionError: "#eea8af",
631
- actionOutput: "#767c79",
661
+ actionOutput: "#616463",
632
662
  diffAdd: "#979751",
633
663
  diffRemove: "#c37a83",
634
664
  toastSuccess: "#bebd68",
@@ -639,16 +669,18 @@ export const builtinThemes = [
639
669
  userMemoryText: "#c0c6fc",
640
670
  userReviewSurface: "#181c15",
641
671
  userReviewText: "#bad0aa",
642
- riskReadOnlyText: "#929b97",
643
- riskReadWriteText: "#929b97",
672
+ userReviewTextMuted: "#9da498",
673
+ userReviewTextDim: "#7b7e79",
674
+ riskReadOnlyText: "#878e8b",
675
+ riskReadWriteText: "#878e8b",
644
676
  },
645
677
  variants: {
646
678
  light: {
647
679
  brandAccent: "#007151",
648
- textMuted: "#5c6e66",
649
- textDim: "#7d8984",
680
+ textMuted: "#6a7872",
681
+ textDim: "#99a09d",
650
682
  linkText: "#007151",
651
- thinkingText: "#7d8984",
683
+ thinkingText: "#99a09d",
652
684
  codeInlineText: "#006e6c",
653
685
  codeBlockText: "#006e6c",
654
686
  editorBorderNone: "#178f6d",
@@ -666,7 +698,7 @@ export const builtinThemes = [
666
698
  actionRunning: "#a72900",
667
699
  actionSuccess: "#646100",
668
700
  actionError: "#a62144",
669
- actionOutput: "#7d8984",
701
+ actionOutput: "#99a09d",
670
702
  diffAdd: "#706d00",
671
703
  diffRemove: "#c01249",
672
704
  toastSuccess: "#646100",
@@ -677,8 +709,10 @@ export const builtinThemes = [
677
709
  userMemoryText: "#220d70",
678
710
  userReviewSurface: "#edefeb",
679
711
  userReviewText: "#183400",
680
- riskReadOnlyText: "#5c6e66",
681
- riskReadWriteText: "#5c6e66",
712
+ userReviewTextMuted: "#424f38",
713
+ userReviewTextDim: "#686e64",
714
+ riskReadOnlyText: "#6a7872",
715
+ riskReadWriteText: "#6a7872",
682
716
  },
683
717
  },
684
718
  sourcePath: "builtin:themes/teal.json",
@@ -688,10 +722,10 @@ export const builtinThemes = [
688
722
  id: "cyan",
689
723
  tokens: {
690
724
  brandAccent: "#4ab8b5",
691
- textMuted: "#909b9a",
692
- textDim: "#757c7b",
725
+ textMuted: "#868e8e",
726
+ textDim: "#606464",
693
727
  linkText: "#4ab8b5",
694
- thinkingText: "#757c7b",
728
+ thinkingText: "#606464",
695
729
  codeInlineText: "#4eb4cc",
696
730
  codeBlockText: "#4eb4cc",
697
731
  editorBorderNone: "#5d918f",
@@ -709,7 +743,7 @@ export const builtinThemes = [
709
743
  actionRunning: "#eeab98",
710
744
  actionSuccess: "#c2c282",
711
745
  actionError: "#eea8af",
712
- actionOutput: "#757c7b",
746
+ actionOutput: "#606464",
713
747
  diffAdd: "#979751",
714
748
  diffRemove: "#c37a83",
715
749
  toastSuccess: "#bebd68",
@@ -720,16 +754,18 @@ export const builtinThemes = [
720
754
  userMemoryText: "#c0c6fc",
721
755
  userReviewSurface: "#181c15",
722
756
  userReviewText: "#bad0aa",
723
- riskReadOnlyText: "#909b9a",
724
- riskReadWriteText: "#909b9a",
757
+ userReviewTextMuted: "#9da498",
758
+ userReviewTextDim: "#7b7e79",
759
+ riskReadOnlyText: "#868e8e",
760
+ riskReadWriteText: "#868e8e",
725
761
  },
726
762
  variants: {
727
763
  light: {
728
764
  brandAccent: "#006e6c",
729
- textMuted: "#596e6c",
730
- textDim: "#7c8988",
765
+ textMuted: "#687877",
766
+ textDim: "#98a0a0",
731
767
  linkText: "#006e6c",
732
- thinkingText: "#7c8988",
768
+ thinkingText: "#98a0a0",
733
769
  codeInlineText: "#006a80",
734
770
  codeBlockText: "#006a80",
735
771
  editorBorderNone: "#008e8b",
@@ -747,7 +783,7 @@ export const builtinThemes = [
747
783
  actionRunning: "#a72900",
748
784
  actionSuccess: "#646100",
749
785
  actionError: "#a62144",
750
- actionOutput: "#7c8988",
786
+ actionOutput: "#98a0a0",
751
787
  diffAdd: "#706d00",
752
788
  diffRemove: "#c01249",
753
789
  toastSuccess: "#646100",
@@ -758,8 +794,10 @@ export const builtinThemes = [
758
794
  userMemoryText: "#220d70",
759
795
  userReviewSurface: "#edefeb",
760
796
  userReviewText: "#183400",
761
- riskReadOnlyText: "#596e6c",
762
- riskReadWriteText: "#596e6c",
797
+ userReviewTextMuted: "#424f38",
798
+ userReviewTextDim: "#686e64",
799
+ riskReadOnlyText: "#687877",
800
+ riskReadWriteText: "#687877",
763
801
  },
764
802
  },
765
803
  sourcePath: "builtin:themes/cyan.json",
@@ -769,10 +807,10 @@ export const builtinThemes = [
769
807
  id: "azure",
770
808
  tokens: {
771
809
  brandAccent: "#4eb4cc",
772
- textMuted: "#909a9d",
773
- textDim: "#757c7d",
810
+ textMuted: "#868e90",
811
+ textDim: "#606465",
774
812
  linkText: "#4eb4cc",
775
- thinkingText: "#757c7d",
813
+ thinkingText: "#606465",
776
814
  codeInlineText: "#67addd",
777
815
  codeBlockText: "#67addd",
778
816
  editorBorderNone: "#5e8f9c",
@@ -790,7 +828,7 @@ export const builtinThemes = [
790
828
  actionRunning: "#eeab98",
791
829
  actionSuccess: "#c2c282",
792
830
  actionError: "#eea8af",
793
- actionOutput: "#757c7d",
831
+ actionOutput: "#606465",
794
832
  diffAdd: "#979751",
795
833
  diffRemove: "#c37a83",
796
834
  toastSuccess: "#bebd68",
@@ -801,16 +839,18 @@ export const builtinThemes = [
801
839
  userMemoryText: "#c0c6fc",
802
840
  userReviewSurface: "#181c15",
803
841
  userReviewText: "#bad0aa",
804
- riskReadOnlyText: "#909a9d",
805
- riskReadWriteText: "#909a9d",
842
+ userReviewTextMuted: "#9da498",
843
+ userReviewTextDim: "#7b7e79",
844
+ riskReadOnlyText: "#868e90",
845
+ riskReadWriteText: "#868e90",
806
846
  },
807
847
  variants: {
808
848
  light: {
809
849
  brandAccent: "#006a80",
810
- textMuted: "#5a6d72",
811
- textDim: "#7c898c",
850
+ textMuted: "#68787c",
851
+ textDim: "#98a0a2",
812
852
  linkText: "#006a80",
813
- thinkingText: "#7c898c",
853
+ thinkingText: "#98a0a2",
814
854
  codeInlineText: "#00649e",
815
855
  codeBlockText: "#00649e",
816
856
  editorBorderNone: "#008aa4",
@@ -828,7 +868,7 @@ export const builtinThemes = [
828
868
  actionRunning: "#a72900",
829
869
  actionSuccess: "#646100",
830
870
  actionError: "#a62144",
831
- actionOutput: "#7c898c",
871
+ actionOutput: "#98a0a2",
832
872
  diffAdd: "#706d00",
833
873
  diffRemove: "#c01249",
834
874
  toastSuccess: "#646100",
@@ -839,8 +879,10 @@ export const builtinThemes = [
839
879
  userMemoryText: "#220d70",
840
880
  userReviewSurface: "#edefeb",
841
881
  userReviewText: "#183400",
842
- riskReadOnlyText: "#5a6d72",
843
- riskReadWriteText: "#5a6d72",
882
+ userReviewTextMuted: "#424f38",
883
+ userReviewTextDim: "#686e64",
884
+ riskReadOnlyText: "#68787c",
885
+ riskReadWriteText: "#68787c",
844
886
  },
845
887
  },
846
888
  sourcePath: "builtin:themes/azure.json",
@@ -850,10 +892,10 @@ export const builtinThemes = [
850
892
  id: "cobalt",
851
893
  tokens: {
852
894
  brandAccent: "#67addd",
853
- textMuted: "#92999f",
854
- textDim: "#767b7f",
895
+ textMuted: "#878d92",
896
+ textDim: "#616466",
855
897
  linkText: "#67addd",
856
- thinkingText: "#767b7f",
898
+ thinkingText: "#616466",
857
899
  codeInlineText: "#85a4e4",
858
900
  codeBlockText: "#85a4e4",
859
901
  editorBorderNone: "#678ba5",
@@ -871,7 +913,7 @@ export const builtinThemes = [
871
913
  actionRunning: "#eeab98",
872
914
  actionSuccess: "#c2c282",
873
915
  actionError: "#eea8af",
874
- actionOutput: "#767b7f",
916
+ actionOutput: "#616466",
875
917
  diffAdd: "#979751",
876
918
  diffRemove: "#c37a83",
877
919
  toastSuccess: "#bebd68",
@@ -882,16 +924,18 @@ export const builtinThemes = [
882
924
  userMemoryText: "#c0c6fc",
883
925
  userReviewSurface: "#181c15",
884
926
  userReviewText: "#bad0aa",
885
- riskReadOnlyText: "#92999f",
886
- riskReadWriteText: "#92999f",
927
+ userReviewTextMuted: "#9da498",
928
+ userReviewTextDim: "#7b7e79",
929
+ riskReadOnlyText: "#878d92",
930
+ riskReadWriteText: "#878d92",
887
931
  },
888
932
  variants: {
889
933
  light: {
890
934
  brandAccent: "#00649e",
891
- textMuted: "#5d6b76",
892
- textDim: "#7e888f",
935
+ textMuted: "#6a767f",
936
+ textDim: "#999fa4",
893
937
  linkText: "#00649e",
894
- thinkingText: "#7e888f",
938
+ thinkingText: "#999fa4",
895
939
  codeInlineText: "#1f4fcc",
896
940
  codeBlockText: "#1f4fcc",
897
941
  editorBorderNone: "#2e82b6",
@@ -909,7 +953,7 @@ export const builtinThemes = [
909
953
  actionRunning: "#a72900",
910
954
  actionSuccess: "#646100",
911
955
  actionError: "#a62144",
912
- actionOutput: "#7e888f",
956
+ actionOutput: "#999fa4",
913
957
  diffAdd: "#706d00",
914
958
  diffRemove: "#c01249",
915
959
  toastSuccess: "#646100",
@@ -920,8 +964,10 @@ export const builtinThemes = [
920
964
  userMemoryText: "#220d70",
921
965
  userReviewSurface: "#edefeb",
922
966
  userReviewText: "#183400",
923
- riskReadOnlyText: "#5d6b76",
924
- riskReadWriteText: "#5d6b76",
967
+ userReviewTextMuted: "#424f38",
968
+ userReviewTextDim: "#686e64",
969
+ riskReadOnlyText: "#6a767f",
970
+ riskReadWriteText: "#6a767f",
925
971
  },
926
972
  },
927
973
  sourcePath: "builtin:themes/cobalt.json",
@@ -931,10 +977,10 @@ export const builtinThemes = [
931
977
  id: "violet",
932
978
  tokens: {
933
979
  brandAccent: "#85a4e4",
934
- textMuted: "#9498a0",
935
- textDim: "#787a7f",
980
+ textMuted: "#898c92",
981
+ textDim: "#626366",
936
982
  linkText: "#85a4e4",
937
- thinkingText: "#787a7f",
983
+ thinkingText: "#626366",
938
984
  codeInlineText: "#a19be0",
939
985
  codeBlockText: "#a19be0",
940
986
  editorBorderNone: "#7586a9",
@@ -952,7 +998,7 @@ export const builtinThemes = [
952
998
  actionRunning: "#eeab98",
953
999
  actionSuccess: "#c2c282",
954
1000
  actionError: "#eea8af",
955
- actionOutput: "#787a7f",
1001
+ actionOutput: "#626366",
956
1002
  diffAdd: "#979751",
957
1003
  diffRemove: "#c37a83",
958
1004
  toastSuccess: "#bebd68",
@@ -963,16 +1009,18 @@ export const builtinThemes = [
963
1009
  userMemoryText: "#c0c6fc",
964
1010
  userReviewSurface: "#181c15",
965
1011
  userReviewText: "#bad0aa",
966
- riskReadOnlyText: "#9498a0",
967
- riskReadWriteText: "#9498a0",
1012
+ userReviewTextMuted: "#9da498",
1013
+ userReviewTextDim: "#7b7e79",
1014
+ riskReadOnlyText: "#898c92",
1015
+ riskReadWriteText: "#898c92",
968
1016
  },
969
1017
  variants: {
970
1018
  light: {
971
1019
  brandAccent: "#1f4fcc",
972
- textMuted: "#626977",
973
- textDim: "#818690",
1020
+ textMuted: "#6e7581",
1021
+ textDim: "#9b9ea5",
974
1022
  linkText: "#1f4fcc",
975
- thinkingText: "#818690",
1023
+ thinkingText: "#9b9ea5",
976
1024
  codeInlineText: "#5f3cc5",
977
1025
  codeBlockText: "#5f3cc5",
978
1026
  editorBorderNone: "#5878bd",
@@ -990,7 +1038,7 @@ export const builtinThemes = [
990
1038
  actionRunning: "#a72900",
991
1039
  actionSuccess: "#646100",
992
1040
  actionError: "#a62144",
993
- actionOutput: "#818690",
1041
+ actionOutput: "#9b9ea5",
994
1042
  diffAdd: "#706d00",
995
1043
  diffRemove: "#c01249",
996
1044
  toastSuccess: "#646100",
@@ -1001,8 +1049,10 @@ export const builtinThemes = [
1001
1049
  userMemoryText: "#220d70",
1002
1050
  userReviewSurface: "#edefeb",
1003
1051
  userReviewText: "#183400",
1004
- riskReadOnlyText: "#626977",
1005
- riskReadWriteText: "#626977",
1052
+ userReviewTextMuted: "#424f38",
1053
+ userReviewTextDim: "#686e64",
1054
+ riskReadOnlyText: "#6e7581",
1055
+ riskReadWriteText: "#6e7581",
1006
1056
  },
1007
1057
  },
1008
1058
  sourcePath: "builtin:themes/violet.json",
@@ -1012,10 +1062,10 @@ export const builtinThemes = [
1012
1062
  id: "purple",
1013
1063
  tokens: {
1014
1064
  brandAccent: "#a19be0",
1015
- textMuted: "#98979f",
1016
- textDim: "#7a7a7f",
1065
+ textMuted: "#8c8b92",
1066
+ textDim: "#636366",
1017
1067
  linkText: "#a19be0",
1018
- thinkingText: "#7a7a7f",
1068
+ thinkingText: "#636366",
1019
1069
  codeInlineText: "#ba92d2",
1020
1070
  codeBlockText: "#ba92d2",
1021
1071
  editorBorderNone: "#8481a7",
@@ -1033,7 +1083,7 @@ export const builtinThemes = [
1033
1083
  actionRunning: "#eeab98",
1034
1084
  actionSuccess: "#c2c282",
1035
1085
  actionError: "#eea8af",
1036
- actionOutput: "#7a7a7f",
1086
+ actionOutput: "#636366",
1037
1087
  diffAdd: "#979751",
1038
1088
  diffRemove: "#c37a83",
1039
1089
  toastSuccess: "#bebd68",
@@ -1044,16 +1094,18 @@ export const builtinThemes = [
1044
1094
  userMemoryText: "#c0c6fc",
1045
1095
  userReviewSurface: "#181c15",
1046
1096
  userReviewText: "#bad0aa",
1047
- riskReadOnlyText: "#98979f",
1048
- riskReadWriteText: "#98979f",
1097
+ userReviewTextMuted: "#9da498",
1098
+ userReviewTextDim: "#7b7e79",
1099
+ riskReadOnlyText: "#8c8b92",
1100
+ riskReadWriteText: "#8c8b92",
1049
1101
  },
1050
1102
  variants: {
1051
1103
  light: {
1052
1104
  brandAccent: "#5f3cc5",
1053
- textMuted: "#686776",
1054
- textDim: "#858590",
1105
+ textMuted: "#737380",
1106
+ textDim: "#9e9da4",
1055
1107
  linkText: "#5f3cc5",
1056
- thinkingText: "#858590",
1108
+ thinkingText: "#9e9da4",
1057
1109
  codeInlineText: "#822aac",
1058
1110
  codeBlockText: "#822aac",
1059
1111
  editorBorderNone: "#786eb9",
@@ -1071,7 +1123,7 @@ export const builtinThemes = [
1071
1123
  actionRunning: "#a72900",
1072
1124
  actionSuccess: "#646100",
1073
1125
  actionError: "#a62144",
1074
- actionOutput: "#858590",
1126
+ actionOutput: "#9e9da4",
1075
1127
  diffAdd: "#706d00",
1076
1128
  diffRemove: "#c01249",
1077
1129
  toastSuccess: "#646100",
@@ -1082,8 +1134,10 @@ export const builtinThemes = [
1082
1134
  userMemoryText: "#220d70",
1083
1135
  userReviewSurface: "#edefeb",
1084
1136
  userReviewText: "#183400",
1085
- riskReadOnlyText: "#686776",
1086
- riskReadWriteText: "#686776",
1137
+ userReviewTextMuted: "#424f38",
1138
+ userReviewTextDim: "#686e64",
1139
+ riskReadOnlyText: "#737380",
1140
+ riskReadWriteText: "#737380",
1087
1141
  },
1088
1142
  },
1089
1143
  sourcePath: "builtin:themes/purple.json",
@@ -1093,10 +1147,10 @@ export const builtinThemes = [
1093
1147
  id: "magenta",
1094
1148
  tokens: {
1095
1149
  brandAccent: "#ba92d2",
1096
- textMuted: "#9b969e",
1097
- textDim: "#7c797e",
1150
+ textMuted: "#8e8a91",
1151
+ textDim: "#646265",
1098
1152
  linkText: "#ba92d2",
1099
- thinkingText: "#7c797e",
1153
+ thinkingText: "#646265",
1100
1154
  codeInlineText: "#cc8cbd",
1101
1155
  codeBlockText: "#cc8cbd",
1102
1156
  editorBorderNone: "#927d9f",
@@ -1114,7 +1168,7 @@ export const builtinThemes = [
1114
1168
  actionRunning: "#eeab98",
1115
1169
  actionSuccess: "#c2c282",
1116
1170
  actionError: "#eea8af",
1117
- actionOutput: "#7c797e",
1171
+ actionOutput: "#646265",
1118
1172
  diffAdd: "#979751",
1119
1173
  diffRemove: "#c37a83",
1120
1174
  toastSuccess: "#bebd68",
@@ -1125,16 +1179,18 @@ export const builtinThemes = [
1125
1179
  userMemoryText: "#c0c6fc",
1126
1180
  userReviewSurface: "#181c15",
1127
1181
  userReviewText: "#bad0aa",
1128
- riskReadOnlyText: "#9b969e",
1129
- riskReadWriteText: "#9b969e",
1182
+ userReviewTextMuted: "#9da498",
1183
+ userReviewTextDim: "#7b7e79",
1184
+ riskReadOnlyText: "#8e8a91",
1185
+ riskReadWriteText: "#8e8a91",
1130
1186
  },
1131
1187
  variants: {
1132
1188
  light: {
1133
1189
  brandAccent: "#822aac",
1134
- textMuted: "#6e6573",
1135
- textDim: "#89848d",
1190
+ textMuted: "#78717d",
1191
+ textDim: "#a09da3",
1136
1192
  linkText: "#822aac",
1137
- thinkingText: "#89848d",
1193
+ thinkingText: "#a09da3",
1138
1194
  codeInlineText: "#9c1487",
1139
1195
  codeBlockText: "#9c1487",
1140
1196
  editorBorderNone: "#9066aa",
@@ -1152,7 +1208,7 @@ export const builtinThemes = [
1152
1208
  actionRunning: "#a72900",
1153
1209
  actionSuccess: "#646100",
1154
1210
  actionError: "#a62144",
1155
- actionOutput: "#89848d",
1211
+ actionOutput: "#a09da3",
1156
1212
  diffAdd: "#706d00",
1157
1213
  diffRemove: "#c01249",
1158
1214
  toastSuccess: "#646100",
@@ -1163,8 +1219,10 @@ export const builtinThemes = [
1163
1219
  userMemoryText: "#220d70",
1164
1220
  userReviewSurface: "#edefeb",
1165
1221
  userReviewText: "#183400",
1166
- riskReadOnlyText: "#6e6573",
1167
- riskReadWriteText: "#6e6573",
1222
+ userReviewTextMuted: "#424f38",
1223
+ userReviewTextDim: "#686e64",
1224
+ riskReadOnlyText: "#78717d",
1225
+ riskReadWriteText: "#78717d",
1168
1226
  },
1169
1227
  },
1170
1228
  sourcePath: "builtin:themes/magenta.json",
@@ -1174,10 +1232,10 @@ export const builtinThemes = [
1174
1232
  id: "rose",
1175
1233
  tokens: {
1176
1234
  brandAccent: "#cc8cbd",
1177
- textMuted: "#9d969b",
1178
- textDim: "#7e797c",
1235
+ textMuted: "#908a8e",
1236
+ textDim: "#656264",
1179
1237
  linkText: "#cc8cbd",
1180
- thinkingText: "#7e797c",
1238
+ thinkingText: "#656264",
1181
1239
  codeInlineText: "#d88aa2",
1182
1240
  codeBlockText: "#d88aa2",
1183
1241
  editorBorderNone: "#9c7a93",
@@ -1195,7 +1253,7 @@ export const builtinThemes = [
1195
1253
  actionRunning: "#eeab98",
1196
1254
  actionSuccess: "#c2c282",
1197
1255
  actionError: "#eea8af",
1198
- actionOutput: "#7e797c",
1256
+ actionOutput: "#656264",
1199
1257
  diffAdd: "#979751",
1200
1258
  diffRemove: "#c37a83",
1201
1259
  toastSuccess: "#bebd68",
@@ -1206,16 +1264,18 @@ export const builtinThemes = [
1206
1264
  userMemoryText: "#c0c6fc",
1207
1265
  userReviewSurface: "#181c15",
1208
1266
  userReviewText: "#bad0aa",
1209
- riskReadOnlyText: "#9d969b",
1210
- riskReadWriteText: "#9d969b",
1267
+ userReviewTextMuted: "#9da498",
1268
+ userReviewTextDim: "#7b7e79",
1269
+ riskReadOnlyText: "#908a8e",
1270
+ riskReadWriteText: "#908a8e",
1211
1271
  },
1212
1272
  variants: {
1213
1273
  light: {
1214
1274
  brandAccent: "#9c1487",
1215
- textMuted: "#72646e",
1216
- textDim: "#8d838a",
1275
+ textMuted: "#7c7079",
1276
+ textDim: "#a39ca1",
1217
1277
  linkText: "#9c1487",
1218
- thinkingText: "#8d838a",
1278
+ thinkingText: "#a39ca1",
1219
1279
  codeInlineText: "#ad0059",
1220
1280
  codeBlockText: "#ad0059",
1221
1281
  editorBorderNone: "#a35f93",
@@ -1233,7 +1293,7 @@ export const builtinThemes = [
1233
1293
  actionRunning: "#a72900",
1234
1294
  actionSuccess: "#646100",
1235
1295
  actionError: "#a62144",
1236
- actionOutput: "#8d838a",
1296
+ actionOutput: "#a39ca1",
1237
1297
  diffAdd: "#706d00",
1238
1298
  diffRemove: "#c01249",
1239
1299
  toastSuccess: "#646100",
@@ -1244,8 +1304,10 @@ export const builtinThemes = [
1244
1304
  userMemoryText: "#220d70",
1245
1305
  userReviewSurface: "#edefeb",
1246
1306
  userReviewText: "#183400",
1247
- riskReadOnlyText: "#72646e",
1248
- riskReadWriteText: "#72646e",
1307
+ userReviewTextMuted: "#424f38",
1308
+ userReviewTextDim: "#686e64",
1309
+ riskReadOnlyText: "#7c7079",
1310
+ riskReadWriteText: "#7c7079",
1249
1311
  },
1250
1312
  },
1251
1313
  sourcePath: "builtin:themes/rose.json",