priiisk 0.3.5-linux-arm64 → 0.3.6-darwin-x64
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 +1 -1
- package/bin/priiisk +0 -0
- package/bin/theme/dark.json +3 -0
- package/bin/theme/light.json +3 -0
- package/bin/theme/theme-schema.json +13 -1
- package/package.json +4 -4
package/README.md
CHANGED
package/bin/priiisk
CHANGED
|
Binary file
|
package/bin/theme/dark.json
CHANGED
|
@@ -33,6 +33,9 @@
|
|
|
33
33
|
"thinkingText": "gray",
|
|
34
34
|
|
|
35
35
|
"selectedBg": "selectedBg",
|
|
36
|
+
"scrollbarThumb": "selectedBg",
|
|
37
|
+
"searchMatchBg": "selectedBg",
|
|
38
|
+
"searchMatchText": "text",
|
|
36
39
|
"userMessageBg": "userMsgBg",
|
|
37
40
|
"userMessageText": "text",
|
|
38
41
|
"customMessageBg": "customMsgBg",
|
package/bin/theme/light.json
CHANGED
|
@@ -32,6 +32,9 @@
|
|
|
32
32
|
"thinkingText": "mediumGray",
|
|
33
33
|
|
|
34
34
|
"selectedBg": "selectedBg",
|
|
35
|
+
"scrollbarThumb": "selectedBg",
|
|
36
|
+
"searchMatchBg": "selectedBg",
|
|
37
|
+
"searchMatchText": "text",
|
|
35
38
|
"userMessageBg": "userMsgBg",
|
|
36
39
|
"userMessageText": "text",
|
|
37
40
|
"customMessageBg": "customMsgBg",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
},
|
|
35
35
|
"colors": {
|
|
36
36
|
"type": "object",
|
|
37
|
-
"description": "Theme color definitions (thinkingMax
|
|
37
|
+
"description": "Theme color definitions (thinkingMax, scrollbarThumb, and search highlight colors are optional and use compatible fallbacks)",
|
|
38
38
|
"required": [
|
|
39
39
|
"accent",
|
|
40
40
|
"border",
|
|
@@ -137,6 +137,18 @@
|
|
|
137
137
|
"$ref": "#/$defs/colorValue",
|
|
138
138
|
"description": "Selected item background"
|
|
139
139
|
},
|
|
140
|
+
"scrollbarThumb": {
|
|
141
|
+
"$ref": "#/$defs/colorValue",
|
|
142
|
+
"description": "Fullscreen scrollbar thumb background (falls back to selectedBg when omitted)"
|
|
143
|
+
},
|
|
144
|
+
"searchMatchBg": {
|
|
145
|
+
"$ref": "#/$defs/colorValue",
|
|
146
|
+
"description": "Transcript search match background and current-match text (falls back to selectedBg when omitted)"
|
|
147
|
+
},
|
|
148
|
+
"searchMatchText": {
|
|
149
|
+
"$ref": "#/$defs/colorValue",
|
|
150
|
+
"description": "Transcript search match text and current-match background (falls back to text when omitted)"
|
|
151
|
+
},
|
|
140
152
|
"userMessageBg": {
|
|
141
153
|
"$ref": "#/$defs/colorValue",
|
|
142
154
|
"description": "User message background"
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "priiisk",
|
|
3
|
-
"version": "0.3.
|
|
4
|
-
"description": "priiisk executable for
|
|
3
|
+
"version": "0.3.6-darwin-x64",
|
|
4
|
+
"description": "priiisk executable for darwin x64",
|
|
5
5
|
"os": [
|
|
6
|
-
"
|
|
6
|
+
"darwin"
|
|
7
7
|
],
|
|
8
8
|
"cpu": [
|
|
9
|
-
"
|
|
9
|
+
"x64"
|
|
10
10
|
],
|
|
11
11
|
"files": [
|
|
12
12
|
"bin/priiisk",
|