pi-cursor-theme 0.1.0 → 0.2.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/CHANGELOG.md CHANGED
@@ -5,6 +5,19 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [0.2.0] - 2025-02-20
9
+
10
+ ### Added
11
+
12
+ - Export section for HTML export with pageBg, cardBg, and infoBg colors
13
+ - New theme variables: bgDark (#343434) and bgHighlight (#454545)
14
+
15
+ ### Changed
16
+
17
+ - Updated customMessageLabel from cyan to pink
18
+ - Updated toolOutput from empty to muted
19
+ - Adjusted thinkingMinimal and thinkingLow colors for better visual hierarchy
20
+
8
21
  ## [0.1.0] - 2025-02-19
9
22
 
10
23
  ### Added
@@ -14,3 +27,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
14
27
  - 51 color tokens for complete TUI coverage
15
28
  - Support for syntax highlighting, markdown rendering, and tool output
16
29
  - Documentation with attribution to inspiration sources
30
+
31
+ [0.2.0]: https://github.com/dkmnx/pi-cursor-theme/compare/v0.1.0...v0.2.0
32
+ [0.1.0]: https://github.com/dkmnx/pi-cursor-theme/compare/v0.1.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-cursor-theme",
3
- "version": "0.1.0",
3
+ "version": "0.2.0",
4
4
  "description": "A Cursor-inspired dark theme for pi coding agent",
5
5
  "keywords": ["pi-package", "pi-theme", "theme", "cursor", "dark-theme"],
6
6
  "author": "dkmnx",
@@ -3,6 +3,8 @@
3
3
  "name": "cursor-dark",
4
4
  "vars": {
5
5
  "bg": "#181818",
6
+ "bgDark": "#343434",
7
+ "bgHighlight": "#454545",
6
8
  "panel": "#141414",
7
9
  "element": "#262626",
8
10
  "fg": "#e4e4e4",
@@ -33,17 +35,19 @@
33
35
  "dim": 240,
34
36
  "text": "",
35
37
  "thinkingText": "muted",
38
+
36
39
  "selectedBg": "element",
37
40
  "userMessageBg": "panel",
38
41
  "userMessageText": "",
39
42
  "customMessageBg": "element",
40
43
  "customMessageText": "",
41
- "customMessageLabel": "cyan",
44
+ "customMessageLabel": "pink",
42
45
  "toolPendingBg": "panel",
43
46
  "toolSuccessBg": "panel",
44
47
  "toolErrorBg": "panel",
45
48
  "toolTitle": "cyan",
46
- "toolOutput": "",
49
+ "toolOutput": "muted",
50
+
47
51
  "mdHeading": "purple",
48
52
  "mdLink": "teal",
49
53
  "mdLinkUrl": "blue",
@@ -54,9 +58,11 @@
54
58
  "mdQuoteBorder": "muted",
55
59
  "mdHr": "muted",
56
60
  "mdListBullet": "cyan",
61
+
57
62
  "toolDiffAdded": "green",
58
63
  "toolDiffRemoved": "red",
59
64
  "toolDiffContext": "muted",
65
+
60
66
  "syntaxComment": "muted",
61
67
  "syntaxKeyword": "teal",
62
68
  "syntaxFunction": "orange",
@@ -66,12 +72,19 @@
66
72
  "syntaxType": "orange",
67
73
  "syntaxOperator": "fg",
68
74
  "syntaxPunctuation": "fg",
75
+
69
76
  "thinkingOff": "border",
70
- "thinkingMinimal": "cyan",
71
- "thinkingLow": "blue",
77
+ "thinkingMinimal": "blue",
78
+ "thinkingLow": "cyan",
72
79
  "thinkingMedium": "teal",
73
80
  "thinkingHigh": "pink",
74
81
  "thinkingXhigh": "red",
82
+
75
83
  "bashMode": "yellow"
84
+ },
85
+ "export": {
86
+ "pageBg": "bgDark",
87
+ "cardBg": "bg",
88
+ "infoBg": "bgHighlight"
76
89
  }
77
90
  }