@oh-my-pi/pi-coding-agent 3.15.0 → 3.15.1
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/CHANGELOG.md +10 -0
- package/package.json +4 -4
- package/src/modes/interactive/components/hook-editor.ts +1 -0
- package/src/modes/interactive/components/status-line/separators.ts +4 -4
- package/src/modes/interactive/components/status-line.ts +3 -1
- package/src/modes/interactive/interactive-mode.ts +1 -0
- package/src/modes/interactive/theme/defaults/alabaster.json +99 -0
- package/src/modes/interactive/theme/defaults/amethyst.json +103 -0
- package/src/modes/interactive/theme/defaults/anthracite.json +100 -0
- package/src/modes/interactive/theme/defaults/basalt.json +90 -0
- package/src/modes/interactive/theme/defaults/birch.json +101 -0
- package/src/modes/interactive/theme/defaults/dark-abyss.json +97 -0
- package/src/modes/interactive/theme/defaults/dark-aurora.json +94 -0
- package/src/modes/interactive/theme/defaults/dark-cavern.json +97 -0
- package/src/modes/interactive/theme/defaults/dark-copper.json +94 -0
- package/src/modes/interactive/theme/defaults/dark-cosmos.json +96 -0
- package/src/modes/interactive/theme/defaults/dark-eclipse.json +97 -0
- package/src/modes/interactive/theme/defaults/dark-ember.json +94 -0
- package/src/modes/interactive/theme/defaults/dark-equinox.json +96 -0
- package/src/modes/interactive/theme/defaults/dark-lavender.json +94 -0
- package/src/modes/interactive/theme/defaults/dark-lunar.json +95 -0
- package/src/modes/interactive/theme/defaults/dark-midnight.json +94 -0
- package/src/modes/interactive/theme/defaults/dark-nebula.json +96 -0
- package/src/modes/interactive/theme/defaults/dark-rainforest.json +97 -0
- package/src/modes/interactive/theme/defaults/dark-reef.json +97 -0
- package/src/modes/interactive/theme/defaults/dark-sakura.json +94 -0
- package/src/modes/interactive/theme/defaults/dark-slate.json +94 -0
- package/src/modes/interactive/theme/defaults/dark-solstice.json +96 -0
- package/src/modes/interactive/theme/defaults/dark-starfall.json +97 -0
- package/src/modes/interactive/theme/defaults/dark-swamp.json +96 -0
- package/src/modes/interactive/theme/defaults/dark-taiga.json +97 -0
- package/src/modes/interactive/theme/defaults/dark-terminal.json +94 -0
- package/src/modes/interactive/theme/defaults/dark-tundra.json +97 -0
- package/src/modes/interactive/theme/defaults/dark-twilight.json +97 -0
- package/src/modes/interactive/theme/defaults/dark-volcanic.json +97 -0
- package/src/modes/interactive/theme/defaults/graphite.json +99 -0
- package/src/modes/interactive/theme/defaults/index.ts +128 -0
- package/src/modes/interactive/theme/defaults/light-aurora-day.json +97 -0
- package/src/modes/interactive/theme/defaults/light-canyon.json +97 -0
- package/src/modes/interactive/theme/defaults/light-cirrus.json +96 -0
- package/src/modes/interactive/theme/defaults/light-coral.json +94 -0
- package/src/modes/interactive/theme/defaults/light-dawn.json +96 -0
- package/src/modes/interactive/theme/defaults/light-dunes.json +97 -0
- package/src/modes/interactive/theme/defaults/light-eucalyptus.json +94 -0
- package/src/modes/interactive/theme/defaults/light-frost.json +94 -0
- package/src/modes/interactive/theme/defaults/light-glacier.json +97 -0
- package/src/modes/interactive/theme/defaults/light-haze.json +96 -0
- package/src/modes/interactive/theme/defaults/light-honeycomb.json +94 -0
- package/src/modes/interactive/theme/defaults/light-lagoon.json +97 -0
- package/src/modes/interactive/theme/defaults/light-lavender.json +94 -0
- package/src/modes/interactive/theme/defaults/light-meadow.json +97 -0
- package/src/modes/interactive/theme/defaults/light-mint.json +94 -0
- package/src/modes/interactive/theme/defaults/light-opal.json +97 -0
- package/src/modes/interactive/theme/defaults/light-orchard.json +97 -0
- package/src/modes/interactive/theme/defaults/light-paper.json +94 -0
- package/src/modes/interactive/theme/defaults/light-prism.json +96 -0
- package/src/modes/interactive/theme/defaults/light-sand.json +94 -0
- package/src/modes/interactive/theme/defaults/light-savanna.json +97 -0
- package/src/modes/interactive/theme/defaults/light-soleil.json +96 -0
- package/src/modes/interactive/theme/defaults/light-wetland.json +97 -0
- package/src/modes/interactive/theme/defaults/light-zenith.json +95 -0
- package/src/modes/interactive/theme/defaults/limestone.json +100 -0
- package/src/modes/interactive/theme/defaults/mahogany.json +104 -0
- package/src/modes/interactive/theme/defaults/marble.json +99 -0
- package/src/modes/interactive/theme/defaults/obsidian.json +90 -0
- package/src/modes/interactive/theme/defaults/onyx.json +90 -0
- package/src/modes/interactive/theme/defaults/pearl.json +99 -0
- package/src/modes/interactive/theme/defaults/porcelain.json +90 -0
- package/src/modes/interactive/theme/defaults/quartz.json +102 -0
- package/src/modes/interactive/theme/defaults/sandstone.json +101 -0
- package/src/modes/interactive/theme/defaults/titanium.json +89 -0
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://raw.githubusercontent.com/can1357/oh-my-pi/main/packages/coding-agent/theme-schema.json",
|
|
3
|
+
"name": "dark-abyss",
|
|
4
|
+
"vars": {
|
|
5
|
+
"abyssBlack": "#05070B",
|
|
6
|
+
"trenchBlue": "#0B111A",
|
|
7
|
+
"pressureBlue": "#142338",
|
|
8
|
+
"slateBlue": "#22324B",
|
|
9
|
+
"abyssCyan": "#3FD3FF",
|
|
10
|
+
"glowCyan": "#7BE7FF",
|
|
11
|
+
"crystalBlue": "#5AA4FF",
|
|
12
|
+
"kelpGreen": "#35C28A",
|
|
13
|
+
"warningAmber": "#F2B04C",
|
|
14
|
+
"errorRed": "#E85B5B",
|
|
15
|
+
"mutedSteel": "#8FA1B5",
|
|
16
|
+
"dimSteel": "#617289"
|
|
17
|
+
},
|
|
18
|
+
"colors": {
|
|
19
|
+
"accent": "abyssCyan",
|
|
20
|
+
"border": "slateBlue",
|
|
21
|
+
"borderAccent": "glowCyan",
|
|
22
|
+
"borderMuted": "pressureBlue",
|
|
23
|
+
"success": "kelpGreen",
|
|
24
|
+
"error": "errorRed",
|
|
25
|
+
"warning": "warningAmber",
|
|
26
|
+
"muted": "mutedSteel",
|
|
27
|
+
"dim": "dimSteel",
|
|
28
|
+
"text": "",
|
|
29
|
+
"thinkingText": "mutedSteel",
|
|
30
|
+
|
|
31
|
+
"selectedBg": "pressureBlue",
|
|
32
|
+
"userMessageBg": "trenchBlue",
|
|
33
|
+
"userMessageText": "",
|
|
34
|
+
"customMessageBg": "#101826",
|
|
35
|
+
"customMessageText": "",
|
|
36
|
+
"customMessageLabel": "crystalBlue",
|
|
37
|
+
"toolPendingBg": "abyssBlack",
|
|
38
|
+
"toolSuccessBg": "#0B1512",
|
|
39
|
+
"toolErrorBg": "#1A0F12",
|
|
40
|
+
"toolTitle": "",
|
|
41
|
+
"toolOutput": "mutedSteel",
|
|
42
|
+
|
|
43
|
+
"mdHeading": "warningAmber",
|
|
44
|
+
"mdLink": "abyssCyan",
|
|
45
|
+
"mdLinkUrl": "dimSteel",
|
|
46
|
+
"mdCode": "crystalBlue",
|
|
47
|
+
"mdCodeBlock": "glowCyan",
|
|
48
|
+
"mdCodeBlockBorder": "slateBlue",
|
|
49
|
+
"mdQuote": "mutedSteel",
|
|
50
|
+
"mdQuoteBorder": "slateBlue",
|
|
51
|
+
"mdHr": "pressureBlue",
|
|
52
|
+
"mdListBullet": "abyssCyan",
|
|
53
|
+
|
|
54
|
+
"toolDiffAdded": "kelpGreen",
|
|
55
|
+
"toolDiffRemoved": "errorRed",
|
|
56
|
+
"toolDiffContext": "mutedSteel",
|
|
57
|
+
|
|
58
|
+
"syntaxComment": "dimSteel",
|
|
59
|
+
"syntaxKeyword": "abyssCyan",
|
|
60
|
+
"syntaxFunction": "warningAmber",
|
|
61
|
+
"syntaxVariable": "crystalBlue",
|
|
62
|
+
"syntaxString": "warningAmber",
|
|
63
|
+
"syntaxNumber": "kelpGreen",
|
|
64
|
+
"syntaxType": "glowCyan",
|
|
65
|
+
"syntaxOperator": "mutedSteel",
|
|
66
|
+
"syntaxPunctuation": "mutedSteel",
|
|
67
|
+
|
|
68
|
+
"thinkingOff": "pressureBlue",
|
|
69
|
+
"thinkingMinimal": "dimSteel",
|
|
70
|
+
"thinkingLow": "slateBlue",
|
|
71
|
+
"thinkingMedium": "abyssCyan",
|
|
72
|
+
"thinkingHigh": "glowCyan",
|
|
73
|
+
"thinkingXhigh": "crystalBlue",
|
|
74
|
+
|
|
75
|
+
"bashMode": "abyssCyan",
|
|
76
|
+
|
|
77
|
+
"statusLineBg": "#05070B",
|
|
78
|
+
"statusLineSep": "slateBlue",
|
|
79
|
+
"statusLineModel": "glowCyan",
|
|
80
|
+
"statusLinePath": "crystalBlue",
|
|
81
|
+
"statusLineGitClean": "kelpGreen",
|
|
82
|
+
"statusLineGitDirty": "warningAmber",
|
|
83
|
+
"statusLineContext": "mutedSteel",
|
|
84
|
+
"statusLineSpend": "abyssCyan",
|
|
85
|
+
"statusLineStaged": "kelpGreen",
|
|
86
|
+
"statusLineDirty": "warningAmber",
|
|
87
|
+
"statusLineUntracked": "glowCyan",
|
|
88
|
+
"statusLineOutput": "crystalBlue",
|
|
89
|
+
"statusLineCost": "warningAmber",
|
|
90
|
+
"statusLineSubagents": "glowCyan"
|
|
91
|
+
},
|
|
92
|
+
"export": {
|
|
93
|
+
"pageBg": "#05070B",
|
|
94
|
+
"cardBg": "#0B111A",
|
|
95
|
+
"infoBg": "#142338"
|
|
96
|
+
}
|
|
97
|
+
}
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://raw.githubusercontent.com/can1357/oh-my-pi/main/packages/coding-agent/theme-schema.json",
|
|
3
|
+
"name": "dark-aurora",
|
|
4
|
+
"vars": {
|
|
5
|
+
"cyan": "#00e8c6",
|
|
6
|
+
"blue": "#00b4d8",
|
|
7
|
+
"green": "#00ff9f",
|
|
8
|
+
"red": "#ff0055",
|
|
9
|
+
"yellow": "#ffee00",
|
|
10
|
+
"gray": "#a0a0a0",
|
|
11
|
+
"dimGray": "#606060",
|
|
12
|
+
"darkGray": "#303030",
|
|
13
|
+
"accent": "#bd00ff",
|
|
14
|
+
"selectedBg": "#1a1a2e",
|
|
15
|
+
"userMsgBg": "#0f0f1a",
|
|
16
|
+
"toolPendingBg": "#131320",
|
|
17
|
+
"toolSuccessBg": "#0b161a",
|
|
18
|
+
"toolErrorBg": "#201015",
|
|
19
|
+
"customMsgBg": "#151020"
|
|
20
|
+
},
|
|
21
|
+
"colors": {
|
|
22
|
+
"accent": "accent",
|
|
23
|
+
"border": "blue",
|
|
24
|
+
"borderAccent": "accent",
|
|
25
|
+
"borderMuted": "darkGray",
|
|
26
|
+
"success": "green",
|
|
27
|
+
"error": "red",
|
|
28
|
+
"warning": "yellow",
|
|
29
|
+
"muted": "gray",
|
|
30
|
+
"dim": "dimGray",
|
|
31
|
+
"text": "",
|
|
32
|
+
"thinkingText": "gray",
|
|
33
|
+
"selectedBg": "selectedBg",
|
|
34
|
+
"userMessageBg": "userMsgBg",
|
|
35
|
+
"userMessageText": "",
|
|
36
|
+
"customMessageBg": "customMsgBg",
|
|
37
|
+
"customMessageText": "",
|
|
38
|
+
"customMessageLabel": "accent",
|
|
39
|
+
"toolPendingBg": "toolPendingBg",
|
|
40
|
+
"toolSuccessBg": "toolSuccessBg",
|
|
41
|
+
"toolErrorBg": "toolErrorBg",
|
|
42
|
+
"toolTitle": "",
|
|
43
|
+
"toolOutput": "gray",
|
|
44
|
+
"mdHeading": "#00e8c6",
|
|
45
|
+
"mdLink": "#00b4d8",
|
|
46
|
+
"mdLinkUrl": "dimGray",
|
|
47
|
+
"mdCode": "#bd00ff",
|
|
48
|
+
"mdCodeBlock": "#00b4d8",
|
|
49
|
+
"mdCodeBlockBorder": "darkGray",
|
|
50
|
+
"mdQuote": "gray",
|
|
51
|
+
"mdQuoteBorder": "darkGray",
|
|
52
|
+
"mdHr": "darkGray",
|
|
53
|
+
"mdListBullet": "accent",
|
|
54
|
+
"toolDiffAdded": "green",
|
|
55
|
+
"toolDiffRemoved": "red",
|
|
56
|
+
"toolDiffContext": "gray",
|
|
57
|
+
"link": "#00b4d8",
|
|
58
|
+
"syntaxComment": "#a0a0a0",
|
|
59
|
+
"syntaxKeyword": "#00b4d8",
|
|
60
|
+
"syntaxFunction": "#ffee00",
|
|
61
|
+
"syntaxVariable": "#00e8c6",
|
|
62
|
+
"syntaxString": "#ff0055",
|
|
63
|
+
"syntaxNumber": "#00ff9f",
|
|
64
|
+
"syntaxType": "#bd00ff",
|
|
65
|
+
"syntaxOperator": "#606060",
|
|
66
|
+
"syntaxPunctuation": "#606060",
|
|
67
|
+
"thinkingOff": "darkGray",
|
|
68
|
+
"thinkingMinimal": "dimGray",
|
|
69
|
+
"thinkingLow": "blue",
|
|
70
|
+
"thinkingMedium": "cyan",
|
|
71
|
+
"thinkingHigh": "accent",
|
|
72
|
+
"thinkingXhigh": "red",
|
|
73
|
+
"bashMode": "accent",
|
|
74
|
+
"statusLineBg": "#1a1a2e",
|
|
75
|
+
"statusLineSep": "#606060",
|
|
76
|
+
"statusLineModel": "accent",
|
|
77
|
+
"statusLinePath": "blue",
|
|
78
|
+
"statusLineGitClean": "green",
|
|
79
|
+
"statusLineGitDirty": "yellow",
|
|
80
|
+
"statusLineContext": "gray",
|
|
81
|
+
"statusLineSpend": "cyan",
|
|
82
|
+
"statusLineStaged": 28,
|
|
83
|
+
"statusLineDirty": 178,
|
|
84
|
+
"statusLineUntracked": 39,
|
|
85
|
+
"statusLineOutput": 205,
|
|
86
|
+
"statusLineCost": 205,
|
|
87
|
+
"statusLineSubagents": "accent"
|
|
88
|
+
},
|
|
89
|
+
"export": {
|
|
90
|
+
"pageBg": "#0f0f1a",
|
|
91
|
+
"cardBg": "#131320",
|
|
92
|
+
"infoBg": "#0b161a"
|
|
93
|
+
}
|
|
94
|
+
}
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://raw.githubusercontent.com/can1357/oh-my-pi/main/packages/coding-agent/theme-schema.json",
|
|
3
|
+
"name": "dark-cavern",
|
|
4
|
+
"vars": {
|
|
5
|
+
"caveBlack": "#0E0F12",
|
|
6
|
+
"limestoneDark": "#14181D",
|
|
7
|
+
"stoneMid": "#1D2229",
|
|
8
|
+
"slabGray": "#232A33",
|
|
9
|
+
"stalactite": "#2F3945",
|
|
10
|
+
"crystalBlue": "#5FB2D8",
|
|
11
|
+
"veinBlue": "#87C6E6",
|
|
12
|
+
"mineralGreen": "#6FB86A",
|
|
13
|
+
"amber": "#D9A441",
|
|
14
|
+
"errorRed": "#E06C75",
|
|
15
|
+
"mutedGray": "#A5ADBA",
|
|
16
|
+
"dimGray": "#6B7381"
|
|
17
|
+
},
|
|
18
|
+
"colors": {
|
|
19
|
+
"accent": "crystalBlue",
|
|
20
|
+
"border": "stalactite",
|
|
21
|
+
"borderAccent": "veinBlue",
|
|
22
|
+
"borderMuted": "stoneMid",
|
|
23
|
+
"success": "mineralGreen",
|
|
24
|
+
"error": "errorRed",
|
|
25
|
+
"warning": "amber",
|
|
26
|
+
"muted": "mutedGray",
|
|
27
|
+
"dim": "dimGray",
|
|
28
|
+
"text": "",
|
|
29
|
+
"thinkingText": "mutedGray",
|
|
30
|
+
|
|
31
|
+
"selectedBg": "stoneMid",
|
|
32
|
+
"userMessageBg": "limestoneDark",
|
|
33
|
+
"userMessageText": "",
|
|
34
|
+
"customMessageBg": "#1A1F26",
|
|
35
|
+
"customMessageText": "",
|
|
36
|
+
"customMessageLabel": "veinBlue",
|
|
37
|
+
"toolPendingBg": "caveBlack",
|
|
38
|
+
"toolSuccessBg": "#131B16",
|
|
39
|
+
"toolErrorBg": "#221416",
|
|
40
|
+
"toolTitle": "",
|
|
41
|
+
"toolOutput": "mutedGray",
|
|
42
|
+
|
|
43
|
+
"mdHeading": "amber",
|
|
44
|
+
"mdLink": "crystalBlue",
|
|
45
|
+
"mdLinkUrl": "dimGray",
|
|
46
|
+
"mdCode": "veinBlue",
|
|
47
|
+
"mdCodeBlock": "crystalBlue",
|
|
48
|
+
"mdCodeBlockBorder": "stalactite",
|
|
49
|
+
"mdQuote": "mutedGray",
|
|
50
|
+
"mdQuoteBorder": "stalactite",
|
|
51
|
+
"mdHr": "stoneMid",
|
|
52
|
+
"mdListBullet": "amber",
|
|
53
|
+
|
|
54
|
+
"toolDiffAdded": "mineralGreen",
|
|
55
|
+
"toolDiffRemoved": "errorRed",
|
|
56
|
+
"toolDiffContext": "mutedGray",
|
|
57
|
+
|
|
58
|
+
"syntaxComment": "dimGray",
|
|
59
|
+
"syntaxKeyword": "crystalBlue",
|
|
60
|
+
"syntaxFunction": "amber",
|
|
61
|
+
"syntaxVariable": "veinBlue",
|
|
62
|
+
"syntaxString": "mineralGreen",
|
|
63
|
+
"syntaxNumber": "amber",
|
|
64
|
+
"syntaxType": "crystalBlue",
|
|
65
|
+
"syntaxOperator": "mutedGray",
|
|
66
|
+
"syntaxPunctuation": "mutedGray",
|
|
67
|
+
|
|
68
|
+
"thinkingOff": "stoneMid",
|
|
69
|
+
"thinkingMinimal": "dimGray",
|
|
70
|
+
"thinkingLow": "stalactite",
|
|
71
|
+
"thinkingMedium": "crystalBlue",
|
|
72
|
+
"thinkingHigh": "veinBlue",
|
|
73
|
+
"thinkingXhigh": "amber",
|
|
74
|
+
|
|
75
|
+
"bashMode": "crystalBlue",
|
|
76
|
+
|
|
77
|
+
"statusLineBg": "#0B0D10",
|
|
78
|
+
"statusLineSep": "stalactite",
|
|
79
|
+
"statusLineModel": "amber",
|
|
80
|
+
"statusLinePath": "crystalBlue",
|
|
81
|
+
"statusLineGitClean": "mineralGreen",
|
|
82
|
+
"statusLineGitDirty": "amber",
|
|
83
|
+
"statusLineContext": "mutedGray",
|
|
84
|
+
"statusLineSpend": "veinBlue",
|
|
85
|
+
"statusLineStaged": "mineralGreen",
|
|
86
|
+
"statusLineDirty": "amber",
|
|
87
|
+
"statusLineUntracked": "veinBlue",
|
|
88
|
+
"statusLineOutput": "crystalBlue",
|
|
89
|
+
"statusLineCost": "amber",
|
|
90
|
+
"statusLineSubagents": "crystalBlue"
|
|
91
|
+
},
|
|
92
|
+
"export": {
|
|
93
|
+
"pageBg": "#0B0D10",
|
|
94
|
+
"cardBg": "#14181D",
|
|
95
|
+
"infoBg": "#1D2229"
|
|
96
|
+
}
|
|
97
|
+
}
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://raw.githubusercontent.com/can1357/oh-my-pi/main/packages/coding-agent/theme-schema.json",
|
|
3
|
+
"name": "dark-copper",
|
|
4
|
+
"vars": {
|
|
5
|
+
"cyan": "#88c0d0",
|
|
6
|
+
"blue": "#5e81ac",
|
|
7
|
+
"green": "#a3be8c",
|
|
8
|
+
"red": "#bf616a",
|
|
9
|
+
"yellow": "#ebcb8b",
|
|
10
|
+
"gray": "#e5e9f0",
|
|
11
|
+
"dimGray": "#4c566a",
|
|
12
|
+
"darkGray": "#434c5e",
|
|
13
|
+
"accent": "#d08770",
|
|
14
|
+
"selectedBg": "#2e3440",
|
|
15
|
+
"userMsgBg": "#242933",
|
|
16
|
+
"toolPendingBg": "#323846",
|
|
17
|
+
"toolSuccessBg": "#2d333b",
|
|
18
|
+
"toolErrorBg": "#362b2f",
|
|
19
|
+
"customMsgBg": "#2d2f38"
|
|
20
|
+
},
|
|
21
|
+
"colors": {
|
|
22
|
+
"accent": "accent",
|
|
23
|
+
"border": "blue",
|
|
24
|
+
"borderAccent": "accent",
|
|
25
|
+
"borderMuted": "darkGray",
|
|
26
|
+
"success": "green",
|
|
27
|
+
"error": "red",
|
|
28
|
+
"warning": "yellow",
|
|
29
|
+
"muted": "gray",
|
|
30
|
+
"dim": "dimGray",
|
|
31
|
+
"text": "",
|
|
32
|
+
"thinkingText": "gray",
|
|
33
|
+
"selectedBg": "selectedBg",
|
|
34
|
+
"userMessageBg": "userMsgBg",
|
|
35
|
+
"userMessageText": "",
|
|
36
|
+
"customMessageBg": "customMsgBg",
|
|
37
|
+
"customMessageText": "",
|
|
38
|
+
"customMessageLabel": "accent",
|
|
39
|
+
"toolPendingBg": "toolPendingBg",
|
|
40
|
+
"toolSuccessBg": "toolSuccessBg",
|
|
41
|
+
"toolErrorBg": "toolErrorBg",
|
|
42
|
+
"toolTitle": "",
|
|
43
|
+
"toolOutput": "gray",
|
|
44
|
+
"mdHeading": "#d08770",
|
|
45
|
+
"mdLink": "#5e81ac",
|
|
46
|
+
"mdLinkUrl": "dimGray",
|
|
47
|
+
"mdCode": "#ebcb8b",
|
|
48
|
+
"mdCodeBlock": "#a3be8c",
|
|
49
|
+
"mdCodeBlockBorder": "darkGray",
|
|
50
|
+
"mdQuote": "gray",
|
|
51
|
+
"mdQuoteBorder": "darkGray",
|
|
52
|
+
"mdHr": "darkGray",
|
|
53
|
+
"mdListBullet": "accent",
|
|
54
|
+
"toolDiffAdded": "green",
|
|
55
|
+
"toolDiffRemoved": "red",
|
|
56
|
+
"toolDiffContext": "gray",
|
|
57
|
+
"link": "#5e81ac",
|
|
58
|
+
"syntaxComment": "#e5e9f0",
|
|
59
|
+
"syntaxKeyword": "#5e81ac",
|
|
60
|
+
"syntaxFunction": "#ebcb8b",
|
|
61
|
+
"syntaxVariable": "#88c0d0",
|
|
62
|
+
"syntaxString": "#bf616a",
|
|
63
|
+
"syntaxNumber": "#a3be8c",
|
|
64
|
+
"syntaxType": "#d08770",
|
|
65
|
+
"syntaxOperator": "#4c566a",
|
|
66
|
+
"syntaxPunctuation": "#4c566a",
|
|
67
|
+
"thinkingOff": "darkGray",
|
|
68
|
+
"thinkingMinimal": "dimGray",
|
|
69
|
+
"thinkingLow": "blue",
|
|
70
|
+
"thinkingMedium": "cyan",
|
|
71
|
+
"thinkingHigh": "accent",
|
|
72
|
+
"thinkingXhigh": "red",
|
|
73
|
+
"bashMode": "accent",
|
|
74
|
+
"statusLineBg": "#2e3440",
|
|
75
|
+
"statusLineSep": "#4c566a",
|
|
76
|
+
"statusLineModel": "accent",
|
|
77
|
+
"statusLinePath": "blue",
|
|
78
|
+
"statusLineGitClean": "green",
|
|
79
|
+
"statusLineGitDirty": "yellow",
|
|
80
|
+
"statusLineContext": "gray",
|
|
81
|
+
"statusLineSpend": "cyan",
|
|
82
|
+
"statusLineStaged": 28,
|
|
83
|
+
"statusLineDirty": 178,
|
|
84
|
+
"statusLineUntracked": 39,
|
|
85
|
+
"statusLineOutput": 205,
|
|
86
|
+
"statusLineCost": 205,
|
|
87
|
+
"statusLineSubagents": "accent"
|
|
88
|
+
},
|
|
89
|
+
"export": {
|
|
90
|
+
"pageBg": "#242933",
|
|
91
|
+
"cardBg": "#323846",
|
|
92
|
+
"infoBg": "#2d333b"
|
|
93
|
+
}
|
|
94
|
+
}
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://raw.githubusercontent.com/can1357/oh-my-pi/main/packages/coding-agent/theme-schema.json",
|
|
3
|
+
"name": "dark-cosmos",
|
|
4
|
+
"vars": {
|
|
5
|
+
"void": "#040406",
|
|
6
|
+
"shadow": "#101019",
|
|
7
|
+
"galaxy": "#3a2a6d",
|
|
8
|
+
"nebula": "#5b4bb7",
|
|
9
|
+
"starlight": "#f4f1ff",
|
|
10
|
+
"starblue": "#7aa4ff",
|
|
11
|
+
"success": "#63cfa5",
|
|
12
|
+
"error": "#e05a6a",
|
|
13
|
+
"warning": "#f0b05a",
|
|
14
|
+
"muted": "#8c88a3",
|
|
15
|
+
"dim": "#66627b"
|
|
16
|
+
},
|
|
17
|
+
"colors": {
|
|
18
|
+
"accent": "nebula",
|
|
19
|
+
"border": "shadow",
|
|
20
|
+
"borderAccent": "starblue",
|
|
21
|
+
"borderMuted": "void",
|
|
22
|
+
"success": "success",
|
|
23
|
+
"error": "error",
|
|
24
|
+
"warning": "warning",
|
|
25
|
+
"muted": "muted",
|
|
26
|
+
"dim": "dim",
|
|
27
|
+
"text": "",
|
|
28
|
+
"thinkingText": "muted",
|
|
29
|
+
|
|
30
|
+
"selectedBg": "#141326",
|
|
31
|
+
"userMessageBg": "#0a0a12",
|
|
32
|
+
"userMessageText": "",
|
|
33
|
+
"customMessageBg": "#17152b",
|
|
34
|
+
"customMessageText": "",
|
|
35
|
+
"customMessageLabel": "nebula",
|
|
36
|
+
"toolPendingBg": "#0b0d14",
|
|
37
|
+
"toolSuccessBg": "#0e1514",
|
|
38
|
+
"toolErrorBg": "#1a0f14",
|
|
39
|
+
"toolTitle": "",
|
|
40
|
+
"toolOutput": "muted",
|
|
41
|
+
|
|
42
|
+
"mdHeading": "starlight",
|
|
43
|
+
"mdLink": "starblue",
|
|
44
|
+
"mdLinkUrl": "dim",
|
|
45
|
+
"mdCode": "starlight",
|
|
46
|
+
"mdCodeBlock": "starlight",
|
|
47
|
+
"mdCodeBlockBorder": "shadow",
|
|
48
|
+
"mdQuote": "muted",
|
|
49
|
+
"mdQuoteBorder": "shadow",
|
|
50
|
+
"mdHr": "shadow",
|
|
51
|
+
"mdListBullet": "nebula",
|
|
52
|
+
|
|
53
|
+
"toolDiffAdded": "success",
|
|
54
|
+
"toolDiffRemoved": "error",
|
|
55
|
+
"toolDiffContext": "muted",
|
|
56
|
+
|
|
57
|
+
"syntaxComment": "dim",
|
|
58
|
+
"syntaxKeyword": "nebula",
|
|
59
|
+
"syntaxFunction": "starlight",
|
|
60
|
+
"syntaxVariable": "starblue",
|
|
61
|
+
"syntaxString": "warning",
|
|
62
|
+
"syntaxNumber": "starlight",
|
|
63
|
+
"syntaxType": "success",
|
|
64
|
+
"syntaxOperator": "starlight",
|
|
65
|
+
"syntaxPunctuation": "starlight",
|
|
66
|
+
|
|
67
|
+
"thinkingOff": "void",
|
|
68
|
+
"thinkingMinimal": "dim",
|
|
69
|
+
"thinkingLow": "starblue",
|
|
70
|
+
"thinkingMedium": "galaxy",
|
|
71
|
+
"thinkingHigh": "nebula",
|
|
72
|
+
"thinkingXhigh": "starlight",
|
|
73
|
+
|
|
74
|
+
"bashMode": "starblue",
|
|
75
|
+
|
|
76
|
+
"statusLineBg": "#07070d",
|
|
77
|
+
"statusLineSep": "#26223a",
|
|
78
|
+
"statusLineModel": "nebula",
|
|
79
|
+
"statusLinePath": "starblue",
|
|
80
|
+
"statusLineGitClean": "success",
|
|
81
|
+
"statusLineGitDirty": "warning",
|
|
82
|
+
"statusLineContext": "muted",
|
|
83
|
+
"statusLineSpend": "galaxy",
|
|
84
|
+
"statusLineStaged": "success",
|
|
85
|
+
"statusLineDirty": "warning",
|
|
86
|
+
"statusLineUntracked": "starblue",
|
|
87
|
+
"statusLineOutput": "starlight",
|
|
88
|
+
"statusLineCost": "nebula",
|
|
89
|
+
"statusLineSubagents": "nebula"
|
|
90
|
+
},
|
|
91
|
+
"export": {
|
|
92
|
+
"pageBg": "#07070d",
|
|
93
|
+
"cardBg": "#0f1018",
|
|
94
|
+
"infoBg": "#17152a"
|
|
95
|
+
}
|
|
96
|
+
}
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://raw.githubusercontent.com/can1357/oh-my-pi/main/packages/coding-agent/theme-schema.json",
|
|
3
|
+
"name": "dark-eclipse",
|
|
4
|
+
"vars": {
|
|
5
|
+
"void": "#050507",
|
|
6
|
+
"obsidian": "#111018",
|
|
7
|
+
"corona": "#f5c542",
|
|
8
|
+
"ember": "#e08a2e",
|
|
9
|
+
"violet": "#3b1d5e",
|
|
10
|
+
"astral": "#4c6b8a",
|
|
11
|
+
"silver": "#cfc7b8",
|
|
12
|
+
"success": "#5fbf87",
|
|
13
|
+
"error": "#d1495b",
|
|
14
|
+
"warning": "#f0b25c",
|
|
15
|
+
"muted": "#8b8792",
|
|
16
|
+
"dim": "#67616c"
|
|
17
|
+
},
|
|
18
|
+
"colors": {
|
|
19
|
+
"accent": "corona",
|
|
20
|
+
"border": "astral",
|
|
21
|
+
"borderAccent": "corona",
|
|
22
|
+
"borderMuted": "obsidian",
|
|
23
|
+
"success": "success",
|
|
24
|
+
"error": "error",
|
|
25
|
+
"warning": "warning",
|
|
26
|
+
"muted": "muted",
|
|
27
|
+
"dim": "dim",
|
|
28
|
+
"text": "",
|
|
29
|
+
"thinkingText": "muted",
|
|
30
|
+
|
|
31
|
+
"selectedBg": "#1a1724",
|
|
32
|
+
"userMessageBg": "#0f0d14",
|
|
33
|
+
"userMessageText": "",
|
|
34
|
+
"customMessageBg": "#1c1626",
|
|
35
|
+
"customMessageText": "",
|
|
36
|
+
"customMessageLabel": "violet",
|
|
37
|
+
"toolPendingBg": "#0d0f16",
|
|
38
|
+
"toolSuccessBg": "#111817",
|
|
39
|
+
"toolErrorBg": "#1b0f12",
|
|
40
|
+
"toolTitle": "",
|
|
41
|
+
"toolOutput": "muted",
|
|
42
|
+
|
|
43
|
+
"mdHeading": "corona",
|
|
44
|
+
"mdLink": "astral",
|
|
45
|
+
"mdLinkUrl": "dim",
|
|
46
|
+
"mdCode": "silver",
|
|
47
|
+
"mdCodeBlock": "silver",
|
|
48
|
+
"mdCodeBlockBorder": "obsidian",
|
|
49
|
+
"mdQuote": "muted",
|
|
50
|
+
"mdQuoteBorder": "obsidian",
|
|
51
|
+
"mdHr": "obsidian",
|
|
52
|
+
"mdListBullet": "corona",
|
|
53
|
+
|
|
54
|
+
"toolDiffAdded": "success",
|
|
55
|
+
"toolDiffRemoved": "error",
|
|
56
|
+
"toolDiffContext": "muted",
|
|
57
|
+
|
|
58
|
+
"syntaxComment": "dim",
|
|
59
|
+
"syntaxKeyword": "violet",
|
|
60
|
+
"syntaxFunction": "corona",
|
|
61
|
+
"syntaxVariable": "astral",
|
|
62
|
+
"syntaxString": "warning",
|
|
63
|
+
"syntaxNumber": "silver",
|
|
64
|
+
"syntaxType": "success",
|
|
65
|
+
"syntaxOperator": "silver",
|
|
66
|
+
"syntaxPunctuation": "silver",
|
|
67
|
+
|
|
68
|
+
"thinkingOff": "obsidian",
|
|
69
|
+
"thinkingMinimal": "dim",
|
|
70
|
+
"thinkingLow": "astral",
|
|
71
|
+
"thinkingMedium": "violet",
|
|
72
|
+
"thinkingHigh": "ember",
|
|
73
|
+
"thinkingXhigh": "corona",
|
|
74
|
+
|
|
75
|
+
"bashMode": "astral",
|
|
76
|
+
|
|
77
|
+
"statusLineBg": "#0b0b10",
|
|
78
|
+
"statusLineSep": "#2a2635",
|
|
79
|
+
"statusLineModel": "violet",
|
|
80
|
+
"statusLinePath": "astral",
|
|
81
|
+
"statusLineGitClean": "success",
|
|
82
|
+
"statusLineGitDirty": "warning",
|
|
83
|
+
"statusLineContext": "muted",
|
|
84
|
+
"statusLineSpend": "corona",
|
|
85
|
+
"statusLineStaged": "success",
|
|
86
|
+
"statusLineDirty": "warning",
|
|
87
|
+
"statusLineUntracked": "astral",
|
|
88
|
+
"statusLineOutput": "silver",
|
|
89
|
+
"statusLineCost": "corona",
|
|
90
|
+
"statusLineSubagents": "corona"
|
|
91
|
+
},
|
|
92
|
+
"export": {
|
|
93
|
+
"pageBg": "#08070d",
|
|
94
|
+
"cardBg": "#101018",
|
|
95
|
+
"infoBg": "#1a1523"
|
|
96
|
+
}
|
|
97
|
+
}
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://raw.githubusercontent.com/can1357/oh-my-pi/main/packages/coding-agent/theme-schema.json",
|
|
3
|
+
"name": "dark-ember",
|
|
4
|
+
"vars": {
|
|
5
|
+
"cyan": "#56b6c2",
|
|
6
|
+
"blue": "#5f8dd3",
|
|
7
|
+
"green": "#98c379",
|
|
8
|
+
"red": "#e06c75",
|
|
9
|
+
"yellow": "#e5c07b",
|
|
10
|
+
"gray": "#abb2bf",
|
|
11
|
+
"dimGray": "#5c6370",
|
|
12
|
+
"darkGray": "#4b5263",
|
|
13
|
+
"accent": "#ff6f61",
|
|
14
|
+
"selectedBg": "#2c313a",
|
|
15
|
+
"userMsgBg": "#21252b",
|
|
16
|
+
"toolPendingBg": "#282c34",
|
|
17
|
+
"toolSuccessBg": "#23272e",
|
|
18
|
+
"toolErrorBg": "#2e2525",
|
|
19
|
+
"customMsgBg": "#2a2530"
|
|
20
|
+
},
|
|
21
|
+
"colors": {
|
|
22
|
+
"accent": "accent",
|
|
23
|
+
"border": "blue",
|
|
24
|
+
"borderAccent": "accent",
|
|
25
|
+
"borderMuted": "darkGray",
|
|
26
|
+
"success": "green",
|
|
27
|
+
"error": "red",
|
|
28
|
+
"warning": "yellow",
|
|
29
|
+
"muted": "gray",
|
|
30
|
+
"dim": "dimGray",
|
|
31
|
+
"text": "",
|
|
32
|
+
"thinkingText": "gray",
|
|
33
|
+
"selectedBg": "selectedBg",
|
|
34
|
+
"userMessageBg": "userMsgBg",
|
|
35
|
+
"userMessageText": "",
|
|
36
|
+
"customMessageBg": "customMsgBg",
|
|
37
|
+
"customMessageText": "",
|
|
38
|
+
"customMessageLabel": "accent",
|
|
39
|
+
"toolPendingBg": "toolPendingBg",
|
|
40
|
+
"toolSuccessBg": "toolSuccessBg",
|
|
41
|
+
"toolErrorBg": "toolErrorBg",
|
|
42
|
+
"toolTitle": "",
|
|
43
|
+
"toolOutput": "gray",
|
|
44
|
+
"mdHeading": "#ff6f61",
|
|
45
|
+
"mdLink": "#5f8dd3",
|
|
46
|
+
"mdLinkUrl": "dimGray",
|
|
47
|
+
"mdCode": "#e5c07b",
|
|
48
|
+
"mdCodeBlock": "#56b6c2",
|
|
49
|
+
"mdCodeBlockBorder": "darkGray",
|
|
50
|
+
"mdQuote": "gray",
|
|
51
|
+
"mdQuoteBorder": "darkGray",
|
|
52
|
+
"mdHr": "darkGray",
|
|
53
|
+
"mdListBullet": "accent",
|
|
54
|
+
"toolDiffAdded": "green",
|
|
55
|
+
"toolDiffRemoved": "red",
|
|
56
|
+
"toolDiffContext": "gray",
|
|
57
|
+
"link": "#5f8dd3",
|
|
58
|
+
"syntaxComment": "#abb2bf",
|
|
59
|
+
"syntaxKeyword": "#5f8dd3",
|
|
60
|
+
"syntaxFunction": "#e5c07b",
|
|
61
|
+
"syntaxVariable": "#56b6c2",
|
|
62
|
+
"syntaxString": "#e06c75",
|
|
63
|
+
"syntaxNumber": "#98c379",
|
|
64
|
+
"syntaxType": "#ff6f61",
|
|
65
|
+
"syntaxOperator": "#5c6370",
|
|
66
|
+
"syntaxPunctuation": "#5c6370",
|
|
67
|
+
"thinkingOff": "darkGray",
|
|
68
|
+
"thinkingMinimal": "dimGray",
|
|
69
|
+
"thinkingLow": "blue",
|
|
70
|
+
"thinkingMedium": "cyan",
|
|
71
|
+
"thinkingHigh": "accent",
|
|
72
|
+
"thinkingXhigh": "red",
|
|
73
|
+
"bashMode": "accent",
|
|
74
|
+
"statusLineBg": "#2c313a",
|
|
75
|
+
"statusLineSep": "#5c6370",
|
|
76
|
+
"statusLineModel": "accent",
|
|
77
|
+
"statusLinePath": "blue",
|
|
78
|
+
"statusLineGitClean": "green",
|
|
79
|
+
"statusLineGitDirty": "yellow",
|
|
80
|
+
"statusLineContext": "gray",
|
|
81
|
+
"statusLineSpend": "cyan",
|
|
82
|
+
"statusLineStaged": 28,
|
|
83
|
+
"statusLineDirty": 178,
|
|
84
|
+
"statusLineUntracked": 39,
|
|
85
|
+
"statusLineOutput": 205,
|
|
86
|
+
"statusLineCost": 205,
|
|
87
|
+
"statusLineSubagents": "accent"
|
|
88
|
+
},
|
|
89
|
+
"export": {
|
|
90
|
+
"pageBg": "#21252b",
|
|
91
|
+
"cardBg": "#282c34",
|
|
92
|
+
"infoBg": "#23272e"
|
|
93
|
+
}
|
|
94
|
+
}
|