@markusylisiurunen/tau 0.3.39 → 0.3.41
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/README.md +34 -38
- package/dist/core/agent/agent_runtime.js +0 -22
- package/dist/core/agent/agent_runtime.js.map +1 -1
- package/dist/core/cli.js +2 -2
- package/dist/core/cli.js.map +1 -1
- package/dist/core/commands/registry.js +22 -20
- package/dist/core/commands/registry.js.map +1 -1
- package/dist/core/config/builtin_themes.js +936 -998
- package/dist/core/config/builtin_themes.js.map +1 -1
- package/dist/core/history/migrations.js +57 -0
- package/dist/core/history/migrations.js.map +1 -0
- package/dist/core/history/setup.js +18 -0
- package/dist/core/history/setup.js.map +1 -1
- package/dist/core/personas.js +8 -53
- package/dist/core/personas.js.map +1 -1
- package/dist/core/runtime/chat_runtime.js +0 -6
- package/dist/core/runtime/chat_runtime.js.map +1 -1
- package/dist/core/session/direct_bash.js +8 -8
- package/dist/core/session/direct_bash.js.map +1 -1
- package/dist/core/session/runner.js +6 -1
- package/dist/core/session/runner.js.map +1 -1
- package/dist/core/static/code_mode/history/documentation.md +3 -3
- package/dist/core/static/code_mode/nook/documentation.md +6 -4
- package/dist/core/static/code_mode/web/documentation.md +3 -3
- package/dist/core/tools/bash.js +80 -63
- package/dist/core/tools/bash.js.map +1 -1
- package/dist/core/tools/code_mode.js +45 -12
- package/dist/core/tools/code_mode.js.map +1 -1
- package/dist/core/tools/edit.js +72 -84
- package/dist/core/tools/edit.js.map +1 -1
- package/dist/core/tools/goal.js +97 -16
- package/dist/core/tools/goal.js.map +1 -1
- package/dist/core/tools/history.js +13 -15
- package/dist/core/tools/history.js.map +1 -1
- package/dist/core/tools/interrupt_agent.js +56 -37
- package/dist/core/tools/interrupt_agent.js.map +1 -1
- package/dist/core/tools/list_agents.js +28 -13
- package/dist/core/tools/list_agents.js.map +1 -1
- package/dist/core/tools/nook.js +15 -15
- package/dist/core/tools/nook.js.map +1 -1
- package/dist/core/tools/presentation.js +226 -0
- package/dist/core/tools/presentation.js.map +1 -0
- package/dist/core/tools/registry.js.map +1 -1
- package/dist/core/tools/send_input_to_agent.js +57 -47
- package/dist/core/tools/send_input_to_agent.js.map +1 -1
- package/dist/core/tools/spawn_agent.js +81 -52
- package/dist/core/tools/spawn_agent.js.map +1 -1
- package/dist/core/tools/subagent_ui.js +14 -38
- package/dist/core/tools/subagent_ui.js.map +1 -1
- package/dist/core/tools/view_image.js +45 -45
- package/dist/core/tools/view_image.js.map +1 -1
- package/dist/core/tools/wait_for_agents.js +94 -56
- package/dist/core/tools/wait_for_agents.js.map +1 -1
- package/dist/core/tools/web.js +11 -13
- package/dist/core/tools/web.js.map +1 -1
- package/dist/core/tools/write.js +41 -39
- package/dist/core/tools/write.js.map +1 -1
- package/dist/core/utils/gemini_speech.js +1 -1
- package/dist/core/utils/gemini_speech.js.map +1 -1
- package/dist/core/utils/subagent_utils.js +3 -3
- package/dist/core/utils/subagent_utils.js.map +1 -1
- package/dist/core/version.js +1 -1
- package/dist/execution/cloudflare_sandbox_execution_environment.js +1 -1
- package/dist/execution/cloudflare_sandbox_execution_environment.js.map +1 -1
- package/dist/history/worker/index.js +149 -192
- package/dist/history/worker/index.js.map +1 -1
- package/dist/host/client_tool_broker.js +29 -31
- package/dist/host/client_tool_broker.js.map +1 -1
- package/dist/host/local_session_host.js +11 -5
- package/dist/host/local_session_host.js.map +1 -1
- package/dist/main.js +6 -6
- package/dist/main.js.map +1 -1
- package/dist/tui/chat_controller/diff_review_service.js +1 -1
- package/dist/tui/chat_controller/diff_review_service.js.map +1 -1
- package/dist/tui/chat_controller/history_labels.js +13 -0
- package/dist/tui/chat_controller/history_labels.js.map +1 -1
- package/dist/tui/chat_view.js +24 -50
- package/dist/tui/chat_view.js.map +1 -1
- package/dist/tui/session_chat_app.js +3 -4
- package/dist/tui/session_chat_app.js.map +1 -1
- package/dist/tui/session_chat_controller.js +80 -111
- package/dist/tui/session_chat_controller.js.map +1 -1
- package/dist/tui/terminal_appearance.js +44 -25
- package/dist/tui/terminal_appearance.js.map +1 -1
- package/dist/tui/ui/autocomplete_item.js +2 -0
- package/dist/tui/ui/autocomplete_item.js.map +1 -0
- package/dist/tui/ui/chat_container.js +1 -14
- package/dist/tui/ui/chat_container.js.map +1 -1
- package/dist/tui/ui/chat_message_model.js +4 -12
- package/dist/tui/ui/chat_message_model.js.map +1 -1
- package/dist/tui/ui/components/autocomplete_list.js +138 -0
- package/dist/tui/ui/components/autocomplete_list.js.map +1 -0
- package/dist/tui/ui/components/editor.js +33 -40
- package/dist/tui/ui/components/editor.js.map +1 -1
- package/dist/tui/ui/components/one_line_segments.js +0 -67
- package/dist/tui/ui/components/one_line_segments.js.map +1 -1
- package/dist/tui/ui/custom_editor.js +15 -11
- package/dist/tui/ui/custom_editor.js.map +1 -1
- package/dist/tui/ui/diff_review_message.js +1 -11
- package/dist/tui/ui/diff_review_message.js.map +1 -1
- package/dist/tui/ui/footer.js +63 -13
- package/dist/tui/ui/footer.js.map +1 -1
- package/dist/tui/ui/rewind_picker.js +17 -47
- package/dist/tui/ui/rewind_picker.js.map +1 -1
- package/dist/tui/ui/slash_autocomplete.js +43 -64
- package/dist/tui/ui/slash_autocomplete.js.map +1 -1
- package/dist/tui/ui/subagent_editor_pane.js +3 -3
- package/dist/tui/ui/theme/index.js +1 -1
- package/dist/tui/ui/theme/index.js.map +1 -1
- package/dist/tui/ui/theme/palette.js +245 -8
- package/dist/tui/ui/theme/palette.js.map +1 -1
- package/dist/tui/ui/theme/theme.js +3 -30
- package/dist/tui/ui/theme/theme.js.map +1 -1
- package/dist/tui/ui/tool_card.js +137 -0
- package/dist/tui/ui/tool_card.js.map +1 -0
- package/dist/tui/ui/user_message.js +3 -6
- package/dist/tui/ui/user_message.js.map +1 -1
- package/package.json +2 -2
- package/dist/core/utils/tool_preview.js +0 -73
- package/dist/core/utils/tool_preview.js.map +0 -1
- package/dist/tui/chat_controller/command_hints.js +0 -35
- package/dist/tui/chat_controller/command_hints.js.map +0 -1
- package/dist/tui/ui/bash_execution.js +0 -129
- package/dist/tui/ui/bash_execution.js.map +0 -1
- package/dist/tui/ui/components/dynamic_border.js +0 -11
- package/dist/tui/ui/components/dynamic_border.js.map +0 -1
- package/dist/tui/ui/components/header_box.js +0 -107
- package/dist/tui/ui/components/header_box.js.map +0 -1
- package/dist/tui/ui/components/header_line.js +0 -60
- package/dist/tui/ui/components/header_line.js.map +0 -1
- package/dist/tui/ui/components/padded_container.js +0 -24
- package/dist/tui/ui/components/padded_container.js.map +0 -1
- package/dist/tui/ui/file_execution.js +0 -176
- package/dist/tui/ui/file_execution.js.map +0 -1
- package/dist/tui/ui/tool_output.js +0 -163
- package/dist/tui/ui/tool_output.js.map +0 -1
- package/dist/tui/ui/tool_ui_registry.js +0 -786
- package/dist/tui/ui/tool_ui_registry.js.map +0 -1
|
@@ -6,18 +6,15 @@ export const PALETTE_TOKEN_NAMES = [
|
|
|
6
6
|
"thinkingText",
|
|
7
7
|
"codeInlineText",
|
|
8
8
|
"codeBlockText",
|
|
9
|
-
"
|
|
10
|
-
"editorBorderMinimal",
|
|
11
|
-
"editorBorderLow",
|
|
12
|
-
"editorBorderMedium",
|
|
13
|
-
"editorBorderHigh",
|
|
14
|
-
"editorBorderXhigh",
|
|
15
|
-
"editorBorderMax",
|
|
9
|
+
"editorBorder",
|
|
16
10
|
"editorSubagentBorder",
|
|
11
|
+
"editorBorderBash",
|
|
17
12
|
"editorBorderRecording",
|
|
13
|
+
"editorPlaceholder",
|
|
14
|
+
"autocompleteSelectedSurface",
|
|
15
|
+
"autocompleteSelectedText",
|
|
18
16
|
"statusWarn",
|
|
19
17
|
"statusError",
|
|
20
|
-
"modeBash",
|
|
21
18
|
"actionRunning",
|
|
22
19
|
"actionSuccess",
|
|
23
20
|
"actionError",
|
|
@@ -28,6 +25,7 @@ export const PALETTE_TOKEN_NAMES = [
|
|
|
28
25
|
"toastWarn",
|
|
29
26
|
"toastError",
|
|
30
27
|
"userSurface",
|
|
28
|
+
"userText",
|
|
31
29
|
"userReviewSurface",
|
|
32
30
|
"userReviewText",
|
|
33
31
|
"userReviewTextMuted",
|
|
@@ -37,75 +35,71 @@ export const builtinThemes = [
|
|
|
37
35
|
{
|
|
38
36
|
id: "crimson",
|
|
39
37
|
tokens: {
|
|
40
|
-
brandAccent: "#
|
|
41
|
-
textMuted: "#
|
|
42
|
-
textDim: "#
|
|
43
|
-
linkText: "#
|
|
44
|
-
thinkingText: "#
|
|
45
|
-
codeInlineText: "#
|
|
46
|
-
codeBlockText: "#
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
userReviewTextMuted: "#9da498",
|
|
72
|
-
userReviewTextDim: "#7b7e79",
|
|
38
|
+
brandAccent: "#d9a8b6",
|
|
39
|
+
textMuted: "#a29d9e",
|
|
40
|
+
textDim: "#767474",
|
|
41
|
+
linkText: "#d9a8b6",
|
|
42
|
+
thinkingText: "#767474",
|
|
43
|
+
codeInlineText: "#d9a8b6",
|
|
44
|
+
codeBlockText: "#d9a8b6",
|
|
45
|
+
editorBorder: "#ab9399",
|
|
46
|
+
editorSubagentBorder: "#ab9399",
|
|
47
|
+
editorBorderBash: "#c4b790",
|
|
48
|
+
editorBorderRecording: "#d8aaae",
|
|
49
|
+
editorPlaceholder: "#767474",
|
|
50
|
+
autocompleteSelectedSurface: "#292526",
|
|
51
|
+
autocompleteSelectedText: "#e7e3e4",
|
|
52
|
+
statusWarn: "#b78d81",
|
|
53
|
+
statusError: "#b88b8f",
|
|
54
|
+
actionRunning: "#f0c6bb",
|
|
55
|
+
actionSuccess: "#d4d4ae",
|
|
56
|
+
actionError: "#f0c4c8",
|
|
57
|
+
actionOutput: "#767474",
|
|
58
|
+
diffAdd: "#a7a880",
|
|
59
|
+
diffRemove: "#c5979b",
|
|
60
|
+
toastSuccess: "#cece9d",
|
|
61
|
+
toastWarn: "#f1bcae",
|
|
62
|
+
toastError: "#f2babf",
|
|
63
|
+
userSurface: "#292526",
|
|
64
|
+
userText: "#e7e3e4",
|
|
65
|
+
userReviewSurface: "#191c17",
|
|
66
|
+
userReviewText: "#bfccb6",
|
|
67
|
+
userReviewTextMuted: "#9fa39b",
|
|
68
|
+
userReviewTextDim: "#7c7e7b",
|
|
73
69
|
},
|
|
74
70
|
variants: {
|
|
75
71
|
light: {
|
|
76
|
-
brandAccent: "#
|
|
77
|
-
textMuted: "#
|
|
78
|
-
textDim: "#
|
|
79
|
-
linkText: "#
|
|
80
|
-
thinkingText: "#
|
|
81
|
-
codeInlineText: "#
|
|
82
|
-
codeBlockText: "#
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
userReviewTextMuted: "#424f38",
|
|
108
|
-
userReviewTextDim: "#686e64",
|
|
72
|
+
brandAccent: "#a54d6c",
|
|
73
|
+
textMuted: "#8d8386",
|
|
74
|
+
textDim: "#b5afb1",
|
|
75
|
+
linkText: "#a54d6c",
|
|
76
|
+
thinkingText: "#b5afb1",
|
|
77
|
+
codeInlineText: "#a54d6c",
|
|
78
|
+
codeBlockText: "#a54d6c",
|
|
79
|
+
editorBorder: "#784e5b",
|
|
80
|
+
editorSubagentBorder: "#784e5b",
|
|
81
|
+
editorBorderBash: "#413100",
|
|
82
|
+
editorBorderRecording: "#5d1124",
|
|
83
|
+
editorPlaceholder: "#b5afb1",
|
|
84
|
+
autocompleteSelectedSurface: "#faf8f8",
|
|
85
|
+
autocompleteSelectedText: "#100c0d",
|
|
86
|
+
statusWarn: "#843823",
|
|
87
|
+
statusError: "#843442",
|
|
88
|
+
actionRunning: "#a05844",
|
|
89
|
+
actionSuccess: "#757322",
|
|
90
|
+
actionError: "#a0545f",
|
|
91
|
+
actionOutput: "#b5afb1",
|
|
92
|
+
diffAdd: "#827f11",
|
|
93
|
+
diffRemove: "#b55967",
|
|
94
|
+
toastSuccess: "#767300",
|
|
95
|
+
toastWarn: "#ac4e35",
|
|
96
|
+
toastError: "#ac4a5a",
|
|
97
|
+
userSurface: "#faf8f8",
|
|
98
|
+
userText: "#100c0d",
|
|
99
|
+
userReviewSurface: "#edefec",
|
|
100
|
+
userReviewText: "#1e320a",
|
|
101
|
+
userReviewTextMuted: "#464d40",
|
|
102
|
+
userReviewTextDim: "#696d67",
|
|
109
103
|
},
|
|
110
104
|
},
|
|
111
105
|
sourcePath: "builtin:themes/crimson.json",
|
|
@@ -114,75 +108,71 @@ export const builtinThemes = [
|
|
|
114
108
|
{
|
|
115
109
|
id: "ember",
|
|
116
110
|
tokens: {
|
|
117
|
-
brandAccent: "#
|
|
118
|
-
textMuted: "#
|
|
119
|
-
textDim: "#
|
|
120
|
-
linkText: "#
|
|
121
|
-
thinkingText: "#
|
|
122
|
-
codeInlineText: "#
|
|
123
|
-
codeBlockText: "#
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
userReviewTextMuted: "#9da498",
|
|
149
|
-
userReviewTextDim: "#7b7e79",
|
|
111
|
+
brandAccent: "#dba9a5",
|
|
112
|
+
textMuted: "#a29d9c",
|
|
113
|
+
textDim: "#767473",
|
|
114
|
+
linkText: "#dba9a5",
|
|
115
|
+
thinkingText: "#767473",
|
|
116
|
+
codeInlineText: "#dba9a5",
|
|
117
|
+
codeBlockText: "#dba9a5",
|
|
118
|
+
editorBorder: "#ac9391",
|
|
119
|
+
editorSubagentBorder: "#ac9391",
|
|
120
|
+
editorBorderBash: "#c4b790",
|
|
121
|
+
editorBorderRecording: "#d8aaae",
|
|
122
|
+
editorPlaceholder: "#767473",
|
|
123
|
+
autocompleteSelectedSurface: "#292525",
|
|
124
|
+
autocompleteSelectedText: "#e7e4e3",
|
|
125
|
+
statusWarn: "#b78d81",
|
|
126
|
+
statusError: "#b88b8f",
|
|
127
|
+
actionRunning: "#f0c6bb",
|
|
128
|
+
actionSuccess: "#d4d4ae",
|
|
129
|
+
actionError: "#f0c4c8",
|
|
130
|
+
actionOutput: "#767473",
|
|
131
|
+
diffAdd: "#a7a880",
|
|
132
|
+
diffRemove: "#c5979b",
|
|
133
|
+
toastSuccess: "#cece9d",
|
|
134
|
+
toastWarn: "#f1bcae",
|
|
135
|
+
toastError: "#f2babf",
|
|
136
|
+
userSurface: "#292525",
|
|
137
|
+
userText: "#e7e4e3",
|
|
138
|
+
userReviewSurface: "#191c17",
|
|
139
|
+
userReviewText: "#bfccb6",
|
|
140
|
+
userReviewTextMuted: "#9fa39b",
|
|
141
|
+
userReviewTextDim: "#7c7e7b",
|
|
150
142
|
},
|
|
151
143
|
variants: {
|
|
152
144
|
light: {
|
|
153
|
-
brandAccent: "#
|
|
154
|
-
textMuted: "#
|
|
155
|
-
textDim: "#
|
|
156
|
-
linkText: "#
|
|
157
|
-
thinkingText: "#
|
|
158
|
-
codeInlineText: "#
|
|
159
|
-
codeBlockText: "#
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
userReviewTextMuted: "#424f38",
|
|
185
|
-
userReviewTextDim: "#686e64",
|
|
145
|
+
brandAccent: "#a94f4b",
|
|
146
|
+
textMuted: "#8d8383",
|
|
147
|
+
textDim: "#b5b0af",
|
|
148
|
+
linkText: "#a94f4b",
|
|
149
|
+
thinkingText: "#b5b0af",
|
|
150
|
+
codeInlineText: "#a94f4b",
|
|
151
|
+
codeBlockText: "#a94f4b",
|
|
152
|
+
editorBorder: "#7b4f4c",
|
|
153
|
+
editorSubagentBorder: "#7b4f4c",
|
|
154
|
+
editorBorderBash: "#413100",
|
|
155
|
+
editorBorderRecording: "#5d1124",
|
|
156
|
+
editorPlaceholder: "#b5b0af",
|
|
157
|
+
autocompleteSelectedSurface: "#faf8f7",
|
|
158
|
+
autocompleteSelectedText: "#100c0c",
|
|
159
|
+
statusWarn: "#843823",
|
|
160
|
+
statusError: "#843442",
|
|
161
|
+
actionRunning: "#a05844",
|
|
162
|
+
actionSuccess: "#757322",
|
|
163
|
+
actionError: "#a0545f",
|
|
164
|
+
actionOutput: "#b5b0af",
|
|
165
|
+
diffAdd: "#827f11",
|
|
166
|
+
diffRemove: "#b55967",
|
|
167
|
+
toastSuccess: "#767300",
|
|
168
|
+
toastWarn: "#ac4e35",
|
|
169
|
+
toastError: "#ac4a5a",
|
|
170
|
+
userSurface: "#faf8f7",
|
|
171
|
+
userText: "#100c0c",
|
|
172
|
+
userReviewSurface: "#edefec",
|
|
173
|
+
userReviewText: "#1e320a",
|
|
174
|
+
userReviewTextMuted: "#464d40",
|
|
175
|
+
userReviewTextDim: "#696d67",
|
|
186
176
|
},
|
|
187
177
|
},
|
|
188
178
|
sourcePath: "builtin:themes/ember.json",
|
|
@@ -191,75 +181,71 @@ export const builtinThemes = [
|
|
|
191
181
|
{
|
|
192
182
|
id: "gold",
|
|
193
183
|
tokens: {
|
|
194
|
-
brandAccent: "#
|
|
195
|
-
textMuted: "#
|
|
196
|
-
textDim: "#
|
|
197
|
-
linkText: "#
|
|
198
|
-
thinkingText: "#
|
|
199
|
-
codeInlineText: "#
|
|
200
|
-
codeBlockText: "#
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
userReviewTextMuted: "#9da498",
|
|
226
|
-
userReviewTextDim: "#7b7e79",
|
|
184
|
+
brandAccent: "#d8ad97",
|
|
185
|
+
textMuted: "#a29d9b",
|
|
186
|
+
textDim: "#767473",
|
|
187
|
+
linkText: "#d8ad97",
|
|
188
|
+
thinkingText: "#767473",
|
|
189
|
+
codeInlineText: "#d8ad97",
|
|
190
|
+
codeBlockText: "#d8ad97",
|
|
191
|
+
editorBorder: "#ab958b",
|
|
192
|
+
editorSubagentBorder: "#ab958b",
|
|
193
|
+
editorBorderBash: "#c4b790",
|
|
194
|
+
editorBorderRecording: "#d8aaae",
|
|
195
|
+
editorPlaceholder: "#767473",
|
|
196
|
+
autocompleteSelectedSurface: "#292624",
|
|
197
|
+
autocompleteSelectedText: "#e7e4e2",
|
|
198
|
+
statusWarn: "#b78d81",
|
|
199
|
+
statusError: "#b88b8f",
|
|
200
|
+
actionRunning: "#f0c6bb",
|
|
201
|
+
actionSuccess: "#d4d4ae",
|
|
202
|
+
actionError: "#f0c4c8",
|
|
203
|
+
actionOutput: "#767473",
|
|
204
|
+
diffAdd: "#a7a880",
|
|
205
|
+
diffRemove: "#c5979b",
|
|
206
|
+
toastSuccess: "#cece9d",
|
|
207
|
+
toastWarn: "#f1bcae",
|
|
208
|
+
toastError: "#f2babf",
|
|
209
|
+
userSurface: "#292624",
|
|
210
|
+
userText: "#e7e4e2",
|
|
211
|
+
userReviewSurface: "#191c17",
|
|
212
|
+
userReviewText: "#bfccb6",
|
|
213
|
+
userReviewTextMuted: "#9fa39b",
|
|
214
|
+
userReviewTextDim: "#7c7e7b",
|
|
227
215
|
},
|
|
228
216
|
variants: {
|
|
229
217
|
light: {
|
|
230
|
-
brandAccent: "#
|
|
231
|
-
textMuted: "#
|
|
232
|
-
textDim: "#
|
|
233
|
-
linkText: "#
|
|
234
|
-
thinkingText: "#
|
|
235
|
-
codeInlineText: "#
|
|
236
|
-
codeBlockText: "#
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
userReviewTextMuted: "#424f38",
|
|
262
|
-
userReviewTextDim: "#686e64",
|
|
218
|
+
brandAccent: "#a55628",
|
|
219
|
+
textMuted: "#8d8480",
|
|
220
|
+
textDim: "#b4b0ae",
|
|
221
|
+
linkText: "#a55628",
|
|
222
|
+
thinkingText: "#b4b0ae",
|
|
223
|
+
codeInlineText: "#a55628",
|
|
224
|
+
codeBlockText: "#a55628",
|
|
225
|
+
editorBorder: "#78523e",
|
|
226
|
+
editorSubagentBorder: "#78523e",
|
|
227
|
+
editorBorderBash: "#413100",
|
|
228
|
+
editorBorderRecording: "#5d1124",
|
|
229
|
+
editorPlaceholder: "#b4b0ae",
|
|
230
|
+
autocompleteSelectedSurface: "#faf8f7",
|
|
231
|
+
autocompleteSelectedText: "#100c0b",
|
|
232
|
+
statusWarn: "#843823",
|
|
233
|
+
statusError: "#843442",
|
|
234
|
+
actionRunning: "#a05844",
|
|
235
|
+
actionSuccess: "#757322",
|
|
236
|
+
actionError: "#a0545f",
|
|
237
|
+
actionOutput: "#b4b0ae",
|
|
238
|
+
diffAdd: "#827f11",
|
|
239
|
+
diffRemove: "#b55967",
|
|
240
|
+
toastSuccess: "#767300",
|
|
241
|
+
toastWarn: "#ac4e35",
|
|
242
|
+
toastError: "#ac4a5a",
|
|
243
|
+
userSurface: "#faf8f7",
|
|
244
|
+
userText: "#100c0b",
|
|
245
|
+
userReviewSurface: "#edefec",
|
|
246
|
+
userReviewText: "#1e320a",
|
|
247
|
+
userReviewTextMuted: "#464d40",
|
|
248
|
+
userReviewTextDim: "#696d67",
|
|
263
249
|
},
|
|
264
250
|
},
|
|
265
251
|
sourcePath: "builtin:themes/gold.json",
|
|
@@ -268,75 +254,71 @@ export const builtinThemes = [
|
|
|
268
254
|
{
|
|
269
255
|
id: "lime",
|
|
270
256
|
tokens: {
|
|
271
|
-
brandAccent: "#
|
|
272
|
-
textMuted: "#
|
|
273
|
-
textDim: "#
|
|
274
|
-
linkText: "#
|
|
275
|
-
thinkingText: "#
|
|
276
|
-
codeInlineText: "#
|
|
277
|
-
codeBlockText: "#
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
userReviewTextMuted: "#9da498",
|
|
303
|
-
userReviewTextDim: "#7b7e79",
|
|
257
|
+
brandAccent: "#d0b28e",
|
|
258
|
+
textMuted: "#a19e9a",
|
|
259
|
+
textDim: "#757472",
|
|
260
|
+
linkText: "#d0b28e",
|
|
261
|
+
thinkingText: "#757472",
|
|
262
|
+
codeInlineText: "#d0b28e",
|
|
263
|
+
codeBlockText: "#d0b28e",
|
|
264
|
+
editorBorder: "#a69886",
|
|
265
|
+
editorSubagentBorder: "#a69886",
|
|
266
|
+
editorBorderBash: "#c4b790",
|
|
267
|
+
editorBorderRecording: "#d8aaae",
|
|
268
|
+
editorPlaceholder: "#757472",
|
|
269
|
+
autocompleteSelectedSurface: "#282623",
|
|
270
|
+
autocompleteSelectedText: "#e6e4e2",
|
|
271
|
+
statusWarn: "#b78d81",
|
|
272
|
+
statusError: "#b88b8f",
|
|
273
|
+
actionRunning: "#f0c6bb",
|
|
274
|
+
actionSuccess: "#d4d4ae",
|
|
275
|
+
actionError: "#f0c4c8",
|
|
276
|
+
actionOutput: "#757472",
|
|
277
|
+
diffAdd: "#a7a880",
|
|
278
|
+
diffRemove: "#c5979b",
|
|
279
|
+
toastSuccess: "#cece9d",
|
|
280
|
+
toastWarn: "#f1bcae",
|
|
281
|
+
toastError: "#f2babf",
|
|
282
|
+
userSurface: "#282623",
|
|
283
|
+
userText: "#e6e4e2",
|
|
284
|
+
userReviewSurface: "#191c17",
|
|
285
|
+
userReviewText: "#bfccb6",
|
|
286
|
+
userReviewTextMuted: "#9fa39b",
|
|
287
|
+
userReviewTextDim: "#7c7e7b",
|
|
304
288
|
},
|
|
305
289
|
variants: {
|
|
306
290
|
light: {
|
|
307
|
-
brandAccent: "#
|
|
308
|
-
textMuted: "#
|
|
309
|
-
textDim: "#
|
|
310
|
-
linkText: "#
|
|
311
|
-
thinkingText: "#
|
|
312
|
-
codeInlineText: "#
|
|
313
|
-
codeBlockText: "#
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
userReviewTextMuted: "#424f38",
|
|
339
|
-
userReviewTextDim: "#686e64",
|
|
291
|
+
brandAccent: "#996100",
|
|
292
|
+
textMuted: "#8b857e",
|
|
293
|
+
textDim: "#b3b0ad",
|
|
294
|
+
linkText: "#996100",
|
|
295
|
+
thinkingText: "#b3b0ad",
|
|
296
|
+
codeInlineText: "#996100",
|
|
297
|
+
codeBlockText: "#996100",
|
|
298
|
+
editorBorder: "#715735",
|
|
299
|
+
editorSubagentBorder: "#715735",
|
|
300
|
+
editorBorderBash: "#413100",
|
|
301
|
+
editorBorderRecording: "#5d1124",
|
|
302
|
+
editorPlaceholder: "#b3b0ad",
|
|
303
|
+
autocompleteSelectedSurface: "#faf8f6",
|
|
304
|
+
autocompleteSelectedText: "#0f0d0a",
|
|
305
|
+
statusWarn: "#843823",
|
|
306
|
+
statusError: "#843442",
|
|
307
|
+
actionRunning: "#a05844",
|
|
308
|
+
actionSuccess: "#757322",
|
|
309
|
+
actionError: "#a0545f",
|
|
310
|
+
actionOutput: "#b3b0ad",
|
|
311
|
+
diffAdd: "#827f11",
|
|
312
|
+
diffRemove: "#b55967",
|
|
313
|
+
toastSuccess: "#767300",
|
|
314
|
+
toastWarn: "#ac4e35",
|
|
315
|
+
toastError: "#ac4a5a",
|
|
316
|
+
userSurface: "#faf8f6",
|
|
317
|
+
userText: "#0f0d0a",
|
|
318
|
+
userReviewSurface: "#edefec",
|
|
319
|
+
userReviewText: "#1e320a",
|
|
320
|
+
userReviewTextMuted: "#464d40",
|
|
321
|
+
userReviewTextDim: "#696d67",
|
|
340
322
|
},
|
|
341
323
|
},
|
|
342
324
|
sourcePath: "builtin:themes/lime.json",
|
|
@@ -345,75 +327,71 @@ export const builtinThemes = [
|
|
|
345
327
|
{
|
|
346
328
|
id: "grass",
|
|
347
329
|
tokens: {
|
|
348
|
-
brandAccent: "#
|
|
349
|
-
textMuted: "#
|
|
350
|
-
textDim: "#
|
|
351
|
-
linkText: "#
|
|
352
|
-
thinkingText: "#
|
|
353
|
-
codeInlineText: "#
|
|
354
|
-
codeBlockText: "#
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
userReviewTextMuted: "#9da498",
|
|
380
|
-
userReviewTextDim: "#7b7e79",
|
|
330
|
+
brandAccent: "#c3b88c",
|
|
331
|
+
textMuted: "#9f9e9a",
|
|
332
|
+
textDim: "#757472",
|
|
333
|
+
linkText: "#c3b88c",
|
|
334
|
+
thinkingText: "#757472",
|
|
335
|
+
codeInlineText: "#c3b88c",
|
|
336
|
+
codeBlockText: "#c3b88c",
|
|
337
|
+
editorBorder: "#9f9b86",
|
|
338
|
+
editorSubagentBorder: "#9f9b86",
|
|
339
|
+
editorBorderBash: "#c4b790",
|
|
340
|
+
editorBorderRecording: "#d8aaae",
|
|
341
|
+
editorPlaceholder: "#757472",
|
|
342
|
+
autocompleteSelectedSurface: "#272623",
|
|
343
|
+
autocompleteSelectedText: "#e5e4e2",
|
|
344
|
+
statusWarn: "#b78d81",
|
|
345
|
+
statusError: "#b88b8f",
|
|
346
|
+
actionRunning: "#f0c6bb",
|
|
347
|
+
actionSuccess: "#d4d4ae",
|
|
348
|
+
actionError: "#f0c4c8",
|
|
349
|
+
actionOutput: "#757472",
|
|
350
|
+
diffAdd: "#a7a880",
|
|
351
|
+
diffRemove: "#c5979b",
|
|
352
|
+
toastSuccess: "#cece9d",
|
|
353
|
+
toastWarn: "#f1bcae",
|
|
354
|
+
toastError: "#f2babf",
|
|
355
|
+
userSurface: "#272623",
|
|
356
|
+
userText: "#e5e4e2",
|
|
357
|
+
userReviewSurface: "#191c17",
|
|
358
|
+
userReviewText: "#bfccb6",
|
|
359
|
+
userReviewTextMuted: "#9fa39b",
|
|
360
|
+
userReviewTextDim: "#7c7e7b",
|
|
381
361
|
},
|
|
382
362
|
variants: {
|
|
383
363
|
light: {
|
|
384
|
-
brandAccent: "#
|
|
385
|
-
textMuted: "#
|
|
386
|
-
textDim: "#
|
|
387
|
-
linkText: "#
|
|
388
|
-
thinkingText: "#
|
|
389
|
-
codeInlineText: "#
|
|
390
|
-
codeBlockText: "#
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
userReviewTextMuted: "#424f38",
|
|
416
|
-
userReviewTextDim: "#686e64",
|
|
364
|
+
brandAccent: "#836d00",
|
|
365
|
+
textMuted: "#88867e",
|
|
366
|
+
textDim: "#b2b1ad",
|
|
367
|
+
linkText: "#836d00",
|
|
368
|
+
thinkingText: "#b2b1ad",
|
|
369
|
+
codeInlineText: "#836d00",
|
|
370
|
+
codeBlockText: "#836d00",
|
|
371
|
+
editorBorder: "#665c34",
|
|
372
|
+
editorSubagentBorder: "#665c34",
|
|
373
|
+
editorBorderBash: "#413100",
|
|
374
|
+
editorBorderRecording: "#5d1124",
|
|
375
|
+
editorPlaceholder: "#b2b1ad",
|
|
376
|
+
autocompleteSelectedSurface: "#f9f8f6",
|
|
377
|
+
autocompleteSelectedText: "#0e0d0a",
|
|
378
|
+
statusWarn: "#843823",
|
|
379
|
+
statusError: "#843442",
|
|
380
|
+
actionRunning: "#a05844",
|
|
381
|
+
actionSuccess: "#757322",
|
|
382
|
+
actionError: "#a0545f",
|
|
383
|
+
actionOutput: "#b2b1ad",
|
|
384
|
+
diffAdd: "#827f11",
|
|
385
|
+
diffRemove: "#b55967",
|
|
386
|
+
toastSuccess: "#767300",
|
|
387
|
+
toastWarn: "#ac4e35",
|
|
388
|
+
toastError: "#ac4a5a",
|
|
389
|
+
userSurface: "#f9f8f6",
|
|
390
|
+
userText: "#0e0d0a",
|
|
391
|
+
userReviewSurface: "#edefec",
|
|
392
|
+
userReviewText: "#1e320a",
|
|
393
|
+
userReviewTextMuted: "#464d40",
|
|
394
|
+
userReviewTextDim: "#696d67",
|
|
417
395
|
},
|
|
418
396
|
},
|
|
419
397
|
sourcePath: "builtin:themes/grass.json",
|
|
@@ -422,75 +400,71 @@ export const builtinThemes = [
|
|
|
422
400
|
{
|
|
423
401
|
id: "emerald",
|
|
424
402
|
tokens: {
|
|
425
|
-
brandAccent: "#
|
|
426
|
-
textMuted: "#
|
|
427
|
-
textDim: "#
|
|
428
|
-
linkText: "#
|
|
429
|
-
thinkingText: "#
|
|
430
|
-
codeInlineText: "#
|
|
431
|
-
codeBlockText: "#
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
userReviewTextMuted: "#9da498",
|
|
457
|
-
userReviewTextDim: "#7b7e79",
|
|
403
|
+
brandAccent: "#b2be93",
|
|
404
|
+
textMuted: "#9e9f9b",
|
|
405
|
+
textDim: "#747573",
|
|
406
|
+
linkText: "#b2be93",
|
|
407
|
+
thinkingText: "#747573",
|
|
408
|
+
codeInlineText: "#b2be93",
|
|
409
|
+
codeBlockText: "#b2be93",
|
|
410
|
+
editorBorder: "#989d89",
|
|
411
|
+
editorSubagentBorder: "#989d89",
|
|
412
|
+
editorBorderBash: "#c4b790",
|
|
413
|
+
editorBorderRecording: "#d8aaae",
|
|
414
|
+
editorPlaceholder: "#747573",
|
|
415
|
+
autocompleteSelectedSurface: "#262724",
|
|
416
|
+
autocompleteSelectedText: "#e4e5e2",
|
|
417
|
+
statusWarn: "#b78d81",
|
|
418
|
+
statusError: "#b88b8f",
|
|
419
|
+
actionRunning: "#f0c6bb",
|
|
420
|
+
actionSuccess: "#d4d4ae",
|
|
421
|
+
actionError: "#f0c4c8",
|
|
422
|
+
actionOutput: "#747573",
|
|
423
|
+
diffAdd: "#a7a880",
|
|
424
|
+
diffRemove: "#c5979b",
|
|
425
|
+
toastSuccess: "#cece9d",
|
|
426
|
+
toastWarn: "#f1bcae",
|
|
427
|
+
toastError: "#f2babf",
|
|
428
|
+
userSurface: "#262724",
|
|
429
|
+
userText: "#e4e5e2",
|
|
430
|
+
userReviewSurface: "#191c17",
|
|
431
|
+
userReviewText: "#bfccb6",
|
|
432
|
+
userReviewTextMuted: "#9fa39b",
|
|
433
|
+
userReviewTextDim: "#7c7e7b",
|
|
458
434
|
},
|
|
459
435
|
variants: {
|
|
460
436
|
light: {
|
|
461
|
-
brandAccent: "#
|
|
462
|
-
textMuted: "#
|
|
463
|
-
textDim: "#
|
|
464
|
-
linkText: "#
|
|
465
|
-
thinkingText: "#
|
|
466
|
-
codeInlineText: "#
|
|
467
|
-
codeBlockText: "#
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
userReviewTextMuted: "#424f38",
|
|
493
|
-
userReviewTextDim: "#686e64",
|
|
437
|
+
brandAccent: "#667815",
|
|
438
|
+
textMuted: "#85877f",
|
|
439
|
+
textDim: "#b0b2ad",
|
|
440
|
+
linkText: "#667815",
|
|
441
|
+
thinkingText: "#b0b2ad",
|
|
442
|
+
codeInlineText: "#667815",
|
|
443
|
+
codeBlockText: "#667815",
|
|
444
|
+
editorBorder: "#58613a",
|
|
445
|
+
editorSubagentBorder: "#58613a",
|
|
446
|
+
editorBorderBash: "#413100",
|
|
447
|
+
editorBorderRecording: "#5d1124",
|
|
448
|
+
editorPlaceholder: "#b0b2ad",
|
|
449
|
+
autocompleteSelectedSurface: "#f8f9f6",
|
|
450
|
+
autocompleteSelectedText: "#0d0e0a",
|
|
451
|
+
statusWarn: "#843823",
|
|
452
|
+
statusError: "#843442",
|
|
453
|
+
actionRunning: "#a05844",
|
|
454
|
+
actionSuccess: "#757322",
|
|
455
|
+
actionError: "#a0545f",
|
|
456
|
+
actionOutput: "#b0b2ad",
|
|
457
|
+
diffAdd: "#827f11",
|
|
458
|
+
diffRemove: "#b55967",
|
|
459
|
+
toastSuccess: "#767300",
|
|
460
|
+
toastWarn: "#ac4e35",
|
|
461
|
+
toastError: "#ac4a5a",
|
|
462
|
+
userSurface: "#f8f9f6",
|
|
463
|
+
userText: "#0d0e0a",
|
|
464
|
+
userReviewSurface: "#edefec",
|
|
465
|
+
userReviewText: "#1e320a",
|
|
466
|
+
userReviewTextMuted: "#464d40",
|
|
467
|
+
userReviewTextDim: "#696d67",
|
|
494
468
|
},
|
|
495
469
|
},
|
|
496
470
|
sourcePath: "builtin:themes/emerald.json",
|
|
@@ -499,75 +473,71 @@ export const builtinThemes = [
|
|
|
499
473
|
{
|
|
500
474
|
id: "jade",
|
|
501
475
|
tokens: {
|
|
502
|
-
brandAccent: "#
|
|
503
|
-
textMuted: "#
|
|
504
|
-
textDim: "#
|
|
505
|
-
linkText: "#
|
|
506
|
-
thinkingText: "#
|
|
507
|
-
codeInlineText: "#
|
|
508
|
-
codeBlockText: "#
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
userReviewTextMuted: "#9da498",
|
|
534
|
-
userReviewTextDim: "#7b7e79",
|
|
476
|
+
brandAccent: "#a1c2a0",
|
|
477
|
+
textMuted: "#9c9f9c",
|
|
478
|
+
textDim: "#737573",
|
|
479
|
+
linkText: "#a1c2a0",
|
|
480
|
+
thinkingText: "#737573",
|
|
481
|
+
codeInlineText: "#a1c2a0",
|
|
482
|
+
codeBlockText: "#a1c2a0",
|
|
483
|
+
editorBorder: "#909f8f",
|
|
484
|
+
editorSubagentBorder: "#909f8f",
|
|
485
|
+
editorBorderBash: "#c4b790",
|
|
486
|
+
editorBorderRecording: "#d8aaae",
|
|
487
|
+
editorPlaceholder: "#737573",
|
|
488
|
+
autocompleteSelectedSurface: "#252725",
|
|
489
|
+
autocompleteSelectedText: "#e3e5e3",
|
|
490
|
+
statusWarn: "#b78d81",
|
|
491
|
+
statusError: "#b88b8f",
|
|
492
|
+
actionRunning: "#f0c6bb",
|
|
493
|
+
actionSuccess: "#d4d4ae",
|
|
494
|
+
actionError: "#f0c4c8",
|
|
495
|
+
actionOutput: "#737573",
|
|
496
|
+
diffAdd: "#a7a880",
|
|
497
|
+
diffRemove: "#c5979b",
|
|
498
|
+
toastSuccess: "#cece9d",
|
|
499
|
+
toastWarn: "#f1bcae",
|
|
500
|
+
toastError: "#f2babf",
|
|
501
|
+
userSurface: "#252725",
|
|
502
|
+
userText: "#e3e5e3",
|
|
503
|
+
userReviewSurface: "#191c17",
|
|
504
|
+
userReviewText: "#bfccb6",
|
|
505
|
+
userReviewTextMuted: "#9fa39b",
|
|
506
|
+
userReviewTextDim: "#7c7e7b",
|
|
535
507
|
},
|
|
536
508
|
variants: {
|
|
537
509
|
light: {
|
|
538
|
-
brandAccent: "#
|
|
539
|
-
textMuted: "#
|
|
540
|
-
textDim: "#
|
|
541
|
-
linkText: "#
|
|
542
|
-
thinkingText: "#
|
|
543
|
-
codeInlineText: "#
|
|
544
|
-
codeBlockText: "#
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
userReviewTextMuted: "#424f38",
|
|
570
|
-
userReviewTextDim: "#686e64",
|
|
510
|
+
brandAccent: "#3d803e",
|
|
511
|
+
textMuted: "#828882",
|
|
512
|
+
textDim: "#afb2af",
|
|
513
|
+
linkText: "#3d803e",
|
|
514
|
+
thinkingText: "#afb2af",
|
|
515
|
+
codeInlineText: "#3d803e",
|
|
516
|
+
codeBlockText: "#3d803e",
|
|
517
|
+
editorBorder: "#476547",
|
|
518
|
+
editorSubagentBorder: "#476547",
|
|
519
|
+
editorBorderBash: "#413100",
|
|
520
|
+
editorBorderRecording: "#5d1124",
|
|
521
|
+
editorPlaceholder: "#afb2af",
|
|
522
|
+
autocompleteSelectedSurface: "#f7f9f7",
|
|
523
|
+
autocompleteSelectedText: "#0b0e0b",
|
|
524
|
+
statusWarn: "#843823",
|
|
525
|
+
statusError: "#843442",
|
|
526
|
+
actionRunning: "#a05844",
|
|
527
|
+
actionSuccess: "#757322",
|
|
528
|
+
actionError: "#a0545f",
|
|
529
|
+
actionOutput: "#afb2af",
|
|
530
|
+
diffAdd: "#827f11",
|
|
531
|
+
diffRemove: "#b55967",
|
|
532
|
+
toastSuccess: "#767300",
|
|
533
|
+
toastWarn: "#ac4e35",
|
|
534
|
+
toastError: "#ac4a5a",
|
|
535
|
+
userSurface: "#f7f9f7",
|
|
536
|
+
userText: "#0b0e0b",
|
|
537
|
+
userReviewSurface: "#edefec",
|
|
538
|
+
userReviewText: "#1e320a",
|
|
539
|
+
userReviewTextMuted: "#464d40",
|
|
540
|
+
userReviewTextDim: "#696d67",
|
|
571
541
|
},
|
|
572
542
|
},
|
|
573
543
|
sourcePath: "builtin:themes/jade.json",
|
|
@@ -576,75 +546,71 @@ export const builtinThemes = [
|
|
|
576
546
|
{
|
|
577
547
|
id: "teal",
|
|
578
548
|
tokens: {
|
|
579
|
-
brandAccent: "#
|
|
580
|
-
textMuted: "#
|
|
581
|
-
textDim: "#
|
|
582
|
-
linkText: "#
|
|
583
|
-
thinkingText: "#
|
|
584
|
-
codeInlineText: "#
|
|
585
|
-
codeBlockText: "#
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
userReviewTextMuted: "#9da498",
|
|
611
|
-
userReviewTextDim: "#7b7e79",
|
|
549
|
+
brandAccent: "#92c4b0",
|
|
550
|
+
textMuted: "#9ba09e",
|
|
551
|
+
textDim: "#737574",
|
|
552
|
+
linkText: "#92c4b0",
|
|
553
|
+
thinkingText: "#737574",
|
|
554
|
+
codeInlineText: "#92c4b0",
|
|
555
|
+
codeBlockText: "#92c4b0",
|
|
556
|
+
editorBorder: "#89a197",
|
|
557
|
+
editorSubagentBorder: "#89a197",
|
|
558
|
+
editorBorderBash: "#c4b790",
|
|
559
|
+
editorBorderRecording: "#d8aaae",
|
|
560
|
+
editorPlaceholder: "#737574",
|
|
561
|
+
autocompleteSelectedSurface: "#242726",
|
|
562
|
+
autocompleteSelectedText: "#e2e5e4",
|
|
563
|
+
statusWarn: "#b78d81",
|
|
564
|
+
statusError: "#b88b8f",
|
|
565
|
+
actionRunning: "#f0c6bb",
|
|
566
|
+
actionSuccess: "#d4d4ae",
|
|
567
|
+
actionError: "#f0c4c8",
|
|
568
|
+
actionOutput: "#737574",
|
|
569
|
+
diffAdd: "#a7a880",
|
|
570
|
+
diffRemove: "#c5979b",
|
|
571
|
+
toastSuccess: "#cece9d",
|
|
572
|
+
toastWarn: "#f1bcae",
|
|
573
|
+
toastError: "#f2babf",
|
|
574
|
+
userSurface: "#242726",
|
|
575
|
+
userText: "#e2e5e4",
|
|
576
|
+
userReviewSurface: "#191c17",
|
|
577
|
+
userReviewText: "#bfccb6",
|
|
578
|
+
userReviewTextMuted: "#9fa39b",
|
|
579
|
+
userReviewTextDim: "#7c7e7b",
|
|
612
580
|
},
|
|
613
581
|
variants: {
|
|
614
582
|
light: {
|
|
615
|
-
brandAccent: "#
|
|
616
|
-
textMuted: "#
|
|
617
|
-
textDim: "#
|
|
618
|
-
linkText: "#
|
|
619
|
-
thinkingText: "#
|
|
620
|
-
codeInlineText: "#
|
|
621
|
-
codeBlockText: "#
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
userReviewTextMuted: "#424f38",
|
|
647
|
-
userReviewTextDim: "#686e64",
|
|
583
|
+
brandAccent: "#008461",
|
|
584
|
+
textMuted: "#808985",
|
|
585
|
+
textDim: "#aeb2b0",
|
|
586
|
+
linkText: "#008461",
|
|
587
|
+
thinkingText: "#aeb2b0",
|
|
588
|
+
codeInlineText: "#008461",
|
|
589
|
+
codeBlockText: "#008461",
|
|
590
|
+
editorBorder: "#386756",
|
|
591
|
+
editorSubagentBorder: "#386756",
|
|
592
|
+
editorBorderBash: "#413100",
|
|
593
|
+
editorBorderRecording: "#5d1124",
|
|
594
|
+
editorPlaceholder: "#aeb2b0",
|
|
595
|
+
autocompleteSelectedSurface: "#f7f9f8",
|
|
596
|
+
autocompleteSelectedText: "#0a0e0d",
|
|
597
|
+
statusWarn: "#843823",
|
|
598
|
+
statusError: "#843442",
|
|
599
|
+
actionRunning: "#a05844",
|
|
600
|
+
actionSuccess: "#757322",
|
|
601
|
+
actionError: "#a0545f",
|
|
602
|
+
actionOutput: "#aeb2b0",
|
|
603
|
+
diffAdd: "#827f11",
|
|
604
|
+
diffRemove: "#b55967",
|
|
605
|
+
toastSuccess: "#767300",
|
|
606
|
+
toastWarn: "#ac4e35",
|
|
607
|
+
toastError: "#ac4a5a",
|
|
608
|
+
userSurface: "#f7f9f8",
|
|
609
|
+
userText: "#0a0e0d",
|
|
610
|
+
userReviewSurface: "#edefec",
|
|
611
|
+
userReviewText: "#1e320a",
|
|
612
|
+
userReviewTextMuted: "#464d40",
|
|
613
|
+
userReviewTextDim: "#696d67",
|
|
648
614
|
},
|
|
649
615
|
},
|
|
650
616
|
sourcePath: "builtin:themes/teal.json",
|
|
@@ -653,75 +619,71 @@ export const builtinThemes = [
|
|
|
653
619
|
{
|
|
654
620
|
id: "cyan",
|
|
655
621
|
tokens: {
|
|
656
|
-
brandAccent: "#
|
|
657
|
-
textMuted: "#
|
|
658
|
-
textDim: "#
|
|
659
|
-
linkText: "#
|
|
660
|
-
thinkingText: "#
|
|
661
|
-
codeInlineText: "#
|
|
662
|
-
codeBlockText: "#
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
userReviewTextMuted: "#9da498",
|
|
688
|
-
userReviewTextDim: "#7b7e79",
|
|
622
|
+
brandAccent: "#8ac4c1",
|
|
623
|
+
textMuted: "#9aa09f",
|
|
624
|
+
textDim: "#727575",
|
|
625
|
+
linkText: "#8ac4c1",
|
|
626
|
+
thinkingText: "#727575",
|
|
627
|
+
codeInlineText: "#8ac4c1",
|
|
628
|
+
codeBlockText: "#8ac4c1",
|
|
629
|
+
editorBorder: "#86a09f",
|
|
630
|
+
editorSubagentBorder: "#86a09f",
|
|
631
|
+
editorBorderBash: "#c4b790",
|
|
632
|
+
editorBorderRecording: "#d8aaae",
|
|
633
|
+
editorPlaceholder: "#727575",
|
|
634
|
+
autocompleteSelectedSurface: "#232727",
|
|
635
|
+
autocompleteSelectedText: "#e2e5e5",
|
|
636
|
+
statusWarn: "#b78d81",
|
|
637
|
+
statusError: "#b88b8f",
|
|
638
|
+
actionRunning: "#f0c6bb",
|
|
639
|
+
actionSuccess: "#d4d4ae",
|
|
640
|
+
actionError: "#f0c4c8",
|
|
641
|
+
actionOutput: "#727575",
|
|
642
|
+
diffAdd: "#a7a880",
|
|
643
|
+
diffRemove: "#c5979b",
|
|
644
|
+
toastSuccess: "#cece9d",
|
|
645
|
+
toastWarn: "#f1bcae",
|
|
646
|
+
toastError: "#f2babf",
|
|
647
|
+
userSurface: "#232727",
|
|
648
|
+
userText: "#e2e5e5",
|
|
649
|
+
userReviewSurface: "#191c17",
|
|
650
|
+
userReviewText: "#bfccb6",
|
|
651
|
+
userReviewTextMuted: "#9fa39b",
|
|
652
|
+
userReviewTextDim: "#7c7e7b",
|
|
689
653
|
},
|
|
690
654
|
variants: {
|
|
691
655
|
light: {
|
|
692
|
-
brandAccent: "#
|
|
693
|
-
textMuted: "#
|
|
694
|
-
textDim: "#
|
|
695
|
-
linkText: "#
|
|
696
|
-
thinkingText: "#
|
|
697
|
-
codeInlineText: "#
|
|
698
|
-
codeBlockText: "#
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
userReviewTextMuted: "#424f38",
|
|
724
|
-
userReviewTextDim: "#686e64",
|
|
656
|
+
brandAccent: "#00827f",
|
|
657
|
+
textMuted: "#7e8988",
|
|
658
|
+
textDim: "#adb2b2",
|
|
659
|
+
linkText: "#00827f",
|
|
660
|
+
thinkingText: "#adb2b2",
|
|
661
|
+
codeInlineText: "#00827f",
|
|
662
|
+
codeBlockText: "#00827f",
|
|
663
|
+
editorBorder: "#2e6765",
|
|
664
|
+
editorSubagentBorder: "#2e6765",
|
|
665
|
+
editorBorderBash: "#413100",
|
|
666
|
+
editorBorderRecording: "#5d1124",
|
|
667
|
+
editorPlaceholder: "#adb2b2",
|
|
668
|
+
autocompleteSelectedSurface: "#f6f9f9",
|
|
669
|
+
autocompleteSelectedText: "#0a0e0e",
|
|
670
|
+
statusWarn: "#843823",
|
|
671
|
+
statusError: "#843442",
|
|
672
|
+
actionRunning: "#a05844",
|
|
673
|
+
actionSuccess: "#757322",
|
|
674
|
+
actionError: "#a0545f",
|
|
675
|
+
actionOutput: "#adb2b2",
|
|
676
|
+
diffAdd: "#827f11",
|
|
677
|
+
diffRemove: "#b55967",
|
|
678
|
+
toastSuccess: "#767300",
|
|
679
|
+
toastWarn: "#ac4e35",
|
|
680
|
+
toastError: "#ac4a5a",
|
|
681
|
+
userSurface: "#f6f9f9",
|
|
682
|
+
userText: "#0a0e0e",
|
|
683
|
+
userReviewSurface: "#edefec",
|
|
684
|
+
userReviewText: "#1e320a",
|
|
685
|
+
userReviewTextMuted: "#464d40",
|
|
686
|
+
userReviewTextDim: "#696d67",
|
|
725
687
|
},
|
|
726
688
|
},
|
|
727
689
|
sourcePath: "builtin:themes/cyan.json",
|
|
@@ -730,75 +692,71 @@ export const builtinThemes = [
|
|
|
730
692
|
{
|
|
731
693
|
id: "azure",
|
|
732
694
|
tokens: {
|
|
733
|
-
brandAccent: "#
|
|
734
|
-
textMuted: "#
|
|
735
|
-
textDim: "#
|
|
736
|
-
linkText: "#
|
|
737
|
-
thinkingText: "#
|
|
738
|
-
codeInlineText: "#
|
|
739
|
-
codeBlockText: "#
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
userReviewTextMuted: "#9da498",
|
|
765
|
-
userReviewTextDim: "#7b7e79",
|
|
695
|
+
brandAccent: "#8bc2d0",
|
|
696
|
+
textMuted: "#9a9fa1",
|
|
697
|
+
textDim: "#737575",
|
|
698
|
+
linkText: "#8bc2d0",
|
|
699
|
+
thinkingText: "#737575",
|
|
700
|
+
codeInlineText: "#8bc2d0",
|
|
701
|
+
codeBlockText: "#8bc2d0",
|
|
702
|
+
editorBorder: "#869fa6",
|
|
703
|
+
editorSubagentBorder: "#869fa6",
|
|
704
|
+
editorBorderBash: "#c4b790",
|
|
705
|
+
editorBorderRecording: "#d8aaae",
|
|
706
|
+
editorPlaceholder: "#737575",
|
|
707
|
+
autocompleteSelectedSurface: "#232728",
|
|
708
|
+
autocompleteSelectedText: "#e2e5e6",
|
|
709
|
+
statusWarn: "#b78d81",
|
|
710
|
+
statusError: "#b88b8f",
|
|
711
|
+
actionRunning: "#f0c6bb",
|
|
712
|
+
actionSuccess: "#d4d4ae",
|
|
713
|
+
actionError: "#f0c4c8",
|
|
714
|
+
actionOutput: "#737575",
|
|
715
|
+
diffAdd: "#a7a880",
|
|
716
|
+
diffRemove: "#c5979b",
|
|
717
|
+
toastSuccess: "#cece9d",
|
|
718
|
+
toastWarn: "#f1bcae",
|
|
719
|
+
toastError: "#f2babf",
|
|
720
|
+
userSurface: "#232728",
|
|
721
|
+
userText: "#e2e5e6",
|
|
722
|
+
userReviewSurface: "#191c17",
|
|
723
|
+
userReviewText: "#bfccb6",
|
|
724
|
+
userReviewTextMuted: "#9fa39b",
|
|
725
|
+
userReviewTextDim: "#7c7e7b",
|
|
766
726
|
},
|
|
767
727
|
variants: {
|
|
768
728
|
light: {
|
|
769
|
-
brandAccent: "#
|
|
770
|
-
textMuted: "#
|
|
771
|
-
textDim: "#
|
|
772
|
-
linkText: "#
|
|
773
|
-
thinkingText: "#
|
|
774
|
-
codeInlineText: "#
|
|
775
|
-
codeBlockText: "#
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
userReviewTextMuted: "#424f38",
|
|
801
|
-
userReviewTextDim: "#686e64",
|
|
729
|
+
brandAccent: "#007d97",
|
|
730
|
+
textMuted: "#7e888b",
|
|
731
|
+
textDim: "#adb2b3",
|
|
732
|
+
linkText: "#007d97",
|
|
733
|
+
thinkingText: "#adb2b3",
|
|
734
|
+
codeInlineText: "#007d97",
|
|
735
|
+
codeBlockText: "#007d97",
|
|
736
|
+
editorBorder: "#306572",
|
|
737
|
+
editorSubagentBorder: "#306572",
|
|
738
|
+
editorBorderBash: "#413100",
|
|
739
|
+
editorBorderRecording: "#5d1124",
|
|
740
|
+
editorPlaceholder: "#adb2b3",
|
|
741
|
+
autocompleteSelectedSurface: "#f6f9fa",
|
|
742
|
+
autocompleteSelectedText: "#0a0e0f",
|
|
743
|
+
statusWarn: "#843823",
|
|
744
|
+
statusError: "#843442",
|
|
745
|
+
actionRunning: "#a05844",
|
|
746
|
+
actionSuccess: "#757322",
|
|
747
|
+
actionError: "#a0545f",
|
|
748
|
+
actionOutput: "#adb2b3",
|
|
749
|
+
diffAdd: "#827f11",
|
|
750
|
+
diffRemove: "#b55967",
|
|
751
|
+
toastSuccess: "#767300",
|
|
752
|
+
toastWarn: "#ac4e35",
|
|
753
|
+
toastError: "#ac4a5a",
|
|
754
|
+
userSurface: "#f6f9fa",
|
|
755
|
+
userText: "#0a0e0f",
|
|
756
|
+
userReviewSurface: "#edefec",
|
|
757
|
+
userReviewText: "#1e320a",
|
|
758
|
+
userReviewTextMuted: "#464d40",
|
|
759
|
+
userReviewTextDim: "#696d67",
|
|
802
760
|
},
|
|
803
761
|
},
|
|
804
762
|
sourcePath: "builtin:themes/azure.json",
|
|
@@ -807,75 +765,71 @@ export const builtinThemes = [
|
|
|
807
765
|
{
|
|
808
766
|
id: "cobalt",
|
|
809
767
|
tokens: {
|
|
810
|
-
brandAccent: "#
|
|
811
|
-
textMuted: "#
|
|
812
|
-
textDim: "#
|
|
813
|
-
linkText: "#
|
|
814
|
-
thinkingText: "#
|
|
815
|
-
codeInlineText: "#
|
|
816
|
-
codeBlockText: "#
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
userReviewTextMuted: "#9da498",
|
|
842
|
-
userReviewTextDim: "#7b7e79",
|
|
768
|
+
brandAccent: "#95bdda",
|
|
769
|
+
textMuted: "#9b9fa2",
|
|
770
|
+
textDim: "#737576",
|
|
771
|
+
linkText: "#95bdda",
|
|
772
|
+
thinkingText: "#737576",
|
|
773
|
+
codeInlineText: "#95bdda",
|
|
774
|
+
codeBlockText: "#95bdda",
|
|
775
|
+
editorBorder: "#8a9dab",
|
|
776
|
+
editorSubagentBorder: "#8a9dab",
|
|
777
|
+
editorBorderBash: "#c4b790",
|
|
778
|
+
editorBorderRecording: "#d8aaae",
|
|
779
|
+
editorPlaceholder: "#737576",
|
|
780
|
+
autocompleteSelectedSurface: "#242729",
|
|
781
|
+
autocompleteSelectedText: "#e2e5e7",
|
|
782
|
+
statusWarn: "#b78d81",
|
|
783
|
+
statusError: "#b88b8f",
|
|
784
|
+
actionRunning: "#f0c6bb",
|
|
785
|
+
actionSuccess: "#d4d4ae",
|
|
786
|
+
actionError: "#f0c4c8",
|
|
787
|
+
actionOutput: "#737576",
|
|
788
|
+
diffAdd: "#a7a880",
|
|
789
|
+
diffRemove: "#c5979b",
|
|
790
|
+
toastSuccess: "#cece9d",
|
|
791
|
+
toastWarn: "#f1bcae",
|
|
792
|
+
toastError: "#f2babf",
|
|
793
|
+
userSurface: "#242729",
|
|
794
|
+
userText: "#e2e5e7",
|
|
795
|
+
userReviewSurface: "#191c17",
|
|
796
|
+
userReviewText: "#bfccb6",
|
|
797
|
+
userReviewTextMuted: "#9fa39b",
|
|
798
|
+
userReviewTextDim: "#7c7e7b",
|
|
843
799
|
},
|
|
844
800
|
variants: {
|
|
845
801
|
light: {
|
|
846
|
-
brandAccent: "#
|
|
847
|
-
textMuted: "#
|
|
848
|
-
textDim: "#
|
|
849
|
-
linkText: "#
|
|
850
|
-
thinkingText: "#
|
|
851
|
-
codeInlineText: "#
|
|
852
|
-
codeBlockText: "#
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
userReviewTextMuted: "#424f38",
|
|
878
|
-
userReviewTextDim: "#686e64",
|
|
802
|
+
brandAccent: "#0d76ad",
|
|
803
|
+
textMuted: "#80878d",
|
|
804
|
+
textDim: "#aeb2b4",
|
|
805
|
+
linkText: "#0d76ad",
|
|
806
|
+
thinkingText: "#aeb2b4",
|
|
807
|
+
codeInlineText: "#0d76ad",
|
|
808
|
+
codeBlockText: "#0d76ad",
|
|
809
|
+
editorBorder: "#3b617b",
|
|
810
|
+
editorSubagentBorder: "#3b617b",
|
|
811
|
+
editorBorderBash: "#413100",
|
|
812
|
+
editorBorderRecording: "#5d1124",
|
|
813
|
+
editorPlaceholder: "#aeb2b4",
|
|
814
|
+
autocompleteSelectedSurface: "#f7f9fa",
|
|
815
|
+
autocompleteSelectedText: "#0b0e10",
|
|
816
|
+
statusWarn: "#843823",
|
|
817
|
+
statusError: "#843442",
|
|
818
|
+
actionRunning: "#a05844",
|
|
819
|
+
actionSuccess: "#757322",
|
|
820
|
+
actionError: "#a0545f",
|
|
821
|
+
actionOutput: "#aeb2b4",
|
|
822
|
+
diffAdd: "#827f11",
|
|
823
|
+
diffRemove: "#b55967",
|
|
824
|
+
toastSuccess: "#767300",
|
|
825
|
+
toastWarn: "#ac4e35",
|
|
826
|
+
toastError: "#ac4a5a",
|
|
827
|
+
userSurface: "#f7f9fa",
|
|
828
|
+
userText: "#0b0e10",
|
|
829
|
+
userReviewSurface: "#edefec",
|
|
830
|
+
userReviewText: "#1e320a",
|
|
831
|
+
userReviewTextMuted: "#464d40",
|
|
832
|
+
userReviewTextDim: "#696d67",
|
|
879
833
|
},
|
|
880
834
|
},
|
|
881
835
|
sourcePath: "builtin:themes/cobalt.json",
|
|
@@ -884,75 +838,71 @@ export const builtinThemes = [
|
|
|
884
838
|
{
|
|
885
839
|
id: "violet",
|
|
886
840
|
tokens: {
|
|
887
|
-
brandAccent: "#
|
|
888
|
-
textMuted: "#
|
|
889
|
-
textDim: "#
|
|
890
|
-
linkText: "#
|
|
891
|
-
thinkingText: "#
|
|
892
|
-
codeInlineText: "#
|
|
893
|
-
codeBlockText: "#
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
userReviewTextMuted: "#9da498",
|
|
919
|
-
userReviewTextDim: "#7b7e79",
|
|
841
|
+
brandAccent: "#a4b8df",
|
|
842
|
+
textMuted: "#9c9ea2",
|
|
843
|
+
textDim: "#737476",
|
|
844
|
+
linkText: "#a4b8df",
|
|
845
|
+
thinkingText: "#737476",
|
|
846
|
+
codeInlineText: "#a4b8df",
|
|
847
|
+
codeBlockText: "#a4b8df",
|
|
848
|
+
editorBorder: "#919bad",
|
|
849
|
+
editorSubagentBorder: "#919bad",
|
|
850
|
+
editorBorderBash: "#c4b790",
|
|
851
|
+
editorBorderRecording: "#d8aaae",
|
|
852
|
+
editorPlaceholder: "#737476",
|
|
853
|
+
autocompleteSelectedSurface: "#252629",
|
|
854
|
+
autocompleteSelectedText: "#e3e4e7",
|
|
855
|
+
statusWarn: "#b78d81",
|
|
856
|
+
statusError: "#b88b8f",
|
|
857
|
+
actionRunning: "#f0c6bb",
|
|
858
|
+
actionSuccess: "#d4d4ae",
|
|
859
|
+
actionError: "#f0c4c8",
|
|
860
|
+
actionOutput: "#737476",
|
|
861
|
+
diffAdd: "#a7a880",
|
|
862
|
+
diffRemove: "#c5979b",
|
|
863
|
+
toastSuccess: "#cece9d",
|
|
864
|
+
toastWarn: "#f1bcae",
|
|
865
|
+
toastError: "#f2babf",
|
|
866
|
+
userSurface: "#252629",
|
|
867
|
+
userText: "#e3e4e7",
|
|
868
|
+
userReviewSurface: "#191c17",
|
|
869
|
+
userReviewText: "#bfccb6",
|
|
870
|
+
userReviewTextMuted: "#9fa39b",
|
|
871
|
+
userReviewTextDim: "#7c7e7b",
|
|
920
872
|
},
|
|
921
873
|
variants: {
|
|
922
874
|
light: {
|
|
923
|
-
brandAccent: "#
|
|
924
|
-
textMuted: "#
|
|
925
|
-
textDim: "#
|
|
926
|
-
linkText: "#
|
|
927
|
-
thinkingText: "#
|
|
928
|
-
codeInlineText: "#
|
|
929
|
-
codeBlockText: "#
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
userReviewTextMuted: "#424f38",
|
|
955
|
-
userReviewTextDim: "#686e64",
|
|
875
|
+
brandAccent: "#4a6cb4",
|
|
876
|
+
textMuted: "#82868e",
|
|
877
|
+
textDim: "#afb1b5",
|
|
878
|
+
linkText: "#4a6cb4",
|
|
879
|
+
thinkingText: "#afb1b5",
|
|
880
|
+
codeInlineText: "#4a6cb4",
|
|
881
|
+
codeBlockText: "#4a6cb4",
|
|
882
|
+
editorBorder: "#4b5c7f",
|
|
883
|
+
editorSubagentBorder: "#4b5c7f",
|
|
884
|
+
editorBorderBash: "#413100",
|
|
885
|
+
editorBorderRecording: "#5d1124",
|
|
886
|
+
editorPlaceholder: "#afb1b5",
|
|
887
|
+
autocompleteSelectedSurface: "#f7f8fa",
|
|
888
|
+
autocompleteSelectedText: "#0c0d10",
|
|
889
|
+
statusWarn: "#843823",
|
|
890
|
+
statusError: "#843442",
|
|
891
|
+
actionRunning: "#a05844",
|
|
892
|
+
actionSuccess: "#757322",
|
|
893
|
+
actionError: "#a0545f",
|
|
894
|
+
actionOutput: "#afb1b5",
|
|
895
|
+
diffAdd: "#827f11",
|
|
896
|
+
diffRemove: "#b55967",
|
|
897
|
+
toastSuccess: "#767300",
|
|
898
|
+
toastWarn: "#ac4e35",
|
|
899
|
+
toastError: "#ac4a5a",
|
|
900
|
+
userSurface: "#f7f8fa",
|
|
901
|
+
userText: "#0c0d10",
|
|
902
|
+
userReviewSurface: "#edefec",
|
|
903
|
+
userReviewText: "#1e320a",
|
|
904
|
+
userReviewTextMuted: "#464d40",
|
|
905
|
+
userReviewTextDim: "#696d67",
|
|
956
906
|
},
|
|
957
907
|
},
|
|
958
908
|
sourcePath: "builtin:themes/violet.json",
|
|
@@ -961,75 +911,71 @@ export const builtinThemes = [
|
|
|
961
911
|
{
|
|
962
912
|
id: "purple",
|
|
963
913
|
tokens: {
|
|
964
|
-
brandAccent: "#
|
|
965
|
-
textMuted: "#
|
|
966
|
-
textDim: "#
|
|
967
|
-
linkText: "#
|
|
968
|
-
thinkingText: "#
|
|
969
|
-
codeInlineText: "#
|
|
970
|
-
codeBlockText: "#
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
userReviewTextMuted: "#9da498",
|
|
996
|
-
userReviewTextDim: "#7b7e79",
|
|
914
|
+
brandAccent: "#b5b2dc",
|
|
915
|
+
textMuted: "#9e9ea2",
|
|
916
|
+
textDim: "#747476",
|
|
917
|
+
linkText: "#b5b2dc",
|
|
918
|
+
thinkingText: "#747476",
|
|
919
|
+
codeInlineText: "#b5b2dc",
|
|
920
|
+
codeBlockText: "#b5b2dc",
|
|
921
|
+
editorBorder: "#9998ac",
|
|
922
|
+
editorSubagentBorder: "#9998ac",
|
|
923
|
+
editorBorderBash: "#c4b790",
|
|
924
|
+
editorBorderRecording: "#d8aaae",
|
|
925
|
+
editorPlaceholder: "#747476",
|
|
926
|
+
autocompleteSelectedSurface: "#262629",
|
|
927
|
+
autocompleteSelectedText: "#e4e4e7",
|
|
928
|
+
statusWarn: "#b78d81",
|
|
929
|
+
statusError: "#b88b8f",
|
|
930
|
+
actionRunning: "#f0c6bb",
|
|
931
|
+
actionSuccess: "#d4d4ae",
|
|
932
|
+
actionError: "#f0c4c8",
|
|
933
|
+
actionOutput: "#747476",
|
|
934
|
+
diffAdd: "#a7a880",
|
|
935
|
+
diffRemove: "#c5979b",
|
|
936
|
+
toastSuccess: "#cece9d",
|
|
937
|
+
toastWarn: "#f1bcae",
|
|
938
|
+
toastError: "#f2babf",
|
|
939
|
+
userSurface: "#262629",
|
|
940
|
+
userText: "#e4e4e7",
|
|
941
|
+
userReviewSurface: "#191c17",
|
|
942
|
+
userReviewText: "#bfccb6",
|
|
943
|
+
userReviewTextMuted: "#9fa39b",
|
|
944
|
+
userReviewTextDim: "#7c7e7b",
|
|
997
945
|
},
|
|
998
946
|
variants: {
|
|
999
947
|
light: {
|
|
1000
|
-
brandAccent: "#
|
|
1001
|
-
textMuted: "#
|
|
1002
|
-
textDim: "#
|
|
1003
|
-
linkText: "#
|
|
1004
|
-
thinkingText: "#
|
|
1005
|
-
codeInlineText: "#
|
|
1006
|
-
codeBlockText: "#
|
|
1007
|
-
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
|
|
1031
|
-
userReviewTextMuted: "#424f38",
|
|
1032
|
-
userReviewTextDim: "#686e64",
|
|
948
|
+
brandAccent: "#6c61b0",
|
|
949
|
+
textMuted: "#85858d",
|
|
950
|
+
textDim: "#b1b0b5",
|
|
951
|
+
linkText: "#6c61b0",
|
|
952
|
+
thinkingText: "#b1b0b5",
|
|
953
|
+
codeInlineText: "#6c61b0",
|
|
954
|
+
codeBlockText: "#6c61b0",
|
|
955
|
+
editorBorder: "#5a577c",
|
|
956
|
+
editorSubagentBorder: "#5a577c",
|
|
957
|
+
editorBorderBash: "#413100",
|
|
958
|
+
editorBorderRecording: "#5d1124",
|
|
959
|
+
editorPlaceholder: "#b1b0b5",
|
|
960
|
+
autocompleteSelectedSurface: "#f8f8fa",
|
|
961
|
+
autocompleteSelectedText: "#0d0d10",
|
|
962
|
+
statusWarn: "#843823",
|
|
963
|
+
statusError: "#843442",
|
|
964
|
+
actionRunning: "#a05844",
|
|
965
|
+
actionSuccess: "#757322",
|
|
966
|
+
actionError: "#a0545f",
|
|
967
|
+
actionOutput: "#b1b0b5",
|
|
968
|
+
diffAdd: "#827f11",
|
|
969
|
+
diffRemove: "#b55967",
|
|
970
|
+
toastSuccess: "#767300",
|
|
971
|
+
toastWarn: "#ac4e35",
|
|
972
|
+
toastError: "#ac4a5a",
|
|
973
|
+
userSurface: "#f8f8fa",
|
|
974
|
+
userText: "#0d0d10",
|
|
975
|
+
userReviewSurface: "#edefec",
|
|
976
|
+
userReviewText: "#1e320a",
|
|
977
|
+
userReviewTextMuted: "#464d40",
|
|
978
|
+
userReviewTextDim: "#696d67",
|
|
1033
979
|
},
|
|
1034
980
|
},
|
|
1035
981
|
sourcePath: "builtin:themes/purple.json",
|
|
@@ -1038,75 +984,71 @@ export const builtinThemes = [
|
|
|
1038
984
|
{
|
|
1039
985
|
id: "magenta",
|
|
1040
986
|
tokens: {
|
|
1041
|
-
brandAccent: "#
|
|
1042
|
-
textMuted: "#
|
|
1043
|
-
textDim: "#
|
|
1044
|
-
linkText: "#
|
|
1045
|
-
thinkingText: "#
|
|
1046
|
-
codeInlineText: "#
|
|
1047
|
-
codeBlockText: "#
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
|
|
1061
|
-
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
userReviewTextMuted: "#9da498",
|
|
1073
|
-
userReviewTextDim: "#7b7e79",
|
|
987
|
+
brandAccent: "#c4add4",
|
|
988
|
+
textMuted: "#a09da1",
|
|
989
|
+
textDim: "#757476",
|
|
990
|
+
linkText: "#c4add4",
|
|
991
|
+
thinkingText: "#757476",
|
|
992
|
+
codeInlineText: "#c4add4",
|
|
993
|
+
codeBlockText: "#c4add4",
|
|
994
|
+
editorBorder: "#a195a8",
|
|
995
|
+
editorSubagentBorder: "#a195a8",
|
|
996
|
+
editorBorderBash: "#c4b790",
|
|
997
|
+
editorBorderRecording: "#d8aaae",
|
|
998
|
+
editorPlaceholder: "#757476",
|
|
999
|
+
autocompleteSelectedSurface: "#272629",
|
|
1000
|
+
autocompleteSelectedText: "#e5e4e6",
|
|
1001
|
+
statusWarn: "#b78d81",
|
|
1002
|
+
statusError: "#b88b8f",
|
|
1003
|
+
actionRunning: "#f0c6bb",
|
|
1004
|
+
actionSuccess: "#d4d4ae",
|
|
1005
|
+
actionError: "#f0c4c8",
|
|
1006
|
+
actionOutput: "#757476",
|
|
1007
|
+
diffAdd: "#a7a880",
|
|
1008
|
+
diffRemove: "#c5979b",
|
|
1009
|
+
toastSuccess: "#cece9d",
|
|
1010
|
+
toastWarn: "#f1bcae",
|
|
1011
|
+
toastError: "#f2babf",
|
|
1012
|
+
userSurface: "#272629",
|
|
1013
|
+
userText: "#e5e4e6",
|
|
1014
|
+
userReviewSurface: "#191c17",
|
|
1015
|
+
userReviewText: "#bfccb6",
|
|
1016
|
+
userReviewTextMuted: "#9fa39b",
|
|
1017
|
+
userReviewTextDim: "#7c7e7b",
|
|
1074
1018
|
},
|
|
1075
1019
|
variants: {
|
|
1076
1020
|
light: {
|
|
1077
|
-
brandAccent: "#
|
|
1078
|
-
textMuted: "#
|
|
1079
|
-
textDim: "#
|
|
1080
|
-
linkText: "#
|
|
1081
|
-
thinkingText: "#
|
|
1082
|
-
codeInlineText: "#
|
|
1083
|
-
codeBlockText: "#
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
|
|
1094
|
-
|
|
1095
|
-
|
|
1096
|
-
|
|
1097
|
-
|
|
1098
|
-
|
|
1099
|
-
|
|
1100
|
-
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
userReviewTextMuted: "#424f38",
|
|
1109
|
-
userReviewTextDim: "#686e64",
|
|
1021
|
+
brandAccent: "#8658a1",
|
|
1022
|
+
textMuted: "#89848b",
|
|
1023
|
+
textDim: "#b2b0b4",
|
|
1024
|
+
linkText: "#8658a1",
|
|
1025
|
+
thinkingText: "#b2b0b4",
|
|
1026
|
+
codeInlineText: "#8658a1",
|
|
1027
|
+
codeBlockText: "#8658a1",
|
|
1028
|
+
editorBorder: "#685275",
|
|
1029
|
+
editorSubagentBorder: "#685275",
|
|
1030
|
+
editorBorderBash: "#413100",
|
|
1031
|
+
editorBorderRecording: "#5d1124",
|
|
1032
|
+
editorPlaceholder: "#b2b0b4",
|
|
1033
|
+
autocompleteSelectedSurface: "#f9f8fa",
|
|
1034
|
+
autocompleteSelectedText: "#0e0c10",
|
|
1035
|
+
statusWarn: "#843823",
|
|
1036
|
+
statusError: "#843442",
|
|
1037
|
+
actionRunning: "#a05844",
|
|
1038
|
+
actionSuccess: "#757322",
|
|
1039
|
+
actionError: "#a0545f",
|
|
1040
|
+
actionOutput: "#b2b0b4",
|
|
1041
|
+
diffAdd: "#827f11",
|
|
1042
|
+
diffRemove: "#b55967",
|
|
1043
|
+
toastSuccess: "#767300",
|
|
1044
|
+
toastWarn: "#ac4e35",
|
|
1045
|
+
toastError: "#ac4a5a",
|
|
1046
|
+
userSurface: "#f9f8fa",
|
|
1047
|
+
userText: "#0e0c10",
|
|
1048
|
+
userReviewSurface: "#edefec",
|
|
1049
|
+
userReviewText: "#1e320a",
|
|
1050
|
+
userReviewTextMuted: "#464d40",
|
|
1051
|
+
userReviewTextDim: "#696d67",
|
|
1110
1052
|
},
|
|
1111
1053
|
},
|
|
1112
1054
|
sourcePath: "builtin:themes/magenta.json",
|
|
@@ -1115,75 +1057,71 @@ export const builtinThemes = [
|
|
|
1115
1057
|
{
|
|
1116
1058
|
id: "rose",
|
|
1117
1059
|
tokens: {
|
|
1118
|
-
brandAccent: "#
|
|
1119
|
-
textMuted: "#
|
|
1120
|
-
textDim: "#
|
|
1121
|
-
linkText: "#
|
|
1122
|
-
thinkingText: "#
|
|
1123
|
-
codeInlineText: "#
|
|
1124
|
-
codeBlockText: "#
|
|
1125
|
-
|
|
1126
|
-
|
|
1127
|
-
|
|
1128
|
-
|
|
1129
|
-
|
|
1130
|
-
|
|
1131
|
-
|
|
1132
|
-
|
|
1133
|
-
|
|
1134
|
-
|
|
1135
|
-
|
|
1136
|
-
|
|
1137
|
-
|
|
1138
|
-
|
|
1139
|
-
|
|
1140
|
-
|
|
1141
|
-
|
|
1142
|
-
|
|
1143
|
-
|
|
1144
|
-
|
|
1145
|
-
|
|
1146
|
-
|
|
1147
|
-
|
|
1148
|
-
|
|
1149
|
-
userReviewTextMuted: "#9da498",
|
|
1150
|
-
userReviewTextDim: "#7b7e79",
|
|
1060
|
+
brandAccent: "#d1a9c6",
|
|
1061
|
+
textMuted: "#a19da0",
|
|
1062
|
+
textDim: "#767475",
|
|
1063
|
+
linkText: "#d1a9c6",
|
|
1064
|
+
thinkingText: "#767475",
|
|
1065
|
+
codeInlineText: "#d1a9c6",
|
|
1066
|
+
codeBlockText: "#d1a9c6",
|
|
1067
|
+
editorBorder: "#a794a1",
|
|
1068
|
+
editorSubagentBorder: "#a794a1",
|
|
1069
|
+
editorBorderBash: "#c4b790",
|
|
1070
|
+
editorBorderRecording: "#d8aaae",
|
|
1071
|
+
editorPlaceholder: "#767475",
|
|
1072
|
+
autocompleteSelectedSurface: "#282527",
|
|
1073
|
+
autocompleteSelectedText: "#e6e4e5",
|
|
1074
|
+
statusWarn: "#b78d81",
|
|
1075
|
+
statusError: "#b88b8f",
|
|
1076
|
+
actionRunning: "#f0c6bb",
|
|
1077
|
+
actionSuccess: "#d4d4ae",
|
|
1078
|
+
actionError: "#f0c4c8",
|
|
1079
|
+
actionOutput: "#767475",
|
|
1080
|
+
diffAdd: "#a7a880",
|
|
1081
|
+
diffRemove: "#c5979b",
|
|
1082
|
+
toastSuccess: "#cece9d",
|
|
1083
|
+
toastWarn: "#f1bcae",
|
|
1084
|
+
toastError: "#f2babf",
|
|
1085
|
+
userSurface: "#282527",
|
|
1086
|
+
userText: "#e6e4e5",
|
|
1087
|
+
userReviewSurface: "#191c17",
|
|
1088
|
+
userReviewText: "#bfccb6",
|
|
1089
|
+
userReviewTextMuted: "#9fa39b",
|
|
1090
|
+
userReviewTextDim: "#7c7e7b",
|
|
1151
1091
|
},
|
|
1152
1092
|
variants: {
|
|
1153
1093
|
light: {
|
|
1154
|
-
brandAccent: "#
|
|
1155
|
-
textMuted: "#
|
|
1156
|
-
textDim: "#
|
|
1157
|
-
linkText: "#
|
|
1158
|
-
thinkingText: "#
|
|
1159
|
-
codeInlineText: "#
|
|
1160
|
-
codeBlockText: "#
|
|
1161
|
-
|
|
1162
|
-
|
|
1163
|
-
|
|
1164
|
-
|
|
1165
|
-
|
|
1166
|
-
|
|
1167
|
-
|
|
1168
|
-
|
|
1169
|
-
|
|
1170
|
-
|
|
1171
|
-
|
|
1172
|
-
|
|
1173
|
-
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
|
|
1181
|
-
|
|
1182
|
-
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
userReviewTextMuted: "#424f38",
|
|
1186
|
-
userReviewTextDim: "#686e64",
|
|
1094
|
+
brandAccent: "#995189",
|
|
1095
|
+
textMuted: "#8b8389",
|
|
1096
|
+
textDim: "#b4b0b2",
|
|
1097
|
+
linkText: "#995189",
|
|
1098
|
+
thinkingText: "#b4b0b2",
|
|
1099
|
+
codeInlineText: "#995189",
|
|
1100
|
+
codeBlockText: "#995189",
|
|
1101
|
+
editorBorder: "#724f69",
|
|
1102
|
+
editorSubagentBorder: "#724f69",
|
|
1103
|
+
editorBorderBash: "#413100",
|
|
1104
|
+
editorBorderRecording: "#5d1124",
|
|
1105
|
+
editorPlaceholder: "#b4b0b2",
|
|
1106
|
+
autocompleteSelectedSurface: "#faf8f9",
|
|
1107
|
+
autocompleteSelectedText: "#0f0c0e",
|
|
1108
|
+
statusWarn: "#843823",
|
|
1109
|
+
statusError: "#843442",
|
|
1110
|
+
actionRunning: "#a05844",
|
|
1111
|
+
actionSuccess: "#757322",
|
|
1112
|
+
actionError: "#a0545f",
|
|
1113
|
+
actionOutput: "#b4b0b2",
|
|
1114
|
+
diffAdd: "#827f11",
|
|
1115
|
+
diffRemove: "#b55967",
|
|
1116
|
+
toastSuccess: "#767300",
|
|
1117
|
+
toastWarn: "#ac4e35",
|
|
1118
|
+
toastError: "#ac4a5a",
|
|
1119
|
+
userSurface: "#faf8f9",
|
|
1120
|
+
userText: "#0f0c0e",
|
|
1121
|
+
userReviewSurface: "#edefec",
|
|
1122
|
+
userReviewText: "#1e320a",
|
|
1123
|
+
userReviewTextMuted: "#464d40",
|
|
1124
|
+
userReviewTextDim: "#696d67",
|
|
1187
1125
|
},
|
|
1188
1126
|
},
|
|
1189
1127
|
sourcePath: "builtin:themes/rose.json",
|