@ikie-dev/cli 9.8.6 → 9.8.7
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/package.json +1 -1
- package/scripts/prepublish-npm.js +24 -8
- package/src/core/export-html/ansi-to-html.js +249 -0
- package/src/core/export-html/index.js +226 -0
- package/src/core/export-html/template.css +1066 -0
- package/src/core/export-html/template.html +66 -0
- package/src/core/export-html/template.js +1864 -0
- package/src/core/export-html/tool-renderer.js +108 -0
- package/src/core/export-html/vendor/highlight.min.js +1213 -0
- package/src/core/export-html/vendor/marked.min.js +6 -0
- package/src/modes/interactive/theme/catppuccin-macchiato.json +82 -0
- package/src/modes/interactive/theme/dark.json +87 -0
- package/src/modes/interactive/theme/dracula.json +79 -0
- package/src/modes/interactive/theme/github-dark.json +80 -0
- package/src/modes/interactive/theme/github-light.json +80 -0
- package/src/modes/interactive/theme/ikie-light.json +92 -0
- package/src/modes/interactive/theme/ikie-minimal.json +79 -0
- package/src/modes/interactive/theme/ikie.json +96 -0
- package/src/modes/interactive/theme/light.json +86 -0
- package/src/modes/interactive/theme/lucent-orng.json +79 -0
- package/src/modes/interactive/theme/monokai.json +78 -0
- package/src/modes/interactive/theme/neon.json +87 -0
- package/src/modes/interactive/theme/night-owl.json +87 -0
- package/src/modes/interactive/theme/nord.json +82 -0
- package/src/modes/interactive/theme/one-dark.json +79 -0
- package/src/modes/interactive/theme/solarized-dark.json +81 -0
- package/src/modes/interactive/theme/solarized-light.json +81 -0
- package/src/modes/interactive/theme/theme-schema.json +335 -0
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "one-dark",
|
|
3
|
+
"vars": {
|
|
4
|
+
"bg-primary": "#282c34",
|
|
5
|
+
"bg-secondary": "#2c313c",
|
|
6
|
+
"bg-tertiary": "#3a3f4b",
|
|
7
|
+
"fg-primary": "#abb2bf",
|
|
8
|
+
"accent-blue": "#61afef",
|
|
9
|
+
"accent-cyan": "#56b6c2",
|
|
10
|
+
"accent-green": "#98c379",
|
|
11
|
+
"accent-yellow": "#e5c07b",
|
|
12
|
+
"accent-orange": "#d19a66",
|
|
13
|
+
"accent-red": "#e06c75",
|
|
14
|
+
"accent-purple": "#c678dd",
|
|
15
|
+
"muted-grey": "#5c6370",
|
|
16
|
+
"muted-dark": "#3e4452"
|
|
17
|
+
},
|
|
18
|
+
"colors": {
|
|
19
|
+
"text": "fg-primary",
|
|
20
|
+
"textBg": "bg-primary",
|
|
21
|
+
"accent": "accent-purple",
|
|
22
|
+
"success": "accent-green",
|
|
23
|
+
"error": "accent-red",
|
|
24
|
+
"warning": "accent-yellow",
|
|
25
|
+
"dim": "muted-grey",
|
|
26
|
+
"muted": "muted-grey",
|
|
27
|
+
"border": "muted-dark",
|
|
28
|
+
"borderAccent": "accent-blue",
|
|
29
|
+
"borderMuted": "muted-grey",
|
|
30
|
+
"selectedBg": "bg-tertiary",
|
|
31
|
+
"userMessageBg": "bg-tertiary",
|
|
32
|
+
"userMessageText": "fg-primary",
|
|
33
|
+
"customMessageBg": "bg-secondary",
|
|
34
|
+
"customMessageText": "fg-primary",
|
|
35
|
+
"customMessageLabel": "accent-purple",
|
|
36
|
+
"toolPendingBg": "bg-tertiary",
|
|
37
|
+
"toolSuccessBg": "bg-tertiary",
|
|
38
|
+
"toolErrorBg": "bg-primary",
|
|
39
|
+
"toolTitle": "fg-primary",
|
|
40
|
+
"toolOutput": "fg-primary",
|
|
41
|
+
"mdHeading": "accent-purple",
|
|
42
|
+
"mdLink": "accent-blue",
|
|
43
|
+
"mdLinkUrl": "accent-cyan",
|
|
44
|
+
"mdCode": "accent-green",
|
|
45
|
+
"mdCodeBlock": "fg-primary",
|
|
46
|
+
"mdCodeBlockBorder": "muted-dark",
|
|
47
|
+
"mdQuote": "muted-grey",
|
|
48
|
+
"mdQuoteBorder": "muted-grey",
|
|
49
|
+
"mdHr": "muted-dark",
|
|
50
|
+
"mdListBullet": "accent-blue",
|
|
51
|
+
"toolDiffAdded": "accent-green",
|
|
52
|
+
"toolDiffRemoved": "accent-red",
|
|
53
|
+
"toolDiffContext": "muted-grey",
|
|
54
|
+
"syntaxComment": "muted-grey",
|
|
55
|
+
"syntaxKeyword": "accent-purple",
|
|
56
|
+
"syntaxFunction": "accent-blue",
|
|
57
|
+
"syntaxVariable": "accent-red",
|
|
58
|
+
"syntaxString": "accent-green",
|
|
59
|
+
"syntaxNumber": "accent-orange",
|
|
60
|
+
"syntaxType": "accent-yellow",
|
|
61
|
+
"syntaxOperator": "accent-cyan",
|
|
62
|
+
"syntaxPunctuation": "fg-primary",
|
|
63
|
+
"thinkingOff": "muted-dark",
|
|
64
|
+
"thinkingMinimal": "muted-grey",
|
|
65
|
+
"thinkingLow": "accent-purple",
|
|
66
|
+
"thinkingMedium": "accent-blue",
|
|
67
|
+
"thinkingHigh": "accent-cyan",
|
|
68
|
+
"thinkingXhigh": "accent-yellow",
|
|
69
|
+
"thinkingText": "fg-primary",
|
|
70
|
+
"bashMode": "accent-green",
|
|
71
|
+
"oscFg": "fg-primary",
|
|
72
|
+
"oscBg": "bg-primary"
|
|
73
|
+
},
|
|
74
|
+
"export": {
|
|
75
|
+
"pageBg": "#282c34",
|
|
76
|
+
"cardBg": "#2a2f38",
|
|
77
|
+
"infoBg": "#2c313c"
|
|
78
|
+
}
|
|
79
|
+
}
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "solarized-dark",
|
|
3
|
+
"vars": {
|
|
4
|
+
"bg-primary": "#002b36",
|
|
5
|
+
"bg-secondary": "#073642",
|
|
6
|
+
"bg-tertiary": "#0e4455",
|
|
7
|
+
"fg-primary": "#93a1a1",
|
|
8
|
+
"fg-secondary": "#839496",
|
|
9
|
+
"accent-violet": "#6c71c4",
|
|
10
|
+
"accent-magenta": "#d33682",
|
|
11
|
+
"accent-blue": "#268bd2",
|
|
12
|
+
"accent-cyan": "#2aa198",
|
|
13
|
+
"accent-green": "#859900",
|
|
14
|
+
"accent-yellow": "#b58900",
|
|
15
|
+
"accent-orange": "#cb4b16",
|
|
16
|
+
"accent-red": "#dc322f",
|
|
17
|
+
"muted-grey": "#657b83",
|
|
18
|
+
"muted-dark": "#073642"
|
|
19
|
+
},
|
|
20
|
+
"colors": {
|
|
21
|
+
"text": "fg-primary",
|
|
22
|
+
"textBg": "bg-primary",
|
|
23
|
+
"accent": "accent-blue",
|
|
24
|
+
"success": "accent-green",
|
|
25
|
+
"error": "accent-red",
|
|
26
|
+
"warning": "accent-yellow",
|
|
27
|
+
"dim": "muted-grey",
|
|
28
|
+
"muted": "muted-grey",
|
|
29
|
+
"border": "muted-dark",
|
|
30
|
+
"borderAccent": "accent-blue",
|
|
31
|
+
"borderMuted": "muted-grey",
|
|
32
|
+
"selectedBg": "bg-secondary",
|
|
33
|
+
"userMessageBg": "bg-secondary",
|
|
34
|
+
"userMessageText": "fg-primary",
|
|
35
|
+
"customMessageBg": "bg-tertiary",
|
|
36
|
+
"customMessageText": "fg-primary",
|
|
37
|
+
"customMessageLabel": "accent-cyan",
|
|
38
|
+
"toolPendingBg": "bg-secondary",
|
|
39
|
+
"toolSuccessBg": "bg-tertiary",
|
|
40
|
+
"toolErrorBg": "bg-primary",
|
|
41
|
+
"toolTitle": "fg-primary",
|
|
42
|
+
"toolOutput": "fg-primary",
|
|
43
|
+
"mdHeading": "accent-blue",
|
|
44
|
+
"mdLink": "accent-cyan",
|
|
45
|
+
"mdLinkUrl": "accent-blue",
|
|
46
|
+
"mdCode": "accent-magenta",
|
|
47
|
+
"mdCodeBlock": "fg-primary",
|
|
48
|
+
"mdCodeBlockBorder": "muted-dark",
|
|
49
|
+
"mdQuote": "fg-secondary",
|
|
50
|
+
"mdQuoteBorder": "muted-grey",
|
|
51
|
+
"mdHr": "muted-grey",
|
|
52
|
+
"mdListBullet": "accent-blue",
|
|
53
|
+
"toolDiffAdded": "accent-green",
|
|
54
|
+
"toolDiffRemoved": "accent-red",
|
|
55
|
+
"toolDiffContext": "muted-grey",
|
|
56
|
+
"syntaxComment": "#586e75",
|
|
57
|
+
"syntaxKeyword": "#859900",
|
|
58
|
+
"syntaxFunction": "#268bd2",
|
|
59
|
+
"syntaxVariable": "#cb4b16",
|
|
60
|
+
"syntaxString": "#2aa198",
|
|
61
|
+
"syntaxNumber": "#6c71c4",
|
|
62
|
+
"syntaxType": "#b58900",
|
|
63
|
+
"syntaxOperator": "#d33682",
|
|
64
|
+
"syntaxPunctuation": "#839496",
|
|
65
|
+
"thinkingOff": "muted-dark",
|
|
66
|
+
"thinkingMinimal": "muted-grey",
|
|
67
|
+
"thinkingLow": "accent-blue",
|
|
68
|
+
"thinkingMedium": "accent-cyan",
|
|
69
|
+
"thinkingHigh": "accent-violet",
|
|
70
|
+
"thinkingXhigh": "accent-yellow",
|
|
71
|
+
"thinkingText": "fg-primary",
|
|
72
|
+
"bashMode": "accent-cyan",
|
|
73
|
+
"oscFg": "fg-primary",
|
|
74
|
+
"oscBg": "bg-primary"
|
|
75
|
+
},
|
|
76
|
+
"export": {
|
|
77
|
+
"pageBg": "#002b36",
|
|
78
|
+
"cardBg": "#073642",
|
|
79
|
+
"infoBg": "#0e4455"
|
|
80
|
+
}
|
|
81
|
+
}
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "solarized-light",
|
|
3
|
+
"vars": {
|
|
4
|
+
"bg-primary": "#fdf6e3",
|
|
5
|
+
"bg-secondary": "#eee8d5",
|
|
6
|
+
"bg-tertiary": "#e0dac8",
|
|
7
|
+
"fg-primary": "#586e75",
|
|
8
|
+
"fg-secondary": "#657b83",
|
|
9
|
+
"accent-violet": "#6c71c4",
|
|
10
|
+
"accent-magenta": "#d33682",
|
|
11
|
+
"accent-blue": "#268bd2",
|
|
12
|
+
"accent-cyan": "#2aa198",
|
|
13
|
+
"accent-green": "#859900",
|
|
14
|
+
"accent-yellow": "#b58900",
|
|
15
|
+
"accent-orange": "#cb4b16",
|
|
16
|
+
"accent-red": "#dc322f",
|
|
17
|
+
"muted-grey": "#657b83",
|
|
18
|
+
"muted-light": "#ccc4b0"
|
|
19
|
+
},
|
|
20
|
+
"colors": {
|
|
21
|
+
"text": "fg-primary",
|
|
22
|
+
"textBg": "bg-primary",
|
|
23
|
+
"accent": "accent-blue",
|
|
24
|
+
"success": "accent-green",
|
|
25
|
+
"error": "accent-red",
|
|
26
|
+
"warning": "accent-yellow",
|
|
27
|
+
"dim": "muted-grey",
|
|
28
|
+
"muted": "muted-grey",
|
|
29
|
+
"border": "muted-light",
|
|
30
|
+
"borderAccent": "accent-blue",
|
|
31
|
+
"borderMuted": "muted-light",
|
|
32
|
+
"selectedBg": "bg-secondary",
|
|
33
|
+
"userMessageBg": "bg-secondary",
|
|
34
|
+
"userMessageText": "fg-primary",
|
|
35
|
+
"customMessageBg": "bg-tertiary",
|
|
36
|
+
"customMessageText": "fg-primary",
|
|
37
|
+
"customMessageLabel": "accent-cyan",
|
|
38
|
+
"toolPendingBg": "bg-secondary",
|
|
39
|
+
"toolSuccessBg": "bg-secondary",
|
|
40
|
+
"toolErrorBg": "bg-primary",
|
|
41
|
+
"toolTitle": "fg-primary",
|
|
42
|
+
"toolOutput": "fg-primary",
|
|
43
|
+
"mdHeading": "accent-blue",
|
|
44
|
+
"mdLink": "accent-cyan",
|
|
45
|
+
"mdLinkUrl": "accent-blue",
|
|
46
|
+
"mdCode": "accent-magenta",
|
|
47
|
+
"mdCodeBlock": "fg-primary",
|
|
48
|
+
"mdCodeBlockBorder": "muted-light",
|
|
49
|
+
"mdQuote": "fg-secondary",
|
|
50
|
+
"mdQuoteBorder": "muted-light",
|
|
51
|
+
"mdHr": "muted-light",
|
|
52
|
+
"mdListBullet": "accent-blue",
|
|
53
|
+
"toolDiffAdded": "accent-green",
|
|
54
|
+
"toolDiffRemoved": "accent-red",
|
|
55
|
+
"toolDiffContext": "muted-grey",
|
|
56
|
+
"syntaxComment": "#93a1a1",
|
|
57
|
+
"syntaxKeyword": "#859900",
|
|
58
|
+
"syntaxFunction": "#268bd2",
|
|
59
|
+
"syntaxVariable": "#cb4b16",
|
|
60
|
+
"syntaxString": "#2aa198",
|
|
61
|
+
"syntaxNumber": "#6c71c4",
|
|
62
|
+
"syntaxType": "#b58900",
|
|
63
|
+
"syntaxOperator": "#d33682",
|
|
64
|
+
"syntaxPunctuation": "#586e75",
|
|
65
|
+
"thinkingOff": "muted-light",
|
|
66
|
+
"thinkingMinimal": "muted-grey",
|
|
67
|
+
"thinkingLow": "accent-blue",
|
|
68
|
+
"thinkingMedium": "accent-cyan",
|
|
69
|
+
"thinkingHigh": "accent-violet",
|
|
70
|
+
"thinkingXhigh": "accent-yellow",
|
|
71
|
+
"thinkingText": "fg-primary",
|
|
72
|
+
"bashMode": "accent-cyan",
|
|
73
|
+
"oscFg": "fg-primary",
|
|
74
|
+
"oscBg": "bg-primary"
|
|
75
|
+
},
|
|
76
|
+
"export": {
|
|
77
|
+
"pageBg": "#fdf6e3",
|
|
78
|
+
"cardBg": "#eee8d5",
|
|
79
|
+
"infoBg": "#e0dac8"
|
|
80
|
+
}
|
|
81
|
+
}
|
|
@@ -0,0 +1,335 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"title": "Pi Coding Agent Theme",
|
|
4
|
+
"description": "Theme schema for Pi coding agent",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"required": ["name", "colors"],
|
|
7
|
+
"properties": {
|
|
8
|
+
"$schema": {
|
|
9
|
+
"type": "string",
|
|
10
|
+
"description": "JSON schema reference"
|
|
11
|
+
},
|
|
12
|
+
"name": {
|
|
13
|
+
"type": "string",
|
|
14
|
+
"description": "Theme name"
|
|
15
|
+
},
|
|
16
|
+
"vars": {
|
|
17
|
+
"type": "object",
|
|
18
|
+
"description": "Reusable color variables",
|
|
19
|
+
"additionalProperties": {
|
|
20
|
+
"oneOf": [
|
|
21
|
+
{
|
|
22
|
+
"type": "string",
|
|
23
|
+
"description": "Hex color (#RRGGBB), variable reference, or empty string for terminal default"
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"type": "integer",
|
|
27
|
+
"minimum": 0,
|
|
28
|
+
"maximum": 255,
|
|
29
|
+
"description": "256-color palette index (0-255)"
|
|
30
|
+
}
|
|
31
|
+
]
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
"colors": {
|
|
35
|
+
"type": "object",
|
|
36
|
+
"description": "Theme color definitions (all required)",
|
|
37
|
+
"required": [
|
|
38
|
+
"accent",
|
|
39
|
+
"border",
|
|
40
|
+
"borderAccent",
|
|
41
|
+
"borderMuted",
|
|
42
|
+
"success",
|
|
43
|
+
"error",
|
|
44
|
+
"warning",
|
|
45
|
+
"muted",
|
|
46
|
+
"dim",
|
|
47
|
+
"text",
|
|
48
|
+
"thinkingText",
|
|
49
|
+
"selectedBg",
|
|
50
|
+
"userMessageBg",
|
|
51
|
+
"userMessageText",
|
|
52
|
+
"customMessageBg",
|
|
53
|
+
"customMessageText",
|
|
54
|
+
"customMessageLabel",
|
|
55
|
+
"toolPendingBg",
|
|
56
|
+
"toolSuccessBg",
|
|
57
|
+
"toolErrorBg",
|
|
58
|
+
"toolTitle",
|
|
59
|
+
"toolOutput",
|
|
60
|
+
"mdHeading",
|
|
61
|
+
"mdLink",
|
|
62
|
+
"mdLinkUrl",
|
|
63
|
+
"mdCode",
|
|
64
|
+
"mdCodeBlock",
|
|
65
|
+
"mdCodeBlockBorder",
|
|
66
|
+
"mdQuote",
|
|
67
|
+
"mdQuoteBorder",
|
|
68
|
+
"mdHr",
|
|
69
|
+
"mdListBullet",
|
|
70
|
+
"toolDiffAdded",
|
|
71
|
+
"toolDiffRemoved",
|
|
72
|
+
"toolDiffContext",
|
|
73
|
+
"syntaxComment",
|
|
74
|
+
"syntaxKeyword",
|
|
75
|
+
"syntaxFunction",
|
|
76
|
+
"syntaxVariable",
|
|
77
|
+
"syntaxString",
|
|
78
|
+
"syntaxNumber",
|
|
79
|
+
"syntaxType",
|
|
80
|
+
"syntaxOperator",
|
|
81
|
+
"syntaxPunctuation",
|
|
82
|
+
"thinkingOff",
|
|
83
|
+
"thinkingMinimal",
|
|
84
|
+
"thinkingLow",
|
|
85
|
+
"thinkingMedium",
|
|
86
|
+
"thinkingHigh",
|
|
87
|
+
"thinkingXhigh",
|
|
88
|
+
"bashMode"
|
|
89
|
+
],
|
|
90
|
+
"properties": {
|
|
91
|
+
"accent": {
|
|
92
|
+
"$ref": "#/$defs/colorValue",
|
|
93
|
+
"description": "Primary accent color (logo, selected items, cursor)"
|
|
94
|
+
},
|
|
95
|
+
"border": {
|
|
96
|
+
"$ref": "#/$defs/colorValue",
|
|
97
|
+
"description": "Normal borders"
|
|
98
|
+
},
|
|
99
|
+
"borderAccent": {
|
|
100
|
+
"$ref": "#/$defs/colorValue",
|
|
101
|
+
"description": "Highlighted borders"
|
|
102
|
+
},
|
|
103
|
+
"borderMuted": {
|
|
104
|
+
"$ref": "#/$defs/colorValue",
|
|
105
|
+
"description": "Subtle borders"
|
|
106
|
+
},
|
|
107
|
+
"success": {
|
|
108
|
+
"$ref": "#/$defs/colorValue",
|
|
109
|
+
"description": "Success states"
|
|
110
|
+
},
|
|
111
|
+
"error": {
|
|
112
|
+
"$ref": "#/$defs/colorValue",
|
|
113
|
+
"description": "Error states"
|
|
114
|
+
},
|
|
115
|
+
"warning": {
|
|
116
|
+
"$ref": "#/$defs/colorValue",
|
|
117
|
+
"description": "Warning states"
|
|
118
|
+
},
|
|
119
|
+
"muted": {
|
|
120
|
+
"$ref": "#/$defs/colorValue",
|
|
121
|
+
"description": "Secondary/dimmed text"
|
|
122
|
+
},
|
|
123
|
+
"dim": {
|
|
124
|
+
"$ref": "#/$defs/colorValue",
|
|
125
|
+
"description": "Very dimmed text (more subtle than muted)"
|
|
126
|
+
},
|
|
127
|
+
"text": {
|
|
128
|
+
"$ref": "#/$defs/colorValue",
|
|
129
|
+
"description": "Default text color (usually empty string)"
|
|
130
|
+
},
|
|
131
|
+
"thinkingText": {
|
|
132
|
+
"$ref": "#/$defs/colorValue",
|
|
133
|
+
"description": "Thinking block text color"
|
|
134
|
+
},
|
|
135
|
+
"selectedBg": {
|
|
136
|
+
"$ref": "#/$defs/colorValue",
|
|
137
|
+
"description": "Selected item background"
|
|
138
|
+
},
|
|
139
|
+
"userMessageBg": {
|
|
140
|
+
"$ref": "#/$defs/colorValue",
|
|
141
|
+
"description": "User message background"
|
|
142
|
+
},
|
|
143
|
+
"userMessageText": {
|
|
144
|
+
"$ref": "#/$defs/colorValue",
|
|
145
|
+
"description": "User message text color"
|
|
146
|
+
},
|
|
147
|
+
"customMessageBg": {
|
|
148
|
+
"$ref": "#/$defs/colorValue",
|
|
149
|
+
"description": "Custom message background (hook-injected messages)"
|
|
150
|
+
},
|
|
151
|
+
"customMessageText": {
|
|
152
|
+
"$ref": "#/$defs/colorValue",
|
|
153
|
+
"description": "Custom message text color"
|
|
154
|
+
},
|
|
155
|
+
"customMessageLabel": {
|
|
156
|
+
"$ref": "#/$defs/colorValue",
|
|
157
|
+
"description": "Custom message type label color"
|
|
158
|
+
},
|
|
159
|
+
"toolPendingBg": {
|
|
160
|
+
"$ref": "#/$defs/colorValue",
|
|
161
|
+
"description": "Tool execution box (pending state)"
|
|
162
|
+
},
|
|
163
|
+
"toolSuccessBg": {
|
|
164
|
+
"$ref": "#/$defs/colorValue",
|
|
165
|
+
"description": "Tool execution box (success state)"
|
|
166
|
+
},
|
|
167
|
+
"toolErrorBg": {
|
|
168
|
+
"$ref": "#/$defs/colorValue",
|
|
169
|
+
"description": "Tool execution box (error state)"
|
|
170
|
+
},
|
|
171
|
+
"toolTitle": {
|
|
172
|
+
"$ref": "#/$defs/colorValue",
|
|
173
|
+
"description": "Tool execution box title color"
|
|
174
|
+
},
|
|
175
|
+
"toolOutput": {
|
|
176
|
+
"$ref": "#/$defs/colorValue",
|
|
177
|
+
"description": "Tool execution box output text color"
|
|
178
|
+
},
|
|
179
|
+
"mdHeading": {
|
|
180
|
+
"$ref": "#/$defs/colorValue",
|
|
181
|
+
"description": "Markdown heading text"
|
|
182
|
+
},
|
|
183
|
+
"mdLink": {
|
|
184
|
+
"$ref": "#/$defs/colorValue",
|
|
185
|
+
"description": "Markdown link text"
|
|
186
|
+
},
|
|
187
|
+
"mdLinkUrl": {
|
|
188
|
+
"$ref": "#/$defs/colorValue",
|
|
189
|
+
"description": "Markdown link URL"
|
|
190
|
+
},
|
|
191
|
+
"mdCode": {
|
|
192
|
+
"$ref": "#/$defs/colorValue",
|
|
193
|
+
"description": "Markdown inline code"
|
|
194
|
+
},
|
|
195
|
+
"mdCodeBlock": {
|
|
196
|
+
"$ref": "#/$defs/colorValue",
|
|
197
|
+
"description": "Markdown code block content"
|
|
198
|
+
},
|
|
199
|
+
"mdCodeBlockBorder": {
|
|
200
|
+
"$ref": "#/$defs/colorValue",
|
|
201
|
+
"description": "Markdown code block fences"
|
|
202
|
+
},
|
|
203
|
+
"mdQuote": {
|
|
204
|
+
"$ref": "#/$defs/colorValue",
|
|
205
|
+
"description": "Markdown blockquote text"
|
|
206
|
+
},
|
|
207
|
+
"mdQuoteBorder": {
|
|
208
|
+
"$ref": "#/$defs/colorValue",
|
|
209
|
+
"description": "Markdown blockquote border"
|
|
210
|
+
},
|
|
211
|
+
"mdHr": {
|
|
212
|
+
"$ref": "#/$defs/colorValue",
|
|
213
|
+
"description": "Markdown horizontal rule"
|
|
214
|
+
},
|
|
215
|
+
"mdListBullet": {
|
|
216
|
+
"$ref": "#/$defs/colorValue",
|
|
217
|
+
"description": "Markdown list bullets/numbers"
|
|
218
|
+
},
|
|
219
|
+
"toolDiffAdded": {
|
|
220
|
+
"$ref": "#/$defs/colorValue",
|
|
221
|
+
"description": "Added lines in tool diffs"
|
|
222
|
+
},
|
|
223
|
+
"toolDiffRemoved": {
|
|
224
|
+
"$ref": "#/$defs/colorValue",
|
|
225
|
+
"description": "Removed lines in tool diffs"
|
|
226
|
+
},
|
|
227
|
+
"toolDiffContext": {
|
|
228
|
+
"$ref": "#/$defs/colorValue",
|
|
229
|
+
"description": "Context lines in tool diffs"
|
|
230
|
+
},
|
|
231
|
+
"syntaxComment": {
|
|
232
|
+
"$ref": "#/$defs/colorValue",
|
|
233
|
+
"description": "Syntax highlighting: comments"
|
|
234
|
+
},
|
|
235
|
+
"syntaxKeyword": {
|
|
236
|
+
"$ref": "#/$defs/colorValue",
|
|
237
|
+
"description": "Syntax highlighting: keywords"
|
|
238
|
+
},
|
|
239
|
+
"syntaxFunction": {
|
|
240
|
+
"$ref": "#/$defs/colorValue",
|
|
241
|
+
"description": "Syntax highlighting: function names"
|
|
242
|
+
},
|
|
243
|
+
"syntaxVariable": {
|
|
244
|
+
"$ref": "#/$defs/colorValue",
|
|
245
|
+
"description": "Syntax highlighting: variable names"
|
|
246
|
+
},
|
|
247
|
+
"syntaxString": {
|
|
248
|
+
"$ref": "#/$defs/colorValue",
|
|
249
|
+
"description": "Syntax highlighting: string literals"
|
|
250
|
+
},
|
|
251
|
+
"syntaxNumber": {
|
|
252
|
+
"$ref": "#/$defs/colorValue",
|
|
253
|
+
"description": "Syntax highlighting: number literals"
|
|
254
|
+
},
|
|
255
|
+
"syntaxType": {
|
|
256
|
+
"$ref": "#/$defs/colorValue",
|
|
257
|
+
"description": "Syntax highlighting: type names"
|
|
258
|
+
},
|
|
259
|
+
"syntaxOperator": {
|
|
260
|
+
"$ref": "#/$defs/colorValue",
|
|
261
|
+
"description": "Syntax highlighting: operators"
|
|
262
|
+
},
|
|
263
|
+
"syntaxPunctuation": {
|
|
264
|
+
"$ref": "#/$defs/colorValue",
|
|
265
|
+
"description": "Syntax highlighting: punctuation"
|
|
266
|
+
},
|
|
267
|
+
"thinkingOff": {
|
|
268
|
+
"$ref": "#/$defs/colorValue",
|
|
269
|
+
"description": "Thinking level border: off"
|
|
270
|
+
},
|
|
271
|
+
"thinkingMinimal": {
|
|
272
|
+
"$ref": "#/$defs/colorValue",
|
|
273
|
+
"description": "Thinking level border: minimal"
|
|
274
|
+
},
|
|
275
|
+
"thinkingLow": {
|
|
276
|
+
"$ref": "#/$defs/colorValue",
|
|
277
|
+
"description": "Thinking level border: low"
|
|
278
|
+
},
|
|
279
|
+
"thinkingMedium": {
|
|
280
|
+
"$ref": "#/$defs/colorValue",
|
|
281
|
+
"description": "Thinking level border: medium"
|
|
282
|
+
},
|
|
283
|
+
"thinkingHigh": {
|
|
284
|
+
"$ref": "#/$defs/colorValue",
|
|
285
|
+
"description": "Thinking level border: high"
|
|
286
|
+
},
|
|
287
|
+
"thinkingXhigh": {
|
|
288
|
+
"$ref": "#/$defs/colorValue",
|
|
289
|
+
"description": "Thinking level border: xhigh (OpenAI codex-max only)"
|
|
290
|
+
},
|
|
291
|
+
"bashMode": {
|
|
292
|
+
"$ref": "#/$defs/colorValue",
|
|
293
|
+
"description": "Editor border color in bash mode"
|
|
294
|
+
}
|
|
295
|
+
},
|
|
296
|
+
"additionalProperties": false
|
|
297
|
+
},
|
|
298
|
+
"export": {
|
|
299
|
+
"type": "object",
|
|
300
|
+
"description": "Optional colors for HTML export (defaults derived from userMessageBg if not specified)",
|
|
301
|
+
"properties": {
|
|
302
|
+
"pageBg": {
|
|
303
|
+
"$ref": "#/$defs/colorValue",
|
|
304
|
+
"description": "Page background color"
|
|
305
|
+
},
|
|
306
|
+
"cardBg": {
|
|
307
|
+
"$ref": "#/$defs/colorValue",
|
|
308
|
+
"description": "Card/container background color"
|
|
309
|
+
},
|
|
310
|
+
"infoBg": {
|
|
311
|
+
"$ref": "#/$defs/colorValue",
|
|
312
|
+
"description": "Info sections background (system prompt, notices)"
|
|
313
|
+
}
|
|
314
|
+
},
|
|
315
|
+
"additionalProperties": false
|
|
316
|
+
}
|
|
317
|
+
},
|
|
318
|
+
"additionalProperties": false,
|
|
319
|
+
"$defs": {
|
|
320
|
+
"colorValue": {
|
|
321
|
+
"oneOf": [
|
|
322
|
+
{
|
|
323
|
+
"type": "string",
|
|
324
|
+
"description": "Hex color (#RRGGBB), variable reference, or empty string for terminal default"
|
|
325
|
+
},
|
|
326
|
+
{
|
|
327
|
+
"type": "integer",
|
|
328
|
+
"minimum": 0,
|
|
329
|
+
"maximum": 255,
|
|
330
|
+
"description": "256-color palette index (0-255)"
|
|
331
|
+
}
|
|
332
|
+
]
|
|
333
|
+
}
|
|
334
|
+
}
|
|
335
|
+
}
|