pi-theme-flexoki 1.0.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/README.md ADDED
@@ -0,0 +1,36 @@
1
+ # Pi Theme Flexoki
2
+
3
+ [Flexoki](https://stephango.com/flexoki) theme for the [shitty coding agent](https://github.com/badlogic/pi-mono).
4
+
5
+ ## Install
6
+
7
+ ```bash
8
+ pi install git:github.com/markacianfrani/pi-theme-flexoki
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ Set in your `~/.pi/agent/settings.json`:
14
+
15
+ ```json
16
+ {
17
+ "theme": "flexoki-dark"
18
+ }
19
+ ```
20
+
21
+ Or for light mode:
22
+
23
+ ```json
24
+ {
25
+ "theme": "flexoki-light"
26
+ }
27
+ ```
28
+
29
+ ## Themes
30
+
31
+ - **flexoki-dark** - Dark theme with warm paper tones
32
+ - **flexoki-light** - Light theme for daytime use
33
+
34
+ ## Credits
35
+
36
+ - [Flexoki](https://stephango.com/flexoki) by Steph Ango
package/package.json ADDED
@@ -0,0 +1,15 @@
1
+ {
2
+ "name": "pi-theme-flexoki",
3
+ "version": "1.0.0",
4
+ "description": "Flexoki theme for Pi coding agent - an inky color scheme for prose and code",
5
+ "keywords": ["pi-package", "pi-theme", "flexoki"],
6
+ "author": "Mark Cianfrani",
7
+ "license": "MIT",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/markacianfrani/pi-theme-flexoki.git"
11
+ },
12
+ "pi": {
13
+ "themes": ["./themes"]
14
+ }
15
+ }
@@ -0,0 +1,100 @@
1
+ {
2
+ "$schema": "https://raw.githubusercontent.com/badlogic/pi-mono/main/packages/coding-agent/src/modes/interactive/theme/theme-schema.json",
3
+ "name": "flexoki-dark",
4
+ "vars": {
5
+ "paper": "#FFFCF0",
6
+ "black": "#100F0F",
7
+ "base-950": "#1C1B1A",
8
+ "base-900": "#282726",
9
+ "base-850": "#343331",
10
+ "base-800": "#403E3C",
11
+ "base-700": "#575653",
12
+ "base-600": "#6F6E69",
13
+ "base-500": "#878580",
14
+ "base-400": "#9F9D96",
15
+ "base-300": "#B7B5AC",
16
+ "base-200": "#CECDC3",
17
+ "red": "#AF3029",
18
+ "red-400": "#D14D41",
19
+ "orange": "#BC5215",
20
+ "orange-400": "#DA702C",
21
+ "yellow": "#AD8301",
22
+ "yellow-400": "#D0A215",
23
+ "green": "#66800B",
24
+ "green-400": "#879A39",
25
+ "cyan": "#24837B",
26
+ "cyan-400": "#3AA99F",
27
+ "blue": "#205EA6",
28
+ "blue-400": "#4385BE",
29
+ "purple": "#5E409D",
30
+ "purple-400": "#8B7EC8",
31
+ "magenta": "#A02F6F",
32
+ "magenta-400": "#CE5D97",
33
+ "green-900": "#252D09",
34
+ "red-900": "#3E1715"
35
+ },
36
+ "colors": {
37
+ "accent": "cyan-400",
38
+ "border": "base-700",
39
+ "borderAccent": "cyan-400",
40
+ "borderMuted": "base-800",
41
+ "success": "green-400",
42
+ "error": "red-400",
43
+ "warning": "yellow-400",
44
+ "muted": "base-400",
45
+ "dim": "base-500",
46
+ "text": "base-300",
47
+ "thinkingText": "base-400",
48
+
49
+ "selectedBg": "base-850",
50
+ "userMessageBg": "base-900",
51
+ "userMessageText": "base-200",
52
+ "customMessageBg": "base-950",
53
+ "customMessageText": "base-300",
54
+ "customMessageLabel": "purple-400",
55
+ "toolPendingBg": "base-950",
56
+ "toolSuccessBg": "green-900",
57
+ "toolErrorBg": "red-900",
58
+ "toolTitle": "base-300",
59
+ "toolOutput": "base-400",
60
+
61
+ "mdHeading": "yellow-400",
62
+ "mdLink": "blue-400",
63
+ "mdLinkUrl": "base-600",
64
+ "mdCode": "cyan-400",
65
+ "mdCodeBlock": "green-400",
66
+ "mdCodeBlockBorder": "base-600",
67
+ "mdQuote": "base-500",
68
+ "mdQuoteBorder": "base-600",
69
+ "mdHr": "base-600",
70
+ "mdListBullet": "cyan-400",
71
+
72
+ "toolDiffAdded": "green",
73
+ "toolDiffRemoved": "red",
74
+ "toolDiffContext": "base-500",
75
+
76
+ "syntaxComment": "base-500",
77
+ "syntaxKeyword": "blue",
78
+ "syntaxFunction": "orange-400",
79
+ "syntaxVariable": "cyan-400",
80
+ "syntaxString": "green",
81
+ "syntaxNumber": "purple-400",
82
+ "syntaxType": "magenta-400",
83
+ "syntaxOperator": "base-400",
84
+ "syntaxPunctuation": "base-400",
85
+
86
+ "thinkingOff": "base-700",
87
+ "thinkingMinimal": "base-600",
88
+ "thinkingLow": "blue",
89
+ "thinkingMedium": "cyan",
90
+ "thinkingHigh": "purple",
91
+ "thinkingXhigh": "magenta",
92
+
93
+ "bashMode": "green"
94
+ },
95
+ "export": {
96
+ "pageBg": "#1C1B1A",
97
+ "cardBg": "#282726",
98
+ "infoBg": "#343331"
99
+ }
100
+ }
@@ -0,0 +1,100 @@
1
+ {
2
+ "$schema": "https://raw.githubusercontent.com/badlogic/pi-mono/main/packages/coding-agent/src/modes/interactive/theme/theme-schema.json",
3
+ "name": "flexoki-light",
4
+ "vars": {
5
+ "paper": "#FFFCF0",
6
+ "black": "#100F0F",
7
+ "base-100": "#E6E4D9",
8
+ "base-150": "#DAD8CE",
9
+ "base-200": "#CECDC3",
10
+ "base-300": "#B7B5AC",
11
+ "base-400": "#9F9D96",
12
+ "base-500": "#878580",
13
+ "base-600": "#6F6E69",
14
+ "base-700": "#575653",
15
+ "red-100": "#FFCABB",
16
+ "red": "#D14D41",
17
+ "red-600": "#AF3029",
18
+ "orange": "#DA702C",
19
+ "orange-600": "#BC5215",
20
+ "yellow": "#D0A215",
21
+ "yellow-600": "#AD8301",
22
+ "green-100": "#DDE2B2",
23
+ "green": "#879A39",
24
+ "green-600": "#66800B",
25
+ "cyan": "#3AA99F",
26
+ "cyan-600": "#24837B",
27
+ "blue": "#4385BE",
28
+ "blue-600": "#205EA6",
29
+ "purple": "#8B7EC8",
30
+ "purple-600": "#5E409D",
31
+ "magenta": "#CE5D97",
32
+ "magenta-600": "#A02F6F",
33
+ "success-bg": "#E3E4D6",
34
+ "error-bg": "#E8DFD6"
35
+ },
36
+ "colors": {
37
+ "accent": "cyan-600",
38
+ "border": "base-400",
39
+ "borderAccent": "cyan-600",
40
+ "borderMuted": "base-300",
41
+ "success": "green-600",
42
+ "error": "red-600",
43
+ "warning": "yellow-600",
44
+ "muted": "base-700",
45
+ "dim": "base-600",
46
+ "text": "base-700",
47
+ "thinkingText": "base-700",
48
+
49
+ "selectedBg": "base-150",
50
+ "userMessageBg": "base-100",
51
+ "userMessageText": "base-700",
52
+ "customMessageBg": "base-150",
53
+ "customMessageText": "base-700",
54
+ "customMessageLabel": "purple-600",
55
+ "toolPendingBg": "base-100",
56
+ "toolSuccessBg": "success-bg",
57
+ "toolErrorBg": "error-bg",
58
+ "toolTitle": "base-700",
59
+ "toolOutput": "base-700",
60
+
61
+ "mdHeading": "yellow-600",
62
+ "mdLink": "blue-600",
63
+ "mdLinkUrl": "base-500",
64
+ "mdCode": "cyan-600",
65
+ "mdCodeBlock": "green-600",
66
+ "mdCodeBlockBorder": "base-400",
67
+ "mdQuote": "base-600",
68
+ "mdQuoteBorder": "base-400",
69
+ "mdHr": "base-400",
70
+ "mdListBullet": "cyan-600",
71
+
72
+ "toolDiffAdded": "green-600",
73
+ "toolDiffRemoved": "red-600",
74
+ "toolDiffContext": "base-500",
75
+
76
+ "syntaxComment": "base-500",
77
+ "syntaxKeyword": "blue-600",
78
+ "syntaxFunction": "orange-600",
79
+ "syntaxVariable": "cyan-600",
80
+ "syntaxString": "green-600",
81
+ "syntaxNumber": "purple-600",
82
+ "syntaxType": "magenta-600",
83
+ "syntaxOperator": "base-700",
84
+ "syntaxPunctuation": "base-600",
85
+
86
+ "thinkingOff": "base-300",
87
+ "thinkingMinimal": "base-400",
88
+ "thinkingLow": "blue-600",
89
+ "thinkingMedium": "cyan-600",
90
+ "thinkingHigh": "purple-600",
91
+ "thinkingXhigh": "magenta-600",
92
+
93
+ "bashMode": "green-600"
94
+ },
95
+ "export": {
96
+ "pageBg": "#FFFCF0",
97
+ "cardBg": "#F2F0E5",
98
+ "infoBg": "#FAEEC6"
99
+ }
100
+ }