@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,94 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://raw.githubusercontent.com/can1357/oh-my-pi/main/packages/coding-agent/theme-schema.json",
|
|
3
|
+
"name": "light-mint",
|
|
4
|
+
"vars": {
|
|
5
|
+
"cyan": "#20b2aa",
|
|
6
|
+
"blue": "#4682b4",
|
|
7
|
+
"green": "#3cb371",
|
|
8
|
+
"red": "#cd5c5c",
|
|
9
|
+
"yellow": "#daa520",
|
|
10
|
+
"gray": "#555555",
|
|
11
|
+
"dimGray": "#888888",
|
|
12
|
+
"darkGray": "#cccccc",
|
|
13
|
+
"accent": "#00bfa5",
|
|
14
|
+
"selectedBg": "#e0f2f1",
|
|
15
|
+
"userMsgBg": "#f0fdfa",
|
|
16
|
+
"toolPendingBg": "#e6f7f5",
|
|
17
|
+
"toolSuccessBg": "#e0f5e8",
|
|
18
|
+
"toolErrorBg": "#f7e6e6",
|
|
19
|
+
"customMsgBg": "#e8f6f3"
|
|
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": "#00bfa5",
|
|
45
|
+
"mdLink": "#4682b4",
|
|
46
|
+
"mdLinkUrl": "dimGray",
|
|
47
|
+
"mdCode": "#20b2aa",
|
|
48
|
+
"mdCodeBlock": "#3cb371",
|
|
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": "#4682b4",
|
|
58
|
+
"syntaxComment": "#555555",
|
|
59
|
+
"syntaxKeyword": "#4682b4",
|
|
60
|
+
"syntaxFunction": "#daa520",
|
|
61
|
+
"syntaxVariable": "#20b2aa",
|
|
62
|
+
"syntaxString": "#cd5c5c",
|
|
63
|
+
"syntaxNumber": "#3cb371",
|
|
64
|
+
"syntaxType": "#00bfa5",
|
|
65
|
+
"syntaxOperator": "#888888",
|
|
66
|
+
"syntaxPunctuation": "#888888",
|
|
67
|
+
"thinkingOff": "darkGray",
|
|
68
|
+
"thinkingMinimal": "dimGray",
|
|
69
|
+
"thinkingLow": "blue",
|
|
70
|
+
"thinkingMedium": "cyan",
|
|
71
|
+
"thinkingHigh": "accent",
|
|
72
|
+
"thinkingXhigh": "red",
|
|
73
|
+
"bashMode": "accent",
|
|
74
|
+
"statusLineBg": "#e0f2f1",
|
|
75
|
+
"statusLineSep": "#888888",
|
|
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": "#f0fdfa",
|
|
91
|
+
"cardBg": "#e6f7f5",
|
|
92
|
+
"infoBg": "#e0f5e8"
|
|
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": "light-opal",
|
|
4
|
+
"vars": {
|
|
5
|
+
"opal": "#f7f5f2",
|
|
6
|
+
"pearl": "#e7e4e0",
|
|
7
|
+
"blush": "#d9a2b3",
|
|
8
|
+
"mint": "#8bc6b1",
|
|
9
|
+
"sky": "#86a7d9",
|
|
10
|
+
"violet": "#9b8ad6",
|
|
11
|
+
"ink": "#3c3942",
|
|
12
|
+
"muted": "#5d5863",
|
|
13
|
+
"dim": "#7a7481",
|
|
14
|
+
"success": "#46a17a",
|
|
15
|
+
"error": "#c4565d",
|
|
16
|
+
"warning": "#d6a14c"
|
|
17
|
+
},
|
|
18
|
+
"colors": {
|
|
19
|
+
"accent": "violet",
|
|
20
|
+
"border": "pearl",
|
|
21
|
+
"borderAccent": "sky",
|
|
22
|
+
"borderMuted": "#efeceb",
|
|
23
|
+
"success": "success",
|
|
24
|
+
"error": "error",
|
|
25
|
+
"warning": "warning",
|
|
26
|
+
"muted": "muted",
|
|
27
|
+
"dim": "dim",
|
|
28
|
+
"text": "",
|
|
29
|
+
"thinkingText": "muted",
|
|
30
|
+
|
|
31
|
+
"selectedBg": "#efeceb",
|
|
32
|
+
"userMessageBg": "#ffffff",
|
|
33
|
+
"userMessageText": "",
|
|
34
|
+
"customMessageBg": "#f2eef3",
|
|
35
|
+
"customMessageText": "",
|
|
36
|
+
"customMessageLabel": "blush",
|
|
37
|
+
"toolPendingBg": "#f2f3f6",
|
|
38
|
+
"toolSuccessBg": "#edf7f1",
|
|
39
|
+
"toolErrorBg": "#f8edef",
|
|
40
|
+
"toolTitle": "",
|
|
41
|
+
"toolOutput": "muted",
|
|
42
|
+
|
|
43
|
+
"mdHeading": "violet",
|
|
44
|
+
"mdLink": "sky",
|
|
45
|
+
"mdLinkUrl": "dim",
|
|
46
|
+
"mdCode": "blush",
|
|
47
|
+
"mdCodeBlock": "ink",
|
|
48
|
+
"mdCodeBlockBorder": "pearl",
|
|
49
|
+
"mdQuote": "muted",
|
|
50
|
+
"mdQuoteBorder": "pearl",
|
|
51
|
+
"mdHr": "pearl",
|
|
52
|
+
"mdListBullet": "mint",
|
|
53
|
+
|
|
54
|
+
"toolDiffAdded": "success",
|
|
55
|
+
"toolDiffRemoved": "error",
|
|
56
|
+
"toolDiffContext": "muted",
|
|
57
|
+
|
|
58
|
+
"syntaxComment": "dim",
|
|
59
|
+
"syntaxKeyword": "violet",
|
|
60
|
+
"syntaxFunction": "sky",
|
|
61
|
+
"syntaxVariable": "ink",
|
|
62
|
+
"syntaxString": "warning",
|
|
63
|
+
"syntaxNumber": "blush",
|
|
64
|
+
"syntaxType": "mint",
|
|
65
|
+
"syntaxOperator": "ink",
|
|
66
|
+
"syntaxPunctuation": "ink",
|
|
67
|
+
|
|
68
|
+
"thinkingOff": "#e6e1de",
|
|
69
|
+
"thinkingMinimal": "dim",
|
|
70
|
+
"thinkingLow": "mint",
|
|
71
|
+
"thinkingMedium": "sky",
|
|
72
|
+
"thinkingHigh": "violet",
|
|
73
|
+
"thinkingXhigh": "blush",
|
|
74
|
+
|
|
75
|
+
"bashMode": "sky",
|
|
76
|
+
|
|
77
|
+
"statusLineBg": "#f3f0ee",
|
|
78
|
+
"statusLineSep": "#cdc6c6",
|
|
79
|
+
"statusLineModel": "violet",
|
|
80
|
+
"statusLinePath": "sky",
|
|
81
|
+
"statusLineGitClean": "success",
|
|
82
|
+
"statusLineGitDirty": "warning",
|
|
83
|
+
"statusLineContext": "muted",
|
|
84
|
+
"statusLineSpend": "blush",
|
|
85
|
+
"statusLineStaged": "success",
|
|
86
|
+
"statusLineDirty": "warning",
|
|
87
|
+
"statusLineUntracked": "sky",
|
|
88
|
+
"statusLineOutput": "ink",
|
|
89
|
+
"statusLineCost": "blush",
|
|
90
|
+
"statusLineSubagents": "violet"
|
|
91
|
+
},
|
|
92
|
+
"export": {
|
|
93
|
+
"pageBg": "#fbfaf9",
|
|
94
|
+
"cardBg": "#ffffff",
|
|
95
|
+
"infoBg": "#f2eeed"
|
|
96
|
+
}
|
|
97
|
+
}
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://raw.githubusercontent.com/can1357/oh-my-pi/main/packages/coding-agent/theme-schema.json",
|
|
3
|
+
"name": "light-orchard",
|
|
4
|
+
"vars": {
|
|
5
|
+
"orchardBg": "#F7F2E8",
|
|
6
|
+
"orchardSurface": "#FFF9F0",
|
|
7
|
+
"orchardElevated": "#F2E8D9",
|
|
8
|
+
"orchardBorder": "#E2D5C2",
|
|
9
|
+
"blossomPink": "#D97A9B",
|
|
10
|
+
"leafGreen": "#6FA84B",
|
|
11
|
+
"barkBrown": "#8B6A4A",
|
|
12
|
+
"honeyGold": "#C98A3A",
|
|
13
|
+
"plumPurple": "#7A5BA6",
|
|
14
|
+
"mutedText": "#6D5F4C",
|
|
15
|
+
"dimText": "#9B8A78",
|
|
16
|
+
"errorRed": "#B9473D"
|
|
17
|
+
},
|
|
18
|
+
"colors": {
|
|
19
|
+
"accent": "blossomPink",
|
|
20
|
+
"border": "orchardBorder",
|
|
21
|
+
"borderAccent": "plumPurple",
|
|
22
|
+
"borderMuted": "orchardElevated",
|
|
23
|
+
"success": "leafGreen",
|
|
24
|
+
"error": "errorRed",
|
|
25
|
+
"warning": "honeyGold",
|
|
26
|
+
"muted": "mutedText",
|
|
27
|
+
"dim": "dimText",
|
|
28
|
+
"text": "",
|
|
29
|
+
"thinkingText": "mutedText",
|
|
30
|
+
|
|
31
|
+
"selectedBg": "orchardElevated",
|
|
32
|
+
"userMessageBg": "orchardSurface",
|
|
33
|
+
"userMessageText": "",
|
|
34
|
+
"customMessageBg": "#F0E4D4",
|
|
35
|
+
"customMessageText": "",
|
|
36
|
+
"customMessageLabel": "blossomPink",
|
|
37
|
+
"toolPendingBg": "orchardBg",
|
|
38
|
+
"toolSuccessBg": "#E6F0DE",
|
|
39
|
+
"toolErrorBg": "#F3E1DA",
|
|
40
|
+
"toolTitle": "",
|
|
41
|
+
"toolOutput": "mutedText",
|
|
42
|
+
|
|
43
|
+
"mdHeading": "blossomPink",
|
|
44
|
+
"mdLink": "plumPurple",
|
|
45
|
+
"mdLinkUrl": "dimText",
|
|
46
|
+
"mdCode": "leafGreen",
|
|
47
|
+
"mdCodeBlock": "plumPurple",
|
|
48
|
+
"mdCodeBlockBorder": "orchardBorder",
|
|
49
|
+
"mdQuote": "mutedText",
|
|
50
|
+
"mdQuoteBorder": "orchardBorder",
|
|
51
|
+
"mdHr": "orchardBorder",
|
|
52
|
+
"mdListBullet": "leafGreen",
|
|
53
|
+
|
|
54
|
+
"toolDiffAdded": "leafGreen",
|
|
55
|
+
"toolDiffRemoved": "errorRed",
|
|
56
|
+
"toolDiffContext": "mutedText",
|
|
57
|
+
|
|
58
|
+
"syntaxComment": "dimText",
|
|
59
|
+
"syntaxKeyword": "plumPurple",
|
|
60
|
+
"syntaxFunction": "blossomPink",
|
|
61
|
+
"syntaxVariable": "mutedText",
|
|
62
|
+
"syntaxString": "leafGreen",
|
|
63
|
+
"syntaxNumber": "honeyGold",
|
|
64
|
+
"syntaxType": "plumPurple",
|
|
65
|
+
"syntaxOperator": "mutedText",
|
|
66
|
+
"syntaxPunctuation": "mutedText",
|
|
67
|
+
|
|
68
|
+
"thinkingOff": "orchardBorder",
|
|
69
|
+
"thinkingMinimal": "dimText",
|
|
70
|
+
"thinkingLow": "plumPurple",
|
|
71
|
+
"thinkingMedium": "blossomPink",
|
|
72
|
+
"thinkingHigh": "leafGreen",
|
|
73
|
+
"thinkingXhigh": "honeyGold",
|
|
74
|
+
|
|
75
|
+
"bashMode": "leafGreen",
|
|
76
|
+
|
|
77
|
+
"statusLineBg": "#F1EBE1",
|
|
78
|
+
"statusLineSep": "orchardBorder",
|
|
79
|
+
"statusLineModel": "blossomPink",
|
|
80
|
+
"statusLinePath": "plumPurple",
|
|
81
|
+
"statusLineGitClean": "leafGreen",
|
|
82
|
+
"statusLineGitDirty": "honeyGold",
|
|
83
|
+
"statusLineContext": "mutedText",
|
|
84
|
+
"statusLineSpend": "blossomPink",
|
|
85
|
+
"statusLineStaged": "leafGreen",
|
|
86
|
+
"statusLineDirty": "honeyGold",
|
|
87
|
+
"statusLineUntracked": "plumPurple",
|
|
88
|
+
"statusLineOutput": "blossomPink",
|
|
89
|
+
"statusLineCost": "honeyGold",
|
|
90
|
+
"statusLineSubagents": "blossomPink"
|
|
91
|
+
},
|
|
92
|
+
"export": {
|
|
93
|
+
"pageBg": "#F7F2E8",
|
|
94
|
+
"cardBg": "#FFF9F0",
|
|
95
|
+
"infoBg": "#F2E8D9"
|
|
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": "light-paper",
|
|
4
|
+
"vars": {
|
|
5
|
+
"cyan": "#3e999f",
|
|
6
|
+
"blue": "#4271ae",
|
|
7
|
+
"green": "#718c00",
|
|
8
|
+
"red": "#c82829",
|
|
9
|
+
"yellow": "#eab700",
|
|
10
|
+
"gray": "#4d4d4c",
|
|
11
|
+
"dimGray": "#8e908c",
|
|
12
|
+
"darkGray": "#d6d6d6",
|
|
13
|
+
"accent": "#d19a66",
|
|
14
|
+
"selectedBg": "#efe6d5",
|
|
15
|
+
"userMsgBg": "#f6f0e4",
|
|
16
|
+
"toolPendingBg": "#f2ecdf",
|
|
17
|
+
"toolSuccessBg": "#e8f0e0",
|
|
18
|
+
"toolErrorBg": "#f0e0e0",
|
|
19
|
+
"customMsgBg": "#eee8d5"
|
|
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": "#d19a66",
|
|
45
|
+
"mdLink": "#4271ae",
|
|
46
|
+
"mdLinkUrl": "dimGray",
|
|
47
|
+
"mdCode": "#4271ae",
|
|
48
|
+
"mdCodeBlock": "#718c00",
|
|
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": "#4271ae",
|
|
58
|
+
"syntaxComment": "#4d4d4c",
|
|
59
|
+
"syntaxKeyword": "#4271ae",
|
|
60
|
+
"syntaxFunction": "#eab700",
|
|
61
|
+
"syntaxVariable": "#3e999f",
|
|
62
|
+
"syntaxString": "#c82829",
|
|
63
|
+
"syntaxNumber": "#718c00",
|
|
64
|
+
"syntaxType": "#d19a66",
|
|
65
|
+
"syntaxOperator": "#8e908c",
|
|
66
|
+
"syntaxPunctuation": "#8e908c",
|
|
67
|
+
"thinkingOff": "darkGray",
|
|
68
|
+
"thinkingMinimal": "dimGray",
|
|
69
|
+
"thinkingLow": "blue",
|
|
70
|
+
"thinkingMedium": "cyan",
|
|
71
|
+
"thinkingHigh": "accent",
|
|
72
|
+
"thinkingXhigh": "red",
|
|
73
|
+
"bashMode": "accent",
|
|
74
|
+
"statusLineBg": "#efe6d5",
|
|
75
|
+
"statusLineSep": "#8e908c",
|
|
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": "#f6f0e4",
|
|
91
|
+
"cardBg": "#f2ecdf",
|
|
92
|
+
"infoBg": "#e8f0e0"
|
|
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": "light-prism",
|
|
4
|
+
"vars": {
|
|
5
|
+
"white": "#ffffff",
|
|
6
|
+
"slate": "#4a4f57",
|
|
7
|
+
"dim": "#6b7280",
|
|
8
|
+
"violet": "#7c4dff",
|
|
9
|
+
"indigo": "#4f46e5",
|
|
10
|
+
"blue": "#3b82f6",
|
|
11
|
+
"cyan": "#06b6d4",
|
|
12
|
+
"green": "#22c55e",
|
|
13
|
+
"yellow": "#eab308",
|
|
14
|
+
"orange": "#f97316",
|
|
15
|
+
"red": "#ef4444"
|
|
16
|
+
},
|
|
17
|
+
"colors": {
|
|
18
|
+
"accent": "violet",
|
|
19
|
+
"border": "#e5e7eb",
|
|
20
|
+
"borderAccent": "blue",
|
|
21
|
+
"borderMuted": "#f1f3f5",
|
|
22
|
+
"success": "green",
|
|
23
|
+
"error": "red",
|
|
24
|
+
"warning": "orange",
|
|
25
|
+
"muted": "slate",
|
|
26
|
+
"dim": "dim",
|
|
27
|
+
"text": "",
|
|
28
|
+
"thinkingText": "muted",
|
|
29
|
+
|
|
30
|
+
"selectedBg": "#f2f5fb",
|
|
31
|
+
"userMessageBg": "#ffffff",
|
|
32
|
+
"userMessageText": "",
|
|
33
|
+
"customMessageBg": "#f3f2ff",
|
|
34
|
+
"customMessageText": "",
|
|
35
|
+
"customMessageLabel": "violet",
|
|
36
|
+
"toolPendingBg": "#f5f6fa",
|
|
37
|
+
"toolSuccessBg": "#effaf2",
|
|
38
|
+
"toolErrorBg": "#fceeee",
|
|
39
|
+
"toolTitle": "",
|
|
40
|
+
"toolOutput": "muted",
|
|
41
|
+
|
|
42
|
+
"mdHeading": "indigo",
|
|
43
|
+
"mdLink": "blue",
|
|
44
|
+
"mdLinkUrl": "dim",
|
|
45
|
+
"mdCode": "violet",
|
|
46
|
+
"mdCodeBlock": "slate",
|
|
47
|
+
"mdCodeBlockBorder": "#e1e4ea",
|
|
48
|
+
"mdQuote": "muted",
|
|
49
|
+
"mdQuoteBorder": "#e1e4ea",
|
|
50
|
+
"mdHr": "#e1e4ea",
|
|
51
|
+
"mdListBullet": "cyan",
|
|
52
|
+
|
|
53
|
+
"toolDiffAdded": "green",
|
|
54
|
+
"toolDiffRemoved": "red",
|
|
55
|
+
"toolDiffContext": "muted",
|
|
56
|
+
|
|
57
|
+
"syntaxComment": "dim",
|
|
58
|
+
"syntaxKeyword": "indigo",
|
|
59
|
+
"syntaxFunction": "blue",
|
|
60
|
+
"syntaxVariable": "violet",
|
|
61
|
+
"syntaxString": "green",
|
|
62
|
+
"syntaxNumber": "orange",
|
|
63
|
+
"syntaxType": "cyan",
|
|
64
|
+
"syntaxOperator": "slate",
|
|
65
|
+
"syntaxPunctuation": "slate",
|
|
66
|
+
|
|
67
|
+
"thinkingOff": "#e5e7ec",
|
|
68
|
+
"thinkingMinimal": "dim",
|
|
69
|
+
"thinkingLow": "blue",
|
|
70
|
+
"thinkingMedium": "cyan",
|
|
71
|
+
"thinkingHigh": "violet",
|
|
72
|
+
"thinkingXhigh": "indigo",
|
|
73
|
+
|
|
74
|
+
"bashMode": "blue",
|
|
75
|
+
|
|
76
|
+
"statusLineBg": "#f4f6fb",
|
|
77
|
+
"statusLineSep": "#cfd5df",
|
|
78
|
+
"statusLineModel": "violet",
|
|
79
|
+
"statusLinePath": "blue",
|
|
80
|
+
"statusLineGitClean": "green",
|
|
81
|
+
"statusLineGitDirty": "orange",
|
|
82
|
+
"statusLineContext": "muted",
|
|
83
|
+
"statusLineSpend": "cyan",
|
|
84
|
+
"statusLineStaged": "green",
|
|
85
|
+
"statusLineDirty": "orange",
|
|
86
|
+
"statusLineUntracked": "blue",
|
|
87
|
+
"statusLineOutput": "slate",
|
|
88
|
+
"statusLineCost": "yellow",
|
|
89
|
+
"statusLineSubagents": "violet"
|
|
90
|
+
},
|
|
91
|
+
"export": {
|
|
92
|
+
"pageBg": "#ffffff",
|
|
93
|
+
"cardBg": "#fbfbff",
|
|
94
|
+
"infoBg": "#f4f6fb"
|
|
95
|
+
}
|
|
96
|
+
}
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://raw.githubusercontent.com/can1357/oh-my-pi/main/packages/coding-agent/theme-schema.json",
|
|
3
|
+
"name": "light-sand",
|
|
4
|
+
"vars": {
|
|
5
|
+
"cyan": "#00838f",
|
|
6
|
+
"blue": "#1565c0",
|
|
7
|
+
"green": "#2e7d32",
|
|
8
|
+
"red": "#c62828",
|
|
9
|
+
"yellow": "#f9a825",
|
|
10
|
+
"gray": "#5d4037",
|
|
11
|
+
"dimGray": "#8d6e63",
|
|
12
|
+
"darkGray": "#d7ccc8",
|
|
13
|
+
"accent": "#a1887f",
|
|
14
|
+
"selectedBg": "#f5f5f5",
|
|
15
|
+
"userMsgBg": "#fffaf0",
|
|
16
|
+
"toolPendingBg": "#fbf7f0",
|
|
17
|
+
"toolSuccessBg": "#f1f8e9",
|
|
18
|
+
"toolErrorBg": "#fbe9e7",
|
|
19
|
+
"customMsgBg": "#f7f2eb"
|
|
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": "#a1887f",
|
|
45
|
+
"mdLink": "#1565c0",
|
|
46
|
+
"mdLinkUrl": "dimGray",
|
|
47
|
+
"mdCode": "#8d6e63",
|
|
48
|
+
"mdCodeBlock": "#5d4037",
|
|
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": "#1565c0",
|
|
58
|
+
"syntaxComment": "#5d4037",
|
|
59
|
+
"syntaxKeyword": "#1565c0",
|
|
60
|
+
"syntaxFunction": "#f9a825",
|
|
61
|
+
"syntaxVariable": "#00838f",
|
|
62
|
+
"syntaxString": "#c62828",
|
|
63
|
+
"syntaxNumber": "#2e7d32",
|
|
64
|
+
"syntaxType": "#a1887f",
|
|
65
|
+
"syntaxOperator": "#8d6e63",
|
|
66
|
+
"syntaxPunctuation": "#8d6e63",
|
|
67
|
+
"thinkingOff": "darkGray",
|
|
68
|
+
"thinkingMinimal": "dimGray",
|
|
69
|
+
"thinkingLow": "blue",
|
|
70
|
+
"thinkingMedium": "cyan",
|
|
71
|
+
"thinkingHigh": "accent",
|
|
72
|
+
"thinkingXhigh": "red",
|
|
73
|
+
"bashMode": "accent",
|
|
74
|
+
"statusLineBg": "#f5f5f5",
|
|
75
|
+
"statusLineSep": "#8d6e63",
|
|
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": "#fffaf0",
|
|
91
|
+
"cardBg": "#fbf7f0",
|
|
92
|
+
"infoBg": "#f1f8e9"
|
|
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": "light-savanna",
|
|
4
|
+
"vars": {
|
|
5
|
+
"savannaBg": "#F8F1E6",
|
|
6
|
+
"savannaPanel": "#F1E6D2",
|
|
7
|
+
"savannaSurface": "#FFF7EC",
|
|
8
|
+
"savannaBorder": "#D9C9AD",
|
|
9
|
+
"strawYellow": "#E6CF8A",
|
|
10
|
+
"sunsetOrange": "#C98A3A",
|
|
11
|
+
"acaciaGreen": "#6E8B3D",
|
|
12
|
+
"warningOrange": "#D08A2C",
|
|
13
|
+
"errorRed": "#C45A4F",
|
|
14
|
+
"riverBlue": "#4C7F8A",
|
|
15
|
+
"mutedText": "#6E5C47",
|
|
16
|
+
"dimText": "#9A8772"
|
|
17
|
+
},
|
|
18
|
+
"colors": {
|
|
19
|
+
"accent": "sunsetOrange",
|
|
20
|
+
"border": "savannaBorder",
|
|
21
|
+
"borderAccent": "strawYellow",
|
|
22
|
+
"borderMuted": "savannaPanel",
|
|
23
|
+
"success": "acaciaGreen",
|
|
24
|
+
"error": "errorRed",
|
|
25
|
+
"warning": "warningOrange",
|
|
26
|
+
"muted": "mutedText",
|
|
27
|
+
"dim": "dimText",
|
|
28
|
+
"text": "",
|
|
29
|
+
"thinkingText": "mutedText",
|
|
30
|
+
|
|
31
|
+
"selectedBg": "savannaPanel",
|
|
32
|
+
"userMessageBg": "savannaSurface",
|
|
33
|
+
"userMessageText": "",
|
|
34
|
+
"customMessageBg": "#F3E8D7",
|
|
35
|
+
"customMessageText": "",
|
|
36
|
+
"customMessageLabel": "sunsetOrange",
|
|
37
|
+
"toolPendingBg": "savannaBg",
|
|
38
|
+
"toolSuccessBg": "#E8F1D9",
|
|
39
|
+
"toolErrorBg": "#F4E0DA",
|
|
40
|
+
"toolTitle": "",
|
|
41
|
+
"toolOutput": "mutedText",
|
|
42
|
+
|
|
43
|
+
"mdHeading": "sunsetOrange",
|
|
44
|
+
"mdLink": "riverBlue",
|
|
45
|
+
"mdLinkUrl": "dimText",
|
|
46
|
+
"mdCode": "acaciaGreen",
|
|
47
|
+
"mdCodeBlock": "riverBlue",
|
|
48
|
+
"mdCodeBlockBorder": "savannaBorder",
|
|
49
|
+
"mdQuote": "mutedText",
|
|
50
|
+
"mdQuoteBorder": "savannaBorder",
|
|
51
|
+
"mdHr": "savannaBorder",
|
|
52
|
+
"mdListBullet": "acaciaGreen",
|
|
53
|
+
|
|
54
|
+
"toolDiffAdded": "acaciaGreen",
|
|
55
|
+
"toolDiffRemoved": "errorRed",
|
|
56
|
+
"toolDiffContext": "mutedText",
|
|
57
|
+
|
|
58
|
+
"syntaxComment": "dimText",
|
|
59
|
+
"syntaxKeyword": "sunsetOrange",
|
|
60
|
+
"syntaxFunction": "riverBlue",
|
|
61
|
+
"syntaxVariable": "mutedText",
|
|
62
|
+
"syntaxString": "acaciaGreen",
|
|
63
|
+
"syntaxNumber": "warningOrange",
|
|
64
|
+
"syntaxType": "riverBlue",
|
|
65
|
+
"syntaxOperator": "mutedText",
|
|
66
|
+
"syntaxPunctuation": "mutedText",
|
|
67
|
+
|
|
68
|
+
"thinkingOff": "savannaBorder",
|
|
69
|
+
"thinkingMinimal": "dimText",
|
|
70
|
+
"thinkingLow": "strawYellow",
|
|
71
|
+
"thinkingMedium": "sunsetOrange",
|
|
72
|
+
"thinkingHigh": "riverBlue",
|
|
73
|
+
"thinkingXhigh": "acaciaGreen",
|
|
74
|
+
|
|
75
|
+
"bashMode": "acaciaGreen",
|
|
76
|
+
|
|
77
|
+
"statusLineBg": "#F3EBDD",
|
|
78
|
+
"statusLineSep": "savannaBorder",
|
|
79
|
+
"statusLineModel": "sunsetOrange",
|
|
80
|
+
"statusLinePath": "riverBlue",
|
|
81
|
+
"statusLineGitClean": "acaciaGreen",
|
|
82
|
+
"statusLineGitDirty": "warningOrange",
|
|
83
|
+
"statusLineContext": "mutedText",
|
|
84
|
+
"statusLineSpend": "sunsetOrange",
|
|
85
|
+
"statusLineStaged": "acaciaGreen",
|
|
86
|
+
"statusLineDirty": "warningOrange",
|
|
87
|
+
"statusLineUntracked": "riverBlue",
|
|
88
|
+
"statusLineOutput": "sunsetOrange",
|
|
89
|
+
"statusLineCost": "warningOrange",
|
|
90
|
+
"statusLineSubagents": "sunsetOrange"
|
|
91
|
+
},
|
|
92
|
+
"export": {
|
|
93
|
+
"pageBg": "#F8F1E6",
|
|
94
|
+
"cardBg": "#FFF7EC",
|
|
95
|
+
"infoBg": "#F1E6D2"
|
|
96
|
+
}
|
|
97
|
+
}
|