pi-theme-aura 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/LICENSE +21 -0
- package/README.md +43 -0
- package/package.json +30 -0
- package/themes/aura.json +78 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 jndroRetana
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
# Aura Theme for Pi
|
|
2
|
+
|
|
3
|
+
Use the official Aura Theme palette in [Pi](https://pi.dev).
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
# npm
|
|
9
|
+
pi install npm:pi-theme-aura@0.1.0
|
|
10
|
+
|
|
11
|
+
# GitHub
|
|
12
|
+
pi install git:github.com/jndroRetana/theme-aura-extension@v0.1.0
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
Select **aura** in `/settings`, or start Pi with:
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
pi --use-theme aura
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
## Palette
|
|
22
|
+
|
|
23
|
+
| Role | Color |
|
|
24
|
+
| --- | --- |
|
|
25
|
+
| Background | `#15141B` |
|
|
26
|
+
| Foreground | `#EDECEE` |
|
|
27
|
+
| Muted | `#6D6D6D` |
|
|
28
|
+
| Purple | `#A277FF` |
|
|
29
|
+
| Mint | `#61FFCA` |
|
|
30
|
+
| Gold | `#FFCA85` |
|
|
31
|
+
| Pink | `#F694FF` |
|
|
32
|
+
| Blue | `#82E2FF` |
|
|
33
|
+
| Red | `#FF6767` |
|
|
34
|
+
| Green | `#9DFF65` |
|
|
35
|
+
|
|
36
|
+
## Development
|
|
37
|
+
|
|
38
|
+
Validate the package metadata and theme JSON before publishing:
|
|
39
|
+
|
|
40
|
+
```bash
|
|
41
|
+
node -e "JSON.parse(require('node:fs').readFileSync('package.json', 'utf8')); JSON.parse(require('node:fs').readFileSync('themes/aura.json', 'utf8')); console.log('JSON valid')"
|
|
42
|
+
npm pack --dry-run
|
|
43
|
+
```
|
package/package.json
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "pi-theme-aura",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Official Aura Theme palette for Pi",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"pi-package",
|
|
7
|
+
"pi",
|
|
8
|
+
"theme",
|
|
9
|
+
"aura"
|
|
10
|
+
],
|
|
11
|
+
"license": "MIT",
|
|
12
|
+
"repository": {
|
|
13
|
+
"type": "git",
|
|
14
|
+
"url": "git+https://github.com/jndroRetana/theme-aura-extension.git"
|
|
15
|
+
},
|
|
16
|
+
"bugs": {
|
|
17
|
+
"url": "https://github.com/jndroRetana/theme-aura-extension/issues"
|
|
18
|
+
},
|
|
19
|
+
"homepage": "https://github.com/jndroRetana/theme-aura-extension#readme",
|
|
20
|
+
"files": [
|
|
21
|
+
"themes",
|
|
22
|
+
"README.md",
|
|
23
|
+
"LICENSE"
|
|
24
|
+
],
|
|
25
|
+
"pi": {
|
|
26
|
+
"themes": [
|
|
27
|
+
"./themes"
|
|
28
|
+
]
|
|
29
|
+
}
|
|
30
|
+
}
|
package/themes/aura.json
ADDED
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://raw.githubusercontent.com/earendil-works/pi/main/packages/coding-agent/src/modes/interactive/theme/theme-schema.json",
|
|
3
|
+
"name": "aura",
|
|
4
|
+
"vars": {
|
|
5
|
+
"background": "#15141B",
|
|
6
|
+
"foreground": "#EDECEE",
|
|
7
|
+
"muted": "#6D6D6D",
|
|
8
|
+
"purple": "#A277FF",
|
|
9
|
+
"mint": "#61FFCA",
|
|
10
|
+
"gold": "#FFCA85",
|
|
11
|
+
"pink": "#F694FF",
|
|
12
|
+
"blue": "#82E2FF",
|
|
13
|
+
"red": "#FF6767",
|
|
14
|
+
"green": "#9DFF65"
|
|
15
|
+
},
|
|
16
|
+
"colors": {
|
|
17
|
+
"accent": "purple",
|
|
18
|
+
"border": "muted",
|
|
19
|
+
"borderAccent": "purple",
|
|
20
|
+
"borderMuted": "background",
|
|
21
|
+
"success": "green",
|
|
22
|
+
"error": "red",
|
|
23
|
+
"warning": "gold",
|
|
24
|
+
"muted": "muted",
|
|
25
|
+
"dim": "muted",
|
|
26
|
+
"text": "",
|
|
27
|
+
"thinkingText": "mint",
|
|
28
|
+
"selectedBg": "purple",
|
|
29
|
+
"scrollbarThumb": "muted",
|
|
30
|
+
"searchMatchBg": "gold",
|
|
31
|
+
"searchMatchText": "background",
|
|
32
|
+
"userMessageBg": "background",
|
|
33
|
+
"userMessageText": "foreground",
|
|
34
|
+
"customMessageBg": "background",
|
|
35
|
+
"customMessageText": "foreground",
|
|
36
|
+
"customMessageLabel": "pink",
|
|
37
|
+
"toolPendingBg": "background",
|
|
38
|
+
"toolSuccessBg": "background",
|
|
39
|
+
"toolErrorBg": "background",
|
|
40
|
+
"toolTitle": "mint",
|
|
41
|
+
"toolOutput": "foreground",
|
|
42
|
+
"mdHeading": "purple",
|
|
43
|
+
"mdLink": "blue",
|
|
44
|
+
"mdLinkUrl": "mint",
|
|
45
|
+
"mdCode": "gold",
|
|
46
|
+
"mdCodeBlock": "foreground",
|
|
47
|
+
"mdCodeBlockBorder": "muted",
|
|
48
|
+
"mdQuote": "muted",
|
|
49
|
+
"mdQuoteBorder": "purple",
|
|
50
|
+
"mdHr": "muted",
|
|
51
|
+
"mdListBullet": "pink",
|
|
52
|
+
"toolDiffAdded": "green",
|
|
53
|
+
"toolDiffRemoved": "red",
|
|
54
|
+
"toolDiffContext": "muted",
|
|
55
|
+
"syntaxComment": "muted",
|
|
56
|
+
"syntaxKeyword": "purple",
|
|
57
|
+
"syntaxFunction": "blue",
|
|
58
|
+
"syntaxVariable": "foreground",
|
|
59
|
+
"syntaxString": "mint",
|
|
60
|
+
"syntaxNumber": "gold",
|
|
61
|
+
"syntaxType": "blue",
|
|
62
|
+
"syntaxOperator": "pink",
|
|
63
|
+
"syntaxPunctuation": "muted",
|
|
64
|
+
"thinkingOff": "muted",
|
|
65
|
+
"thinkingMinimal": "mint",
|
|
66
|
+
"thinkingLow": "green",
|
|
67
|
+
"thinkingMedium": "gold",
|
|
68
|
+
"thinkingHigh": "purple",
|
|
69
|
+
"thinkingXhigh": "pink",
|
|
70
|
+
"thinkingMax": "red",
|
|
71
|
+
"bashMode": "gold"
|
|
72
|
+
},
|
|
73
|
+
"export": {
|
|
74
|
+
"pageBg": "background",
|
|
75
|
+
"cardBg": "background",
|
|
76
|
+
"infoBg": "background"
|
|
77
|
+
}
|
|
78
|
+
}
|