@ikie-dev/cli 9.8.4 → 9.8.6
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 +7 -6
- package/scripts/prepublish-npm.js +60 -0
- package/src/entry.ts +13 -2
- package/theme/catppuccin-macchiato.json +82 -0
- package/theme/dark.json +87 -0
- package/theme/dracula.json +79 -0
- package/theme/github-dark.json +80 -0
- package/theme/github-light.json +80 -0
- package/theme/ikie-light.json +92 -0
- package/theme/ikie-minimal.json +79 -0
- package/theme/ikie.json +96 -0
- package/theme/light.json +86 -0
- package/theme/lucent-orng.json +79 -0
- package/theme/monokai.json +78 -0
- package/theme/neon.json +87 -0
- package/theme/night-owl.json +87 -0
- package/theme/nord.json +82 -0
- package/theme/one-dark.json +79 -0
- package/theme/solarized-dark.json +81 -0
- package/theme/solarized-light.json +81 -0
- package/theme/theme-schema.json +335 -0
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "ikie-minimal",
|
|
3
|
+
"vars": {
|
|
4
|
+
"aqua-500": "#00B4D8",
|
|
5
|
+
"aqua-300": "#90E0EF",
|
|
6
|
+
"purple-400": "#9B8EED",
|
|
7
|
+
"bg-primary": "#0F171E",
|
|
8
|
+
"bg-secondary": "#1A2733",
|
|
9
|
+
"bg-tertiary": "#243447",
|
|
10
|
+
"selected-bg": "#2A3D50",
|
|
11
|
+
"msg-bg": "#243447",
|
|
12
|
+
"custom-bg": "#1A2A3A",
|
|
13
|
+
"gray": "#6B8BA8",
|
|
14
|
+
"dim-gray": "#3A5068",
|
|
15
|
+
"dark-gray": "#243447",
|
|
16
|
+
"light-gray": "#8BAEC2",
|
|
17
|
+
"text-light": "#C8DCE8"
|
|
18
|
+
},
|
|
19
|
+
"colors": {
|
|
20
|
+
"accent": "aqua-500",
|
|
21
|
+
"border": "dim-gray",
|
|
22
|
+
"borderAccent": "aqua-500",
|
|
23
|
+
"borderMuted": "dark-gray",
|
|
24
|
+
"success": "aqua-300",
|
|
25
|
+
"error": "aqua-500",
|
|
26
|
+
"warning": "aqua-500",
|
|
27
|
+
"muted": "gray",
|
|
28
|
+
"dim": "dim-gray",
|
|
29
|
+
"text": "text-light",
|
|
30
|
+
"thinkingText": "gray",
|
|
31
|
+
"selectedBg": "selected-bg",
|
|
32
|
+
"userMessageBg": "msg-bg",
|
|
33
|
+
"userMessageText": "light-gray",
|
|
34
|
+
"customMessageBg": "custom-bg",
|
|
35
|
+
"customMessageText": "light-gray",
|
|
36
|
+
"customMessageLabel": "purple-400",
|
|
37
|
+
"toolPendingBg": "bg-tertiary",
|
|
38
|
+
"toolSuccessBg": "bg-secondary",
|
|
39
|
+
"toolErrorBg": "bg-primary",
|
|
40
|
+
"toolTitle": "gray",
|
|
41
|
+
"toolOutput": "gray",
|
|
42
|
+
"mdHeading": "aqua-500",
|
|
43
|
+
"mdLink": "purple-400",
|
|
44
|
+
"mdLinkUrl": "dim-gray",
|
|
45
|
+
"mdCode": "aqua-300",
|
|
46
|
+
"mdCodeBlock": "aqua-300",
|
|
47
|
+
"mdCodeBlockBorder": "gray",
|
|
48
|
+
"mdQuote": "gray",
|
|
49
|
+
"mdQuoteBorder": "gray",
|
|
50
|
+
"mdHr": "gray",
|
|
51
|
+
"mdListBullet": "aqua-500",
|
|
52
|
+
"toolDiffAdded": "aqua-300",
|
|
53
|
+
"toolDiffRemoved": "aqua-500",
|
|
54
|
+
"toolDiffContext": "gray",
|
|
55
|
+
"syntaxComment": 2,
|
|
56
|
+
"syntaxKeyword": 4,
|
|
57
|
+
"syntaxFunction": 3,
|
|
58
|
+
"syntaxVariable": "light-gray",
|
|
59
|
+
"syntaxString": 1,
|
|
60
|
+
"syntaxNumber": 5,
|
|
61
|
+
"syntaxType": 6,
|
|
62
|
+
"syntaxOperator": "light-gray",
|
|
63
|
+
"syntaxPunctuation": "light-gray",
|
|
64
|
+
"thinkingOff": "dark-gray",
|
|
65
|
+
"thinkingMinimal": "gray",
|
|
66
|
+
"thinkingLow": "light-gray",
|
|
67
|
+
"thinkingMedium": "gray",
|
|
68
|
+
"thinkingHigh": "dim-gray",
|
|
69
|
+
"thinkingXhigh": "light-gray",
|
|
70
|
+
"bashMode": "aqua-300",
|
|
71
|
+
"oscFg": "",
|
|
72
|
+
"oscBg": ""
|
|
73
|
+
},
|
|
74
|
+
"export": {
|
|
75
|
+
"pageBg": "#0D151C",
|
|
76
|
+
"cardBg": "#0F171E",
|
|
77
|
+
"infoBg": "#1A2A38"
|
|
78
|
+
}
|
|
79
|
+
}
|
package/theme/ikie.json
ADDED
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "ikie",
|
|
3
|
+
"vars": {
|
|
4
|
+
"aqua-500": "#00B4D8",
|
|
5
|
+
"aqua-400": "#48CAE4",
|
|
6
|
+
"aqua-300": "#90E0EF",
|
|
7
|
+
"aqua-200": "#C4F0FC",
|
|
8
|
+
"teal-500": "#2EC4B6",
|
|
9
|
+
"teal-400": "#5DCAA5",
|
|
10
|
+
"teal-900": "#1A3A38",
|
|
11
|
+
"cyan-500": "#00D4FF",
|
|
12
|
+
"blue-500": "#0077B6",
|
|
13
|
+
"blue-400": "#0096C7",
|
|
14
|
+
"grey-900": "#0F171E",
|
|
15
|
+
"grey-800": "#1A2733",
|
|
16
|
+
"grey-700": "#243447",
|
|
17
|
+
"grey-600": "#3A5068",
|
|
18
|
+
"grey-500": "#6B8BA8",
|
|
19
|
+
"grey-400": "#8BAEC2",
|
|
20
|
+
"white-100": "#E8F4FD",
|
|
21
|
+
"amber-500": "#F4A261",
|
|
22
|
+
"purple-400": "#9B8EED",
|
|
23
|
+
"purple-800": "#4A4285",
|
|
24
|
+
"red-500": "#E06C75",
|
|
25
|
+
"red-950": "#2E1C1E",
|
|
26
|
+
"green-500": "#98C379",
|
|
27
|
+
"green-comment": "#5C8A72",
|
|
28
|
+
"green-num": "#B5CEA8",
|
|
29
|
+
"yellow-fn": "#E5C07B",
|
|
30
|
+
"blue-var": "#9CDCFE",
|
|
31
|
+
"blue-keyword": "#56B6C2",
|
|
32
|
+
"neutral-200": "#D4D4D4",
|
|
33
|
+
"neutral-type": "#4EC9B0",
|
|
34
|
+
"neutral-string": "#CE9178"
|
|
35
|
+
},
|
|
36
|
+
"colors": {
|
|
37
|
+
"accent": "aqua-500",
|
|
38
|
+
"border": "grey-600",
|
|
39
|
+
"borderAccent": "cyan-500",
|
|
40
|
+
"borderMuted": "grey-700",
|
|
41
|
+
"success": "teal-500",
|
|
42
|
+
"error": "red-500",
|
|
43
|
+
"warning": "amber-500",
|
|
44
|
+
"muted": "grey-600",
|
|
45
|
+
"dim": "grey-600",
|
|
46
|
+
"text": "grey-400",
|
|
47
|
+
"thinkingText": "grey-400",
|
|
48
|
+
"selectedBg": "grey-700",
|
|
49
|
+
"userMessageBg": "teal-900",
|
|
50
|
+
"userMessageText": "white-100",
|
|
51
|
+
"customMessageBg": "grey-700",
|
|
52
|
+
"customMessageText": "grey-400",
|
|
53
|
+
"customMessageLabel": "purple-400",
|
|
54
|
+
"toolPendingBg": "grey-900",
|
|
55
|
+
"toolSuccessBg": "grey-900",
|
|
56
|
+
"toolErrorBg": "red-950",
|
|
57
|
+
"toolTitle": "grey-400",
|
|
58
|
+
"toolOutput": "grey-400",
|
|
59
|
+
"mdHeading": "aqua-500",
|
|
60
|
+
"mdLink": "purple-400",
|
|
61
|
+
"mdLinkUrl": "grey-500",
|
|
62
|
+
"mdCode": "teal-500",
|
|
63
|
+
"mdCodeBlock": "green-500",
|
|
64
|
+
"mdCodeBlockBorder": "grey-600",
|
|
65
|
+
"mdQuote": "grey-400",
|
|
66
|
+
"mdQuoteBorder": "grey-600",
|
|
67
|
+
"mdHr": "grey-600",
|
|
68
|
+
"mdListBullet": "aqua-500",
|
|
69
|
+
"toolDiffAdded": "teal-500",
|
|
70
|
+
"toolDiffRemoved": "red-500",
|
|
71
|
+
"toolDiffContext": "grey-400",
|
|
72
|
+
"syntaxComment": "green-comment",
|
|
73
|
+
"syntaxKeyword": "blue-keyword",
|
|
74
|
+
"syntaxFunction": "yellow-fn",
|
|
75
|
+
"syntaxVariable": "blue-var",
|
|
76
|
+
"syntaxString": "neutral-string",
|
|
77
|
+
"syntaxNumber": "green-num",
|
|
78
|
+
"syntaxType": "neutral-type",
|
|
79
|
+
"syntaxOperator": "neutral-200",
|
|
80
|
+
"syntaxPunctuation": "neutral-200",
|
|
81
|
+
"thinkingOff": "grey-700",
|
|
82
|
+
"thinkingMinimal": "grey-600",
|
|
83
|
+
"thinkingLow": "purple-800",
|
|
84
|
+
"thinkingMedium": "purple-400",
|
|
85
|
+
"thinkingHigh": "aqua-500",
|
|
86
|
+
"thinkingXhigh": "aqua-400",
|
|
87
|
+
"bashMode": "aqua-300",
|
|
88
|
+
"oscFg": "#A1A1A1",
|
|
89
|
+
"oscBg": "#0D151C"
|
|
90
|
+
},
|
|
91
|
+
"export": {
|
|
92
|
+
"pageBg": "#0D151C",
|
|
93
|
+
"cardBg": "#0F171E",
|
|
94
|
+
"infoBg": "#1A2A38"
|
|
95
|
+
}
|
|
96
|
+
}
|
package/theme/light.json
ADDED
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://raw.githubusercontent.com/badlogic/pi-mono/main/packages/coding-agent/src/modes/interactive/theme/theme-schema.json",
|
|
3
|
+
"name": "light",
|
|
4
|
+
"vars": {
|
|
5
|
+
"teal": "#5a8080",
|
|
6
|
+
"blue": "#547da7",
|
|
7
|
+
"green": "#588458",
|
|
8
|
+
"red": "#aa5555",
|
|
9
|
+
"yellow": "#9a7326",
|
|
10
|
+
"mediumGray": "#6c6c6c",
|
|
11
|
+
"dimGray": "#767676",
|
|
12
|
+
"lightGray": "#b0b0b0",
|
|
13
|
+
"bg-primary": "#ffffff",
|
|
14
|
+
"bg-secondary": "#f0f0f0",
|
|
15
|
+
"bg-tertiary": "#e8e8e8",
|
|
16
|
+
"selectedBg": "#d0d0e0",
|
|
17
|
+
"userMsgBg": "#e8e8e8",
|
|
18
|
+
"customMsgBg": "#ede7f6"
|
|
19
|
+
},
|
|
20
|
+
"colors": {
|
|
21
|
+
"accent": "teal",
|
|
22
|
+
"border": "blue",
|
|
23
|
+
"borderAccent": "teal",
|
|
24
|
+
"borderMuted": "lightGray",
|
|
25
|
+
"success": "green",
|
|
26
|
+
"error": "red",
|
|
27
|
+
"warning": "yellow",
|
|
28
|
+
"muted": "mediumGray",
|
|
29
|
+
"dim": "dimGray",
|
|
30
|
+
"text": "mediumGray",
|
|
31
|
+
"thinkingText": "mediumGray",
|
|
32
|
+
|
|
33
|
+
"selectedBg": "selectedBg",
|
|
34
|
+
"userMessageBg": "userMsgBg",
|
|
35
|
+
"userMessageText": "mediumGray",
|
|
36
|
+
"customMessageBg": "customMsgBg",
|
|
37
|
+
"customMessageText": "mediumGray",
|
|
38
|
+
"customMessageLabel": "#7e57c2",
|
|
39
|
+
"toolPendingBg": "bg-tertiary",
|
|
40
|
+
"toolSuccessBg": "bg-secondary",
|
|
41
|
+
"toolErrorBg": "bg-primary",
|
|
42
|
+
"toolTitle": "teal",
|
|
43
|
+
"toolOutput": "mediumGray",
|
|
44
|
+
|
|
45
|
+
"mdHeading": "yellow",
|
|
46
|
+
"mdLink": "blue",
|
|
47
|
+
"mdLinkUrl": "dimGray",
|
|
48
|
+
"mdCode": "teal",
|
|
49
|
+
"mdCodeBlock": "green",
|
|
50
|
+
"mdCodeBlockBorder": "mediumGray",
|
|
51
|
+
"mdQuote": "mediumGray",
|
|
52
|
+
"mdQuoteBorder": "mediumGray",
|
|
53
|
+
"mdHr": "mediumGray",
|
|
54
|
+
"mdListBullet": "green",
|
|
55
|
+
|
|
56
|
+
"toolDiffAdded": "green",
|
|
57
|
+
"toolDiffRemoved": "red",
|
|
58
|
+
"toolDiffContext": "mediumGray",
|
|
59
|
+
|
|
60
|
+
"syntaxComment": "#008000",
|
|
61
|
+
"syntaxKeyword": "#0000FF",
|
|
62
|
+
"syntaxFunction": "#795E26",
|
|
63
|
+
"syntaxVariable": "#001080",
|
|
64
|
+
"syntaxString": "#A31515",
|
|
65
|
+
"syntaxNumber": "#098658",
|
|
66
|
+
"syntaxType": "#267F99",
|
|
67
|
+
"syntaxOperator": "#000000",
|
|
68
|
+
"syntaxPunctuation": "#000000",
|
|
69
|
+
|
|
70
|
+
"thinkingOff": "lightGray",
|
|
71
|
+
"thinkingMinimal": "#767676",
|
|
72
|
+
"thinkingLow": "blue",
|
|
73
|
+
"thinkingMedium": "teal",
|
|
74
|
+
"thinkingHigh": "#875f87",
|
|
75
|
+
"thinkingXhigh": "#8b008b",
|
|
76
|
+
|
|
77
|
+
"bashMode": "green",
|
|
78
|
+
"oscFg": "#333333",
|
|
79
|
+
"oscBg": "#FFFFFF"
|
|
80
|
+
},
|
|
81
|
+
"export": {
|
|
82
|
+
"pageBg": "#f8f8f8",
|
|
83
|
+
"cardBg": "#ffffff",
|
|
84
|
+
"infoBg": "#fffae6"
|
|
85
|
+
}
|
|
86
|
+
}
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "lucent-orng",
|
|
3
|
+
"vars": {
|
|
4
|
+
"bg-primary": "#2a1a15",
|
|
5
|
+
"bg-secondary": "#341f18",
|
|
6
|
+
"bg-tertiary": "#3e2a20",
|
|
7
|
+
"fg-primary": "#eeeeee",
|
|
8
|
+
"accent-orange": "#EC5B2B",
|
|
9
|
+
"accent-orange-light": "#EE7948",
|
|
10
|
+
"accent-blue": "#6ba1e6",
|
|
11
|
+
"accent-cyan": "#56b6c2",
|
|
12
|
+
"accent-red": "#e06c75",
|
|
13
|
+
"accent-yellow": "#e5c07b",
|
|
14
|
+
"accent-white": "#FFF7F1",
|
|
15
|
+
"muted-grey": "#808080",
|
|
16
|
+
"muted-dark": "#442e24"
|
|
17
|
+
},
|
|
18
|
+
"colors": {
|
|
19
|
+
"text": "fg-primary",
|
|
20
|
+
"textBg": "bg-primary",
|
|
21
|
+
"accent": "accent-orange",
|
|
22
|
+
"success": "accent-blue",
|
|
23
|
+
"error": "accent-red",
|
|
24
|
+
"warning": "accent-orange",
|
|
25
|
+
"dim": "muted-grey",
|
|
26
|
+
"muted": "muted-grey",
|
|
27
|
+
"border": "muted-dark",
|
|
28
|
+
"borderAccent": "accent-orange",
|
|
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-orange",
|
|
36
|
+
"toolPendingBg": "bg-tertiary",
|
|
37
|
+
"toolSuccessBg": "bg-tertiary",
|
|
38
|
+
"toolErrorBg": "bg-primary",
|
|
39
|
+
"toolTitle": "fg-primary",
|
|
40
|
+
"toolOutput": "fg-primary",
|
|
41
|
+
"mdHeading": "accent-orange",
|
|
42
|
+
"mdLink": "accent-orange",
|
|
43
|
+
"mdLinkUrl": "accent-cyan",
|
|
44
|
+
"mdCode": "accent-blue",
|
|
45
|
+
"mdCodeBlock": "fg-primary",
|
|
46
|
+
"mdCodeBlockBorder": "muted-dark",
|
|
47
|
+
"mdQuote": "accent-white",
|
|
48
|
+
"mdQuoteBorder": "muted-grey",
|
|
49
|
+
"mdHr": "muted-grey",
|
|
50
|
+
"mdListBullet": "accent-orange",
|
|
51
|
+
"toolDiffAdded": "accent-blue",
|
|
52
|
+
"toolDiffRemoved": "accent-red",
|
|
53
|
+
"toolDiffContext": "muted-grey",
|
|
54
|
+
"syntaxComment": "muted-grey",
|
|
55
|
+
"syntaxKeyword": "accent-orange",
|
|
56
|
+
"syntaxFunction": "accent-orange-light",
|
|
57
|
+
"syntaxVariable": "accent-red",
|
|
58
|
+
"syntaxString": "accent-blue",
|
|
59
|
+
"syntaxNumber": "accent-orange-light",
|
|
60
|
+
"syntaxType": "accent-yellow",
|
|
61
|
+
"syntaxOperator": "accent-cyan",
|
|
62
|
+
"syntaxPunctuation": "fg-primary",
|
|
63
|
+
"thinkingOff": "muted-dark",
|
|
64
|
+
"thinkingMinimal": "muted-grey",
|
|
65
|
+
"thinkingLow": "accent-orange",
|
|
66
|
+
"thinkingMedium": "accent-orange-light",
|
|
67
|
+
"thinkingHigh": "accent-cyan",
|
|
68
|
+
"thinkingXhigh": "accent-yellow",
|
|
69
|
+
"thinkingText": "fg-primary",
|
|
70
|
+
"bashMode": "accent-orange",
|
|
71
|
+
"oscFg": "fg-primary",
|
|
72
|
+
"oscBg": "bg-primary"
|
|
73
|
+
},
|
|
74
|
+
"export": {
|
|
75
|
+
"pageBg": "#2a1a15",
|
|
76
|
+
"cardBg": "#2e1c17",
|
|
77
|
+
"infoBg": "#341f18"
|
|
78
|
+
}
|
|
79
|
+
}
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "monokai",
|
|
3
|
+
"vars": {
|
|
4
|
+
"bg-primary": "#272822",
|
|
5
|
+
"bg-secondary": "#2e2f27",
|
|
6
|
+
"bg-tertiary": "#3e3d32",
|
|
7
|
+
"fg-primary": "#f8f8f2",
|
|
8
|
+
"accent-purple": "#ae81ff",
|
|
9
|
+
"accent-pink": "#f92672",
|
|
10
|
+
"accent-green": "#a6e22e",
|
|
11
|
+
"accent-orange": "#fd971f",
|
|
12
|
+
"accent-yellow": "#e6db74",
|
|
13
|
+
"accent-cyan": "#66d9ef",
|
|
14
|
+
"muted-grey": "#75715e",
|
|
15
|
+
"muted-dark": "#3e3d32"
|
|
16
|
+
},
|
|
17
|
+
"colors": {
|
|
18
|
+
"text": "fg-primary",
|
|
19
|
+
"textBg": "bg-primary",
|
|
20
|
+
"accent": "accent-purple",
|
|
21
|
+
"success": "accent-green",
|
|
22
|
+
"error": "accent-pink",
|
|
23
|
+
"warning": "accent-orange",
|
|
24
|
+
"dim": "muted-grey",
|
|
25
|
+
"muted": "muted-grey",
|
|
26
|
+
"border": "muted-dark",
|
|
27
|
+
"borderAccent": "accent-cyan",
|
|
28
|
+
"borderMuted": "muted-grey",
|
|
29
|
+
"selectedBg": "bg-tertiary",
|
|
30
|
+
"userMessageBg": "bg-tertiary",
|
|
31
|
+
"userMessageText": "fg-primary",
|
|
32
|
+
"customMessageBg": "bg-secondary",
|
|
33
|
+
"customMessageText": "fg-primary",
|
|
34
|
+
"customMessageLabel": "accent-purple",
|
|
35
|
+
"toolPendingBg": "bg-tertiary",
|
|
36
|
+
"toolSuccessBg": "bg-tertiary",
|
|
37
|
+
"toolErrorBg": "bg-primary",
|
|
38
|
+
"toolTitle": "fg-primary",
|
|
39
|
+
"toolOutput": "fg-primary",
|
|
40
|
+
"mdHeading": "accent-yellow",
|
|
41
|
+
"mdLink": "accent-purple",
|
|
42
|
+
"mdLinkUrl": "muted-grey",
|
|
43
|
+
"mdCode": "accent-cyan",
|
|
44
|
+
"mdCodeBlock": "fg-primary",
|
|
45
|
+
"mdCodeBlockBorder": "muted-dark",
|
|
46
|
+
"mdQuote": "fg-primary",
|
|
47
|
+
"mdQuoteBorder": "muted-grey",
|
|
48
|
+
"mdHr": "muted-dark",
|
|
49
|
+
"mdListBullet": "accent-orange",
|
|
50
|
+
"toolDiffAdded": "accent-green",
|
|
51
|
+
"toolDiffRemoved": "accent-pink",
|
|
52
|
+
"toolDiffContext": "muted-grey",
|
|
53
|
+
"syntaxComment": "muted-grey",
|
|
54
|
+
"syntaxKeyword": "accent-pink",
|
|
55
|
+
"syntaxFunction": "accent-green",
|
|
56
|
+
"syntaxVariable": "accent-orange",
|
|
57
|
+
"syntaxString": "accent-yellow",
|
|
58
|
+
"syntaxNumber": "accent-purple",
|
|
59
|
+
"syntaxType": "accent-cyan",
|
|
60
|
+
"syntaxOperator": "accent-pink",
|
|
61
|
+
"syntaxPunctuation": "muted-grey",
|
|
62
|
+
"thinkingOff": "muted-dark",
|
|
63
|
+
"thinkingMinimal": "muted-grey",
|
|
64
|
+
"thinkingLow": "accent-purple",
|
|
65
|
+
"thinkingMedium": "accent-cyan",
|
|
66
|
+
"thinkingHigh": "accent-green",
|
|
67
|
+
"thinkingXhigh": "accent-yellow",
|
|
68
|
+
"thinkingText": "fg-primary",
|
|
69
|
+
"bashMode": "accent-green",
|
|
70
|
+
"oscFg": "fg-primary",
|
|
71
|
+
"oscBg": "bg-primary"
|
|
72
|
+
},
|
|
73
|
+
"export": {
|
|
74
|
+
"pageBg": "#272822",
|
|
75
|
+
"cardBg": "#2b2c25",
|
|
76
|
+
"infoBg": "#2e2f27"
|
|
77
|
+
}
|
|
78
|
+
}
|
package/theme/neon.json
ADDED
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://raw.githubusercontent.com/badlogic/pi-mono/main/packages/coding-agent/src/modes/interactive/theme/theme-schema.json",
|
|
3
|
+
"name": "neon",
|
|
4
|
+
"vars": {
|
|
5
|
+
"neonPink": "#ff5fd7",
|
|
6
|
+
"neonMagenta": "#ff00aa",
|
|
7
|
+
"neonPurple": "#af87ff",
|
|
8
|
+
"neonCyan": "#00f0ff",
|
|
9
|
+
"neonBlue": "#5fafff",
|
|
10
|
+
"neonGreen": "#5fff87",
|
|
11
|
+
"neonRed": "#ff5f87",
|
|
12
|
+
"neonYellow": "#ffd75f",
|
|
13
|
+
"gray": "#8b8ba7",
|
|
14
|
+
"dimGray": "#6c6c8a",
|
|
15
|
+
"darkGray": "#3d3d5c",
|
|
16
|
+
"selectedBg": "#2a1f3d",
|
|
17
|
+
"userMsgBg": "#1a1530",
|
|
18
|
+
"toolPendingBg": "#1f1a35",
|
|
19
|
+
"toolSuccessBg": "#1a2e1f",
|
|
20
|
+
"toolErrorBg": "#3a1a2a",
|
|
21
|
+
"customMsgBg": "#2a1a3a"
|
|
22
|
+
},
|
|
23
|
+
"colors": {
|
|
24
|
+
"accent": "neonPink",
|
|
25
|
+
"border": "neonPurple",
|
|
26
|
+
"borderAccent": "neonCyan",
|
|
27
|
+
"borderMuted": "darkGray",
|
|
28
|
+
"success": "neonGreen",
|
|
29
|
+
"error": "neonRed",
|
|
30
|
+
"warning": "neonYellow",
|
|
31
|
+
"muted": "gray",
|
|
32
|
+
"dim": "dimGray",
|
|
33
|
+
"text": "",
|
|
34
|
+
"thinkingText": "gray",
|
|
35
|
+
|
|
36
|
+
"selectedBg": "selectedBg",
|
|
37
|
+
"userMessageBg": "userMsgBg",
|
|
38
|
+
"userMessageText": "",
|
|
39
|
+
"customMessageBg": "customMsgBg",
|
|
40
|
+
"customMessageText": "",
|
|
41
|
+
"customMessageLabel": "neonPurple",
|
|
42
|
+
"toolPendingBg": "toolPendingBg",
|
|
43
|
+
"toolSuccessBg": "toolSuccessBg",
|
|
44
|
+
"toolErrorBg": "toolErrorBg",
|
|
45
|
+
"toolTitle": "",
|
|
46
|
+
"toolOutput": "gray",
|
|
47
|
+
|
|
48
|
+
"mdHeading": "neonPink",
|
|
49
|
+
"mdLink": "neonCyan",
|
|
50
|
+
"mdLinkUrl": "dimGray",
|
|
51
|
+
"mdCode": "neonPurple",
|
|
52
|
+
"mdCodeBlock": "neonGreen",
|
|
53
|
+
"mdCodeBlockBorder": "darkGray",
|
|
54
|
+
"mdQuote": "gray",
|
|
55
|
+
"mdQuoteBorder": "neonPurple",
|
|
56
|
+
"mdHr": "darkGray",
|
|
57
|
+
"mdListBullet": "neonPink",
|
|
58
|
+
|
|
59
|
+
"toolDiffAdded": "neonGreen",
|
|
60
|
+
"toolDiffRemoved": "neonRed",
|
|
61
|
+
"toolDiffContext": "gray",
|
|
62
|
+
|
|
63
|
+
"syntaxComment": "#6c6c8a",
|
|
64
|
+
"syntaxKeyword": "#ff5fd7",
|
|
65
|
+
"syntaxFunction": "#00f0ff",
|
|
66
|
+
"syntaxVariable": "#af87ff",
|
|
67
|
+
"syntaxString": "#5fff87",
|
|
68
|
+
"syntaxNumber": "#ffd75f",
|
|
69
|
+
"syntaxType": "#5fafff",
|
|
70
|
+
"syntaxOperator": "#ff87d7",
|
|
71
|
+
"syntaxPunctuation": "#c0c0d8",
|
|
72
|
+
|
|
73
|
+
"thinkingOff": "darkGray",
|
|
74
|
+
"thinkingMinimal": "#5d5d7a",
|
|
75
|
+
"thinkingLow": "#5fafff",
|
|
76
|
+
"thinkingMedium": "#af87ff",
|
|
77
|
+
"thinkingHigh": "#ff5fd7",
|
|
78
|
+
"thinkingXhigh": "#ff00aa",
|
|
79
|
+
|
|
80
|
+
"bashMode": "neonGreen"
|
|
81
|
+
},
|
|
82
|
+
"export": {
|
|
83
|
+
"pageBg": "#0f0a1f",
|
|
84
|
+
"cardBg": "#171130",
|
|
85
|
+
"infoBg": "#2a1f3d"
|
|
86
|
+
}
|
|
87
|
+
}
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "night-owl",
|
|
3
|
+
"vars": {
|
|
4
|
+
"bg-primary": "#011627",
|
|
5
|
+
"bg-secondary": "#0b2942",
|
|
6
|
+
"bg-tertiary": "#234d70",
|
|
7
|
+
"fg-primary": "#d6deeb",
|
|
8
|
+
"fg-secondary": "#0b253a",
|
|
9
|
+
"accent-purple": "#C792EA",
|
|
10
|
+
"accent-blue": "#82AAFF",
|
|
11
|
+
"accent-cyan": "#7fdbca",
|
|
12
|
+
"accent-cyan-bright": "#21c7a8",
|
|
13
|
+
"accent-green": "#22da6e",
|
|
14
|
+
"accent-green-muted": "#9CCC65",
|
|
15
|
+
"accent-yellow": "#FFEB95",
|
|
16
|
+
"accent-yellow-muted": "#c5e478",
|
|
17
|
+
"accent-red": "#EF5350",
|
|
18
|
+
"accent-red-bright": "#ff5874",
|
|
19
|
+
"accent-orange": "#F78C6C",
|
|
20
|
+
"muted-blue": "#5f7e97",
|
|
21
|
+
"muted-blue-dark": "#4b6479",
|
|
22
|
+
"muted-grey": "#637777",
|
|
23
|
+
"teal-code": "#80CBC4",
|
|
24
|
+
"string-amber": "#ecc48d"
|
|
25
|
+
},
|
|
26
|
+
"colors": {
|
|
27
|
+
"text": "fg-primary",
|
|
28
|
+
"textBg": "bg-primary",
|
|
29
|
+
"accent": "accent-purple",
|
|
30
|
+
"success": "accent-green",
|
|
31
|
+
"error": "accent-red",
|
|
32
|
+
"warning": "accent-yellow",
|
|
33
|
+
"dim": "muted-blue",
|
|
34
|
+
"muted": "muted-grey",
|
|
35
|
+
"border": "muted-blue-dark",
|
|
36
|
+
"borderAccent": "accent-blue",
|
|
37
|
+
"borderMuted": "muted-grey",
|
|
38
|
+
"selectedBg": "bg-tertiary",
|
|
39
|
+
"userMessageBg": "bg-tertiary",
|
|
40
|
+
"userMessageText": "fg-primary",
|
|
41
|
+
"customMessageBg": "bg-secondary",
|
|
42
|
+
"customMessageText": "fg-primary",
|
|
43
|
+
"customMessageLabel": "accent-purple",
|
|
44
|
+
"toolPendingBg": "bg-tertiary",
|
|
45
|
+
"toolSuccessBg": "bg-tertiary",
|
|
46
|
+
"toolErrorBg": "bg-primary",
|
|
47
|
+
"toolTitle": "fg-primary",
|
|
48
|
+
"toolOutput": "fg-primary",
|
|
49
|
+
"mdHeading": "accent-blue",
|
|
50
|
+
"mdLink": "accent-purple",
|
|
51
|
+
"mdLinkUrl": "muted-blue",
|
|
52
|
+
"mdCode": "teal-code",
|
|
53
|
+
"mdCodeBlock": "accent-green-muted",
|
|
54
|
+
"mdCodeBlockBorder": "muted-blue-dark",
|
|
55
|
+
"mdQuote": "fg-primary",
|
|
56
|
+
"mdQuoteBorder": "muted-grey",
|
|
57
|
+
"mdHr": "muted-blue-dark",
|
|
58
|
+
"mdListBullet": "accent-orange",
|
|
59
|
+
"toolDiffAdded": "accent-green",
|
|
60
|
+
"toolDiffRemoved": "accent-red",
|
|
61
|
+
"toolDiffContext": "muted-grey",
|
|
62
|
+
"syntaxComment": "muted-blue",
|
|
63
|
+
"syntaxKeyword": "accent-purple",
|
|
64
|
+
"syntaxFunction": "accent-blue",
|
|
65
|
+
"syntaxVariable": "accent-cyan-bright",
|
|
66
|
+
"syntaxString": "string-amber",
|
|
67
|
+
"syntaxNumber": "accent-orange",
|
|
68
|
+
"syntaxType": "accent-cyan",
|
|
69
|
+
"syntaxOperator": "fg-primary",
|
|
70
|
+
"syntaxPunctuation": "muted-grey",
|
|
71
|
+
"thinkingOff": "muted-blue-dark",
|
|
72
|
+
"thinkingMinimal": "muted-grey",
|
|
73
|
+
"thinkingLow": "accent-purple",
|
|
74
|
+
"thinkingMedium": "accent-blue",
|
|
75
|
+
"thinkingHigh": "accent-cyan",
|
|
76
|
+
"thinkingXhigh": "accent-yellow",
|
|
77
|
+
"thinkingText": "fg-primary",
|
|
78
|
+
"bashMode": "accent-green",
|
|
79
|
+
"oscFg": "fg-primary",
|
|
80
|
+
"oscBg": "bg-primary"
|
|
81
|
+
},
|
|
82
|
+
"export": {
|
|
83
|
+
"pageBg": "#011627",
|
|
84
|
+
"cardBg": "#0d1f35",
|
|
85
|
+
"infoBg": "#1a2d42"
|
|
86
|
+
}
|
|
87
|
+
}
|
package/theme/nord.json
ADDED
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "nord",
|
|
3
|
+
"vars": {
|
|
4
|
+
"bg-primary": "#2e3440",
|
|
5
|
+
"bg-secondary": "#3b4252",
|
|
6
|
+
"bg-tertiary": "#434c5e",
|
|
7
|
+
"fg-primary": "#e5e9f0",
|
|
8
|
+
"fg-secondary": "#d8dee9",
|
|
9
|
+
"accent-blue": "#5e81ac",
|
|
10
|
+
"accent-blue-light": "#81a1c1",
|
|
11
|
+
"accent-cyan": "#88c0d0",
|
|
12
|
+
"accent-cyan-light": "#8fbcbb",
|
|
13
|
+
"accent-red": "#bf616a",
|
|
14
|
+
"accent-orange": "#d08770",
|
|
15
|
+
"accent-yellow": "#ebcb8b",
|
|
16
|
+
"accent-green": "#a3be8c",
|
|
17
|
+
"accent-purple": "#b48ead",
|
|
18
|
+
"muted-grey": "#616e88",
|
|
19
|
+
"muted-dark": "#4c566a"
|
|
20
|
+
},
|
|
21
|
+
"colors": {
|
|
22
|
+
"text": "fg-primary",
|
|
23
|
+
"textBg": "bg-primary",
|
|
24
|
+
"accent": "accent-cyan",
|
|
25
|
+
"success": "accent-green",
|
|
26
|
+
"error": "accent-red",
|
|
27
|
+
"warning": "accent-yellow",
|
|
28
|
+
"dim": "accent-blue-light",
|
|
29
|
+
"muted": "muted-grey",
|
|
30
|
+
"border": "muted-dark",
|
|
31
|
+
"borderAccent": "accent-cyan",
|
|
32
|
+
"borderMuted": "muted-grey",
|
|
33
|
+
"selectedBg": "bg-tertiary",
|
|
34
|
+
"userMessageBg": "bg-tertiary",
|
|
35
|
+
"userMessageText": "fg-primary",
|
|
36
|
+
"customMessageBg": "bg-secondary",
|
|
37
|
+
"customMessageText": "fg-primary",
|
|
38
|
+
"customMessageLabel": "accent-cyan",
|
|
39
|
+
"toolPendingBg": "bg-tertiary",
|
|
40
|
+
"toolSuccessBg": "bg-tertiary",
|
|
41
|
+
"toolErrorBg": "bg-primary",
|
|
42
|
+
"toolTitle": "fg-primary",
|
|
43
|
+
"toolOutput": "fg-primary",
|
|
44
|
+
"mdHeading": "accent-blue",
|
|
45
|
+
"mdLink": "accent-cyan",
|
|
46
|
+
"mdLinkUrl": "muted-grey",
|
|
47
|
+
"mdCode": "accent-cyan-light",
|
|
48
|
+
"mdCodeBlock": "accent-green",
|
|
49
|
+
"mdCodeBlockBorder": "muted-dark",
|
|
50
|
+
"mdQuote": "fg-secondary",
|
|
51
|
+
"mdQuoteBorder": "muted-grey",
|
|
52
|
+
"mdHr": "muted-dark",
|
|
53
|
+
"mdListBullet": "accent-orange",
|
|
54
|
+
"toolDiffAdded": "accent-green",
|
|
55
|
+
"toolDiffRemoved": "accent-red",
|
|
56
|
+
"toolDiffContext": "muted-grey",
|
|
57
|
+
"syntaxComment": "muted-grey",
|
|
58
|
+
"syntaxKeyword": "accent-blue-light",
|
|
59
|
+
"syntaxFunction": "accent-cyan",
|
|
60
|
+
"syntaxVariable": "accent-orange",
|
|
61
|
+
"syntaxString": "accent-green",
|
|
62
|
+
"syntaxNumber": "accent-cyan-light",
|
|
63
|
+
"syntaxType": "accent-purple",
|
|
64
|
+
"syntaxOperator": "fg-secondary",
|
|
65
|
+
"syntaxPunctuation": "muted-grey",
|
|
66
|
+
"thinkingOff": "muted-dark",
|
|
67
|
+
"thinkingMinimal": "muted-grey",
|
|
68
|
+
"thinkingLow": "accent-purple",
|
|
69
|
+
"thinkingMedium": "accent-blue-light",
|
|
70
|
+
"thinkingHigh": "accent-cyan",
|
|
71
|
+
"thinkingXhigh": "accent-yellow",
|
|
72
|
+
"thinkingText": "fg-primary",
|
|
73
|
+
"bashMode": "accent-green",
|
|
74
|
+
"oscFg": "fg-primary",
|
|
75
|
+
"oscBg": "bg-primary"
|
|
76
|
+
},
|
|
77
|
+
"export": {
|
|
78
|
+
"pageBg": "#2e3440",
|
|
79
|
+
"cardBg": "#343a46",
|
|
80
|
+
"infoBg": "#3b4252"
|
|
81
|
+
}
|
|
82
|
+
}
|