pi-magi-theme 0.1.0

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 ADDED
@@ -0,0 +1,44 @@
1
+ {
2
+ "name": "pi-magi-theme",
3
+ "version": "0.1.0",
4
+ "description": "MAGI theme + extension for pi: Tree of Life header, three-model /magi council, golem tool animations, seven-seal context gauge, llama-swap telemetry",
5
+ "keywords": [
6
+ "pi-package",
7
+ "pi-extension",
8
+ "pi-theme",
9
+ "pi",
10
+ "magi",
11
+ "tree-of-life",
12
+ "llama-swap"
13
+ ],
14
+ "author": "b-iurea",
15
+ "license": "MIT",
16
+ "homepage": "https://github.com/b-iurea/pi-magi-theme#readme",
17
+ "repository": {
18
+ "type": "git",
19
+ "url": "git+https://github.com/b-iurea/pi-magi-theme.git"
20
+ },
21
+ "bugs": {
22
+ "url": "https://github.com/b-iurea/pi-magi-theme/issues"
23
+ },
24
+ "type": "module",
25
+ "files": [
26
+ "extensions/",
27
+ "themes/",
28
+ "README.md",
29
+ "LICENSE"
30
+ ],
31
+ "pi": {
32
+ "extensions": [
33
+ "./extensions/magi/index.ts"
34
+ ],
35
+ "themes": [
36
+ "./themes"
37
+ ]
38
+ },
39
+ "peerDependencies": {
40
+ "@earendil-works/pi-ai": "*",
41
+ "@earendil-works/pi-coding-agent": "*",
42
+ "@earendil-works/pi-tui": "*"
43
+ }
44
+ }
@@ -0,0 +1,96 @@
1
+ {
2
+ "$schema": "https://raw.githubusercontent.com/earendil-works/pi/main/packages/coding-agent/src/modes/interactive/theme/theme-schema.json",
3
+ "name": "magi",
4
+ "vars": {
5
+ "ember": "#ff6a00",
6
+ "amber": "#ffa521",
7
+ "coral": "#ff8c47",
8
+ "phosphor": "#33ff6a",
9
+ "phosphorDim": "#1f9c42",
10
+ "phosphorLight": "#7dffa6",
11
+ "violet": "#a35ce0",
12
+ "deepViolet": "#7b3fb5",
13
+ "lime": "#b6ff2e",
14
+ "signalBlue": "#2f8fff",
15
+ "alarmRed": "#ff2e3c",
16
+ "bone": "#e6ded1",
17
+ "gray": "#8a8276",
18
+ "dimGray": "#5c564c",
19
+ "darkGray": "#332f28",
20
+ "selBg": "#2a1c0c",
21
+ "userBg": "#1c1712",
22
+ "customBg": "#1b1028",
23
+ "pendBg": "#191308",
24
+ "okBg": "#0d1c12",
25
+ "errBg": "#2b0c0f"
26
+ },
27
+ "colors": {
28
+ "accent": "ember",
29
+ "border": "darkGray",
30
+ "borderAccent": "ember",
31
+ "borderMuted": "darkGray",
32
+ "success": "phosphor",
33
+ "error": "alarmRed",
34
+ "warning": "amber",
35
+ "muted": "gray",
36
+ "dim": "dimGray",
37
+ "text": "bone",
38
+ "thinkingText": "phosphorDim",
39
+
40
+ "selectedBg": "selBg",
41
+ "scrollbarTrack": "darkGray",
42
+ "scrollbarThumb": "ember",
43
+ "searchMatchBg": "selBg",
44
+ "searchMatchText": "amber",
45
+ "userMessageBg": "userBg",
46
+ "userMessageText": "bone",
47
+ "customMessageBg": "customBg",
48
+ "customMessageText": "bone",
49
+ "customMessageLabel": "violet",
50
+ "toolPendingBg": "pendBg",
51
+ "toolSuccessBg": "okBg",
52
+ "toolErrorBg": "errBg",
53
+ "toolTitle": "amber",
54
+ "toolOutput": "gray",
55
+
56
+ "mdHeading": "ember",
57
+ "mdLink": "signalBlue",
58
+ "mdLinkUrl": "dimGray",
59
+ "mdCode": "phosphorLight",
60
+ "mdCodeBlock": "phosphor",
61
+ "mdCodeBlockBorder": "phosphorDim",
62
+ "mdQuote": "gray",
63
+ "mdQuoteBorder": "deepViolet",
64
+ "mdHr": "darkGray",
65
+ "mdListBullet": "ember",
66
+
67
+ "toolDiffAdded": "phosphor",
68
+ "toolDiffRemoved": "alarmRed",
69
+ "toolDiffContext": "dimGray",
70
+
71
+ "syntaxComment": "phosphorDim",
72
+ "syntaxKeyword": "ember",
73
+ "syntaxFunction": "amber",
74
+ "syntaxVariable": "bone",
75
+ "syntaxString": "phosphor",
76
+ "syntaxNumber": "signalBlue",
77
+ "syntaxType": "violet",
78
+ "syntaxOperator": "coral",
79
+ "syntaxPunctuation": "gray",
80
+
81
+ "thinkingOff": "darkGray",
82
+ "thinkingMinimal": "dimGray",
83
+ "thinkingLow": "phosphorDim",
84
+ "thinkingMedium": "phosphor",
85
+ "thinkingHigh": "amber",
86
+ "thinkingXhigh": "ember",
87
+ "thinkingMax": "alarmRed",
88
+
89
+ "bashMode": "lime"
90
+ },
91
+ "export": {
92
+ "pageBg": "#0b0906",
93
+ "cardBg": "#151109",
94
+ "infoBg": "#2a1c0c"
95
+ }
96
+ }