pi-catppuccin 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 +100 -0
- package/assets/icon.png +0 -0
- package/assets/screenshot.png +0 -0
- package/package.json +36 -0
- package/themes/catppuccin-frappe.json +96 -0
- package/themes/catppuccin-latte.json +101 -0
- package/themes/catppuccin-macchiato.json +96 -0
- package/themes/catppuccin-mocha.json +96 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Madeleine Ostoja
|
|
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,100 @@
|
|
|
1
|
+
<div align="center">
|
|
2
|
+
<h1>Pi Catppuccin</h1>
|
|
3
|
+
<img src="assets/icon.png" width="140" alt="Pi Catppuccin icon"/>
|
|
4
|
+
<p>
|
|
5
|
+
<strong>An unofficial Catppuccin theme for Pi. β</strong>
|
|
6
|
+
</p>
|
|
7
|
+
<p>
|
|
8
|
+
<a href="https://www.npmjs.com/package/pi-catppuccin"><img src="https://img.shields.io/npm/v/pi-catppuccin?colorA=363a4f&colorB=c6a0f6&style=for-the-badge" alt="npm version"/></a>
|
|
9
|
+
<a href="https://www.npmjs.com/package/pi-catppuccin"><img src="https://img.shields.io/npm/dm/pi-catppuccin?colorA=363a4f&colorB=8aadf4&style=for-the-badge" alt="npm downloads"/></a>
|
|
10
|
+
<a href="https://github.com/madeleineostoja/pi-catppuccin/issues"><img src="https://img.shields.io/github/issues/madeleineostoja/pi-catppuccin?colorA=363a4f&colorB=f5a97f&style=for-the-badge" alt="GitHub issues"/></a>
|
|
11
|
+
<a href="LICENSE"><img src="https://img.shields.io/badge/license-MIT-a6da95?style=for-the-badge&labelColor=363a4f" alt="MIT license"/></a>
|
|
12
|
+
</p>
|
|
13
|
+
</div>
|
|
14
|
+
|
|
15
|
+
Catppuccin's four flavours for the [Pi](https://pi.dev) agent harness, adapted with a focus on a calm, muted experience.
|
|
16
|
+
|
|
17
|
+
<p align="center">
|
|
18
|
+
<img src="assets/screenshot.png" alt="Pi using the Catppuccin Macchiato theme"/>
|
|
19
|
+
</p>
|
|
20
|
+
|
|
21
|
+
## π οΈ Usage
|
|
22
|
+
|
|
23
|
+
Install the package from npm:
|
|
24
|
+
|
|
25
|
+
```sh
|
|
26
|
+
pi install npm:pi-catppuccin
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
Open `/settings` in Pi and choose your favourite flavour. That's it β save and enjoy!
|
|
30
|
+
|
|
31
|
+
| Flavour | Theme | Mood |
|
|
32
|
+
| ------------ | ---------------------- | -------------------------------------------------- |
|
|
33
|
+
| π» Latte | `catppuccin-latte` | Light, bright, and tuned for comfortable contrast. |
|
|
34
|
+
| πͺ΄ FrappΓ© | `catppuccin-frappe` | Soft and muted. |
|
|
35
|
+
| πΊ Macchiato | `catppuccin-macchiato` | Rich, balanced, and suited to everyday use. |
|
|
36
|
+
| πΏ Mocha | `catppuccin-mocha` | The deepest and coziest of the bunch. |
|
|
37
|
+
|
|
38
|
+
Want Pi to follow your terminal's light and dark appearance? Pair two flavours in `~/.pi/agent/settings.json`:
|
|
39
|
+
|
|
40
|
+
```json
|
|
41
|
+
{
|
|
42
|
+
"theme": "catppuccin-latte/catppuccin-macchiato"
|
|
43
|
+
}
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
Pi will use Latte for light terminals and Macchiato for dark ones.
|
|
47
|
+
|
|
48
|
+
### Trying it locally
|
|
49
|
+
|
|
50
|
+
You can take the themes for a spin without changing your settings:
|
|
51
|
+
|
|
52
|
+
```sh
|
|
53
|
+
pi -e /absolute/path/to/pi-catppuccin
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
### Updating or removing
|
|
57
|
+
|
|
58
|
+
```sh
|
|
59
|
+
pi update npm:pi-catppuccin
|
|
60
|
+
pi remove npm:pi-catppuccin
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
## β¨ About
|
|
64
|
+
|
|
65
|
+
This port keeps Pi calm and readable while still feeling unmistakably Catppuccin:
|
|
66
|
+
|
|
67
|
+
- **Mauve at heart.** All four flavours use mauve as their accent rather than shipping every flavour/accent combination.
|
|
68
|
+
- **Quiet chrome.** Surface and Overlay colors keep borders and everyday UI out of the way.
|
|
69
|
+
- **Clear states.** Semantic colors are saved for warnings, errors, diffs, and other meaningful moments.
|
|
70
|
+
- **A gentle thinking gradient.** Pi's thinking border moves from neutral surfaces toward mauve as reasoning increases.
|
|
71
|
+
- **Readable Latte.** Text-facing accents are slightly darkened where the stock palette would be too faint on a light background.
|
|
72
|
+
|
|
73
|
+
Most colors come directly from the official Catppuccin palette. Whiskers derives only the raised panels, error tint, thinking gradient, and Latte readability adjustments.
|
|
74
|
+
|
|
75
|
+
## π§βπ» Development
|
|
76
|
+
|
|
77
|
+
[`catppuccin.tera`](catppuccin.tera) is the source of truth. The JSON themes are generated and committed so Pi can install this repository directly β please don't edit them by hand.
|
|
78
|
+
|
|
79
|
+
```sh
|
|
80
|
+
nix shell nixpkgs#catppuccin-whiskers --command whiskers catppuccin.tera
|
|
81
|
+
nix shell nixpkgs#catppuccin-whiskers --command whiskers catppuccin.tera --check
|
|
82
|
+
npm run check
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
Automated checks keep generated files in sync and smoke-test the package. A visual check is still worthwhile, especially with Latte and Macchiato.
|
|
86
|
+
|
|
87
|
+
## π Thanks
|
|
88
|
+
|
|
89
|
+
- [Catppuccin](https://github.com/catppuccin/catppuccin) for the palette
|
|
90
|
+
- [Whiskers](https://github.com/catppuccin/whiskers) for generation
|
|
91
|
+
- [Pi](https://github.com/earendil-works/pi) for the theme and package system
|
|
92
|
+
- [otahontas/pi-coding-agent-catppuccin](https://github.com/otahontas/pi-coding-agent-catppuccin) and [scarcekoi/pi](https://github.com/scarcekoi/pi) for visual and tooling inspiration
|
|
93
|
+
|
|
94
|
+
Released under the [MIT License](LICENSE).
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
|
|
98
|
+
<p align="center">
|
|
99
|
+
<img src="https://raw.githubusercontent.com/catppuccin/catppuccin/main/assets/footers/gray0_ctp_on_line.svg" alt="Catppuccin footer"/>
|
|
100
|
+
</p>
|
package/assets/icon.png
ADDED
|
Binary file
|
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "pi-catppuccin",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Unofficial Catppuccin themes for Pi",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"pi-package",
|
|
7
|
+
"catppuccin",
|
|
8
|
+
"pi",
|
|
9
|
+
"theme",
|
|
10
|
+
"themes"
|
|
11
|
+
],
|
|
12
|
+
"license": "MIT",
|
|
13
|
+
"repository": {
|
|
14
|
+
"type": "git",
|
|
15
|
+
"url": "git+https://github.com/madeleineostoja/pi-catppuccin.git"
|
|
16
|
+
},
|
|
17
|
+
"bugs": {
|
|
18
|
+
"url": "https://github.com/madeleineostoja/pi-catppuccin/issues"
|
|
19
|
+
},
|
|
20
|
+
"homepage": "https://github.com/madeleineostoja/pi-catppuccin#readme",
|
|
21
|
+
"image": "https://raw.githubusercontent.com/madeleineostoja/pi-catppuccin/main/assets/screenshot.png",
|
|
22
|
+
"files": [
|
|
23
|
+
"themes",
|
|
24
|
+
"assets",
|
|
25
|
+
"README.md",
|
|
26
|
+
"LICENSE"
|
|
27
|
+
],
|
|
28
|
+
"scripts": {
|
|
29
|
+
"check": "npm pack --dry-run"
|
|
30
|
+
},
|
|
31
|
+
"pi": {
|
|
32
|
+
"themes": [
|
|
33
|
+
"./themes"
|
|
34
|
+
]
|
|
35
|
+
}
|
|
36
|
+
}
|
|
@@ -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": "catppuccin-frappe",
|
|
4
|
+
"vars": {
|
|
5
|
+
"rosewater": "#f2d5cf",
|
|
6
|
+
"flamingo": "#eebebe",
|
|
7
|
+
"pink": "#f4b8e4",
|
|
8
|
+
"mauve": "#ca9ee6",
|
|
9
|
+
"red": "#e78284",
|
|
10
|
+
"maroon": "#ea999c",
|
|
11
|
+
"peach": "#ef9f76",
|
|
12
|
+
"yellow": "#e5c890",
|
|
13
|
+
"green": "#a6d189",
|
|
14
|
+
"teal": "#81c8be",
|
|
15
|
+
"sky": "#99d1db",
|
|
16
|
+
"sapphire": "#85c1dc",
|
|
17
|
+
"blue": "#8caaee",
|
|
18
|
+
"lavender": "#babbf1",
|
|
19
|
+
"text": "#c6d0f5",
|
|
20
|
+
"subtext1": "#b5bfe2",
|
|
21
|
+
"subtext0": "#a5adce",
|
|
22
|
+
"overlay2": "#949cbb",
|
|
23
|
+
"overlay1": "#838ba7",
|
|
24
|
+
"overlay0": "#737994",
|
|
25
|
+
"surface2": "#626880",
|
|
26
|
+
"surface1": "#51576d",
|
|
27
|
+
"surface0": "#414559",
|
|
28
|
+
"base": "#303446",
|
|
29
|
+
"mantle": "#292c3c",
|
|
30
|
+
"crust": "#232634",
|
|
31
|
+
"raisedBg": "#383d52",
|
|
32
|
+
"toolErrorBg": "#52475a",
|
|
33
|
+
"thinkingLow": "#5e5476",
|
|
34
|
+
"thinkingMedium": "#856e9e",
|
|
35
|
+
"thinkingHigh": "#ac88c6"
|
|
36
|
+
},
|
|
37
|
+
"colors": {
|
|
38
|
+
"accent": "mauve",
|
|
39
|
+
"border": "surface0",
|
|
40
|
+
"borderAccent": "surface2",
|
|
41
|
+
"borderMuted": "surface0",
|
|
42
|
+
"success": "green",
|
|
43
|
+
"error": "red",
|
|
44
|
+
"warning": "yellow",
|
|
45
|
+
"muted": "overlay1",
|
|
46
|
+
"dim": "overlay0",
|
|
47
|
+
"text": "text",
|
|
48
|
+
"thinkingText": "overlay0",
|
|
49
|
+
"selectedBg": "surface0",
|
|
50
|
+
"userMessageBg": "raisedBg",
|
|
51
|
+
"userMessageText": "text",
|
|
52
|
+
"customMessageBg": "surface0",
|
|
53
|
+
"customMessageText": "subtext0",
|
|
54
|
+
"customMessageLabel": "mauve",
|
|
55
|
+
"toolPendingBg": "raisedBg",
|
|
56
|
+
"toolSuccessBg": "raisedBg",
|
|
57
|
+
"toolErrorBg": "toolErrorBg",
|
|
58
|
+
"toolTitle": "mauve",
|
|
59
|
+
"toolOutput": "subtext0",
|
|
60
|
+
"mdHeading": "peach",
|
|
61
|
+
"mdLink": "blue",
|
|
62
|
+
"mdLinkUrl": "overlay0",
|
|
63
|
+
"mdCode": "teal",
|
|
64
|
+
"mdCodeBlock": "text",
|
|
65
|
+
"mdCodeBlockBorder": "surface0",
|
|
66
|
+
"mdQuote": "overlay0",
|
|
67
|
+
"mdQuoteBorder": "surface0",
|
|
68
|
+
"mdHr": "surface0",
|
|
69
|
+
"mdListBullet": "mauve",
|
|
70
|
+
"toolDiffAdded": "green",
|
|
71
|
+
"toolDiffRemoved": "red",
|
|
72
|
+
"toolDiffContext": "overlay0",
|
|
73
|
+
"syntaxComment": "overlay0",
|
|
74
|
+
"syntaxKeyword": "mauve",
|
|
75
|
+
"syntaxFunction": "blue",
|
|
76
|
+
"syntaxVariable": "peach",
|
|
77
|
+
"syntaxString": "green",
|
|
78
|
+
"syntaxNumber": "peach",
|
|
79
|
+
"syntaxType": "teal",
|
|
80
|
+
"syntaxOperator": "mauve",
|
|
81
|
+
"syntaxPunctuation": "subtext0",
|
|
82
|
+
"thinkingOff": "surface0",
|
|
83
|
+
"thinkingMinimal": "surface1",
|
|
84
|
+
"thinkingLow": "thinkingLow",
|
|
85
|
+
"thinkingMedium": "thinkingMedium",
|
|
86
|
+
"thinkingHigh": "thinkingHigh",
|
|
87
|
+
"thinkingXhigh": "mauve",
|
|
88
|
+
"thinkingMax": "mauve",
|
|
89
|
+
"bashMode": "peach"
|
|
90
|
+
},
|
|
91
|
+
"export": {
|
|
92
|
+
"pageBg": "base",
|
|
93
|
+
"cardBg": "raisedBg",
|
|
94
|
+
"infoBg": "surface0"
|
|
95
|
+
}
|
|
96
|
+
}
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://raw.githubusercontent.com/earendil-works/pi/main/packages/coding-agent/src/modes/interactive/theme/theme-schema.json",
|
|
3
|
+
"name": "catppuccin-latte",
|
|
4
|
+
"vars": {
|
|
5
|
+
"rosewater": "#dc8a78",
|
|
6
|
+
"flamingo": "#dd7878",
|
|
7
|
+
"pink": "#ea76cb",
|
|
8
|
+
"mauve": "#8839ef",
|
|
9
|
+
"red": "#d20f39",
|
|
10
|
+
"maroon": "#e64553",
|
|
11
|
+
"peach": "#fe640b",
|
|
12
|
+
"yellow": "#df8e1d",
|
|
13
|
+
"green": "#40a02b",
|
|
14
|
+
"teal": "#179299",
|
|
15
|
+
"sky": "#04a5e5",
|
|
16
|
+
"sapphire": "#209fb5",
|
|
17
|
+
"blue": "#1e66f5",
|
|
18
|
+
"lavender": "#7287fd",
|
|
19
|
+
"text": "#4c4f69",
|
|
20
|
+
"subtext1": "#5c5f77",
|
|
21
|
+
"subtext0": "#6c6f85",
|
|
22
|
+
"overlay2": "#7c7f93",
|
|
23
|
+
"overlay1": "#8c8fa1",
|
|
24
|
+
"overlay0": "#9ca0b0",
|
|
25
|
+
"surface2": "#acb0be",
|
|
26
|
+
"surface1": "#bcc0cc",
|
|
27
|
+
"surface0": "#ccd0da",
|
|
28
|
+
"base": "#eff1f5",
|
|
29
|
+
"mantle": "#e6e9ef",
|
|
30
|
+
"crust": "#dce0e8",
|
|
31
|
+
"raisedBg": "#fbfcfd",
|
|
32
|
+
"toolErrorBg": "#f9f0f3",
|
|
33
|
+
"thinkingLow": "#c09ef3",
|
|
34
|
+
"thinkingMedium": "#ac79f2",
|
|
35
|
+
"thinkingHigh": "#9a5af0",
|
|
36
|
+
"readableBlue": "#1962f5",
|
|
37
|
+
"readableGreen": "#327d21",
|
|
38
|
+
"readableYellow": "#966014",
|
|
39
|
+
"readablePeach": "#bd4601",
|
|
40
|
+
"readableTeal": "#13797f"
|
|
41
|
+
},
|
|
42
|
+
"colors": {
|
|
43
|
+
"accent": "mauve",
|
|
44
|
+
"border": "surface0",
|
|
45
|
+
"borderAccent": "surface2",
|
|
46
|
+
"borderMuted": "surface0",
|
|
47
|
+
"success": "readableGreen",
|
|
48
|
+
"error": "red",
|
|
49
|
+
"warning": "readableYellow",
|
|
50
|
+
"muted": "subtext0",
|
|
51
|
+
"dim": "overlay2",
|
|
52
|
+
"text": "text",
|
|
53
|
+
"thinkingText": "subtext1",
|
|
54
|
+
"selectedBg": "surface0",
|
|
55
|
+
"userMessageBg": "raisedBg",
|
|
56
|
+
"userMessageText": "text",
|
|
57
|
+
"customMessageBg": "surface0",
|
|
58
|
+
"customMessageText": "text",
|
|
59
|
+
"customMessageLabel": "mauve",
|
|
60
|
+
"toolPendingBg": "raisedBg",
|
|
61
|
+
"toolSuccessBg": "raisedBg",
|
|
62
|
+
"toolErrorBg": "toolErrorBg",
|
|
63
|
+
"toolTitle": "mauve",
|
|
64
|
+
"toolOutput": "subtext0",
|
|
65
|
+
"mdHeading": "readablePeach",
|
|
66
|
+
"mdLink": "readableBlue",
|
|
67
|
+
"mdLinkUrl": "subtext0",
|
|
68
|
+
"mdCode": "readableTeal",
|
|
69
|
+
"mdCodeBlock": "text",
|
|
70
|
+
"mdCodeBlockBorder": "surface0",
|
|
71
|
+
"mdQuote": "subtext1",
|
|
72
|
+
"mdQuoteBorder": "surface0",
|
|
73
|
+
"mdHr": "surface0",
|
|
74
|
+
"mdListBullet": "mauve",
|
|
75
|
+
"toolDiffAdded": "readableGreen",
|
|
76
|
+
"toolDiffRemoved": "red",
|
|
77
|
+
"toolDiffContext": "subtext0",
|
|
78
|
+
"syntaxComment": "subtext0",
|
|
79
|
+
"syntaxKeyword": "mauve",
|
|
80
|
+
"syntaxFunction": "readableBlue",
|
|
81
|
+
"syntaxVariable": "readablePeach",
|
|
82
|
+
"syntaxString": "readableGreen",
|
|
83
|
+
"syntaxNumber": "readablePeach",
|
|
84
|
+
"syntaxType": "readableTeal",
|
|
85
|
+
"syntaxOperator": "mauve",
|
|
86
|
+
"syntaxPunctuation": "subtext0",
|
|
87
|
+
"thinkingOff": "surface0",
|
|
88
|
+
"thinkingMinimal": "surface1",
|
|
89
|
+
"thinkingLow": "thinkingLow",
|
|
90
|
+
"thinkingMedium": "thinkingMedium",
|
|
91
|
+
"thinkingHigh": "thinkingHigh",
|
|
92
|
+
"thinkingXhigh": "mauve",
|
|
93
|
+
"thinkingMax": "mauve",
|
|
94
|
+
"bashMode": "readablePeach"
|
|
95
|
+
},
|
|
96
|
+
"export": {
|
|
97
|
+
"pageBg": "base",
|
|
98
|
+
"cardBg": "raisedBg",
|
|
99
|
+
"infoBg": "surface0"
|
|
100
|
+
}
|
|
101
|
+
}
|
|
@@ -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": "catppuccin-macchiato",
|
|
4
|
+
"vars": {
|
|
5
|
+
"rosewater": "#f4dbd6",
|
|
6
|
+
"flamingo": "#f0c6c6",
|
|
7
|
+
"pink": "#f5bde6",
|
|
8
|
+
"mauve": "#c6a0f6",
|
|
9
|
+
"red": "#ed8796",
|
|
10
|
+
"maroon": "#ee99a0",
|
|
11
|
+
"peach": "#f5a97f",
|
|
12
|
+
"yellow": "#eed49f",
|
|
13
|
+
"green": "#a6da95",
|
|
14
|
+
"teal": "#8bd5ca",
|
|
15
|
+
"sky": "#91d7e3",
|
|
16
|
+
"sapphire": "#7dc4e4",
|
|
17
|
+
"blue": "#8aadf4",
|
|
18
|
+
"lavender": "#b7bdf8",
|
|
19
|
+
"text": "#cad3f5",
|
|
20
|
+
"subtext1": "#b8c0e0",
|
|
21
|
+
"subtext0": "#a5adcb",
|
|
22
|
+
"overlay2": "#939ab7",
|
|
23
|
+
"overlay1": "#8087a2",
|
|
24
|
+
"overlay0": "#6e738d",
|
|
25
|
+
"surface2": "#5b6078",
|
|
26
|
+
"surface1": "#494d64",
|
|
27
|
+
"surface0": "#363a4f",
|
|
28
|
+
"base": "#24273a",
|
|
29
|
+
"mantle": "#1e2030",
|
|
30
|
+
"crust": "#181926",
|
|
31
|
+
"raisedBg": "#2c2f46",
|
|
32
|
+
"toolErrorBg": "#483c52",
|
|
33
|
+
"thinkingLow": "#544b72",
|
|
34
|
+
"thinkingMedium": "#7d6aa1",
|
|
35
|
+
"thinkingHigh": "#a588d1"
|
|
36
|
+
},
|
|
37
|
+
"colors": {
|
|
38
|
+
"accent": "mauve",
|
|
39
|
+
"border": "surface0",
|
|
40
|
+
"borderAccent": "surface2",
|
|
41
|
+
"borderMuted": "surface0",
|
|
42
|
+
"success": "green",
|
|
43
|
+
"error": "red",
|
|
44
|
+
"warning": "yellow",
|
|
45
|
+
"muted": "overlay1",
|
|
46
|
+
"dim": "overlay0",
|
|
47
|
+
"text": "text",
|
|
48
|
+
"thinkingText": "overlay0",
|
|
49
|
+
"selectedBg": "surface0",
|
|
50
|
+
"userMessageBg": "raisedBg",
|
|
51
|
+
"userMessageText": "text",
|
|
52
|
+
"customMessageBg": "surface0",
|
|
53
|
+
"customMessageText": "subtext0",
|
|
54
|
+
"customMessageLabel": "mauve",
|
|
55
|
+
"toolPendingBg": "raisedBg",
|
|
56
|
+
"toolSuccessBg": "raisedBg",
|
|
57
|
+
"toolErrorBg": "toolErrorBg",
|
|
58
|
+
"toolTitle": "mauve",
|
|
59
|
+
"toolOutput": "subtext0",
|
|
60
|
+
"mdHeading": "peach",
|
|
61
|
+
"mdLink": "blue",
|
|
62
|
+
"mdLinkUrl": "overlay0",
|
|
63
|
+
"mdCode": "teal",
|
|
64
|
+
"mdCodeBlock": "text",
|
|
65
|
+
"mdCodeBlockBorder": "surface0",
|
|
66
|
+
"mdQuote": "overlay0",
|
|
67
|
+
"mdQuoteBorder": "surface0",
|
|
68
|
+
"mdHr": "surface0",
|
|
69
|
+
"mdListBullet": "mauve",
|
|
70
|
+
"toolDiffAdded": "green",
|
|
71
|
+
"toolDiffRemoved": "red",
|
|
72
|
+
"toolDiffContext": "overlay0",
|
|
73
|
+
"syntaxComment": "overlay0",
|
|
74
|
+
"syntaxKeyword": "mauve",
|
|
75
|
+
"syntaxFunction": "blue",
|
|
76
|
+
"syntaxVariable": "peach",
|
|
77
|
+
"syntaxString": "green",
|
|
78
|
+
"syntaxNumber": "peach",
|
|
79
|
+
"syntaxType": "teal",
|
|
80
|
+
"syntaxOperator": "mauve",
|
|
81
|
+
"syntaxPunctuation": "subtext0",
|
|
82
|
+
"thinkingOff": "surface0",
|
|
83
|
+
"thinkingMinimal": "surface1",
|
|
84
|
+
"thinkingLow": "thinkingLow",
|
|
85
|
+
"thinkingMedium": "thinkingMedium",
|
|
86
|
+
"thinkingHigh": "thinkingHigh",
|
|
87
|
+
"thinkingXhigh": "mauve",
|
|
88
|
+
"thinkingMax": "mauve",
|
|
89
|
+
"bashMode": "peach"
|
|
90
|
+
},
|
|
91
|
+
"export": {
|
|
92
|
+
"pageBg": "base",
|
|
93
|
+
"cardBg": "raisedBg",
|
|
94
|
+
"infoBg": "surface0"
|
|
95
|
+
}
|
|
96
|
+
}
|
|
@@ -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": "catppuccin-mocha",
|
|
4
|
+
"vars": {
|
|
5
|
+
"rosewater": "#f5e0dc",
|
|
6
|
+
"flamingo": "#f2cdcd",
|
|
7
|
+
"pink": "#f5c2e7",
|
|
8
|
+
"mauve": "#cba6f7",
|
|
9
|
+
"red": "#f38ba8",
|
|
10
|
+
"maroon": "#eba0ac",
|
|
11
|
+
"peach": "#fab387",
|
|
12
|
+
"yellow": "#f9e2af",
|
|
13
|
+
"green": "#a6e3a1",
|
|
14
|
+
"teal": "#94e2d5",
|
|
15
|
+
"sky": "#89dceb",
|
|
16
|
+
"sapphire": "#74c7ec",
|
|
17
|
+
"blue": "#89b4fa",
|
|
18
|
+
"lavender": "#b4befe",
|
|
19
|
+
"text": "#cdd6f4",
|
|
20
|
+
"subtext1": "#bac2de",
|
|
21
|
+
"subtext0": "#a6adc8",
|
|
22
|
+
"overlay2": "#9399b2",
|
|
23
|
+
"overlay1": "#7f849c",
|
|
24
|
+
"overlay0": "#6c7086",
|
|
25
|
+
"surface2": "#585b70",
|
|
26
|
+
"surface1": "#45475a",
|
|
27
|
+
"surface0": "#313244",
|
|
28
|
+
"base": "#1e1e2e",
|
|
29
|
+
"mantle": "#181825",
|
|
30
|
+
"crust": "#11111b",
|
|
31
|
+
"raisedBg": "#26263a",
|
|
32
|
+
"toolErrorBg": "#44354a",
|
|
33
|
+
"thinkingLow": "#52466a",
|
|
34
|
+
"thinkingMedium": "#7d699d",
|
|
35
|
+
"thinkingHigh": "#a88bcf"
|
|
36
|
+
},
|
|
37
|
+
"colors": {
|
|
38
|
+
"accent": "mauve",
|
|
39
|
+
"border": "surface0",
|
|
40
|
+
"borderAccent": "surface2",
|
|
41
|
+
"borderMuted": "surface0",
|
|
42
|
+
"success": "green",
|
|
43
|
+
"error": "red",
|
|
44
|
+
"warning": "yellow",
|
|
45
|
+
"muted": "overlay1",
|
|
46
|
+
"dim": "overlay0",
|
|
47
|
+
"text": "text",
|
|
48
|
+
"thinkingText": "overlay0",
|
|
49
|
+
"selectedBg": "surface0",
|
|
50
|
+
"userMessageBg": "raisedBg",
|
|
51
|
+
"userMessageText": "text",
|
|
52
|
+
"customMessageBg": "surface0",
|
|
53
|
+
"customMessageText": "subtext0",
|
|
54
|
+
"customMessageLabel": "mauve",
|
|
55
|
+
"toolPendingBg": "raisedBg",
|
|
56
|
+
"toolSuccessBg": "raisedBg",
|
|
57
|
+
"toolErrorBg": "toolErrorBg",
|
|
58
|
+
"toolTitle": "mauve",
|
|
59
|
+
"toolOutput": "subtext0",
|
|
60
|
+
"mdHeading": "peach",
|
|
61
|
+
"mdLink": "blue",
|
|
62
|
+
"mdLinkUrl": "overlay0",
|
|
63
|
+
"mdCode": "teal",
|
|
64
|
+
"mdCodeBlock": "text",
|
|
65
|
+
"mdCodeBlockBorder": "surface0",
|
|
66
|
+
"mdQuote": "overlay0",
|
|
67
|
+
"mdQuoteBorder": "surface0",
|
|
68
|
+
"mdHr": "surface0",
|
|
69
|
+
"mdListBullet": "mauve",
|
|
70
|
+
"toolDiffAdded": "green",
|
|
71
|
+
"toolDiffRemoved": "red",
|
|
72
|
+
"toolDiffContext": "overlay0",
|
|
73
|
+
"syntaxComment": "overlay0",
|
|
74
|
+
"syntaxKeyword": "mauve",
|
|
75
|
+
"syntaxFunction": "blue",
|
|
76
|
+
"syntaxVariable": "peach",
|
|
77
|
+
"syntaxString": "green",
|
|
78
|
+
"syntaxNumber": "peach",
|
|
79
|
+
"syntaxType": "teal",
|
|
80
|
+
"syntaxOperator": "mauve",
|
|
81
|
+
"syntaxPunctuation": "subtext0",
|
|
82
|
+
"thinkingOff": "surface0",
|
|
83
|
+
"thinkingMinimal": "surface1",
|
|
84
|
+
"thinkingLow": "thinkingLow",
|
|
85
|
+
"thinkingMedium": "thinkingMedium",
|
|
86
|
+
"thinkingHigh": "thinkingHigh",
|
|
87
|
+
"thinkingXhigh": "mauve",
|
|
88
|
+
"thinkingMax": "mauve",
|
|
89
|
+
"bashMode": "peach"
|
|
90
|
+
},
|
|
91
|
+
"export": {
|
|
92
|
+
"pageBg": "base",
|
|
93
|
+
"cardBg": "raisedBg",
|
|
94
|
+
"infoBg": "surface0"
|
|
95
|
+
}
|
|
96
|
+
}
|