@pierre/theme 0.0.22 → 0.0.23

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.
@@ -0,0 +1,75 @@
1
+ # Pierre Theme
2
+
3
+ Light and dark themes for Visual Studio Code, Cursor, Zed, and Shiki. Built for [Diffs.com](https://diffs.com) by [The Pierre Computer Company](https://pierre.computer).
4
+
5
+ ## Preview
6
+
7
+ ![Pierre dark theme screenshot](https://github.com/user-attachments/assets/e8b2a6e0-995b-4515-997a-f805f4fbc5bf)
8
+ ![Pierre light theme screenshot](https://github.com/user-attachments/assets/2ebb09d0-eb42-4c28-9617-35873d96ed8f)
9
+
10
+ ## Install
11
+
12
+ ### Visual Studio Code
13
+
14
+ From the menu in Visual Studio Code:
15
+
16
+ - View > Extensions (or hit Command+Shift+X or Control+Shift+X)
17
+ - Search for `Pierre Theme`
18
+ - Click install
19
+
20
+ You can also install or download from the [Visual Studio Marketplace](https://marketplace.visualstudio.com/items?itemName=pierrecomputer.pierre-theme).
21
+
22
+ ### Cursor
23
+
24
+ From the menu in Cursor:
25
+
26
+ - View > Extensions (or hit Command+Shift+X or Control+Shift+X)
27
+ - Search for `Pierre Theme`
28
+ - Click install
29
+
30
+ You can also install or download from the [Open VSX registry](https://open-vsx.org/extension/pierrecomputer/pierre-theme).
31
+
32
+ ### Zed
33
+
34
+ From the menu in Zed:
35
+
36
+ - Zed > Extensions (or hit Command+Shift+X or Control+Shift+X)
37
+ - Search for `Pierre`
38
+ - Click install
39
+
40
+ ## Vibrant themes (Display P3)
41
+
42
+ > [!NOTE]
43
+ > Vibrant themes do not work in VS Code or Cursor at this time as it does not support color formats other than Hex or RGB. You can, however, use these with [Diffs](https://diffs.com) or any [Shiki](https://shiki.style) project to render code.
44
+
45
+ The **Vibrant** theme variants use CSS's `color(display-p3 r g b)` format with enhanced saturation to fully utilize Display P3's wider color gamut. Display P3 can represent ~25% more colors than standard sRGB, and these themes are optimized to take full advantage of that on compatible displays.
46
+
47
+ The conversion algorithm transforms sRGB colors to Display P3 through proper linear color space transformations, then enhances saturation (15-30%) and luminance (5% for vibrant colors) to push colors into the wider P3 gamut that isn't accessible in sRGB.
48
+
49
+ ## Override
50
+
51
+ To override this (or any other) theme in your personal config file, please follow the guide in the [color theme](https://code.visualstudio.com/api/extension-guides/color-theme) documentation. This is handy for small tweaks to the theme without having to fork and maintain your own theme.
52
+
53
+ ## Contribute
54
+
55
+ 1. Clone and open this [repo](https://github.com/pierrecomputer/theme) in your editor
56
+ 2. Run `npm install` to install the dependencies.
57
+ 3. Press `F5` to open a new window with your extension loaded
58
+ 4. Open `Code > Preferences > Color Theme` [`⌘k ⌘t`] and pick the "Pierre…" theme you want to test.
59
+ 5. Make changes to the [`/src/theme.ts`](https://github.com/pierrecomputer/theme/blob/main/src/theme.ts) file.
60
+ 6. Run `npm run build` to update the theme. You can also run `npm run start` instead to automatically rebuild the theme while making changes and no reloading should be necessary.
61
+ 7. Run `npm test` to validate your changes (this runs automatically on PRs).
62
+ 8. Once you're happy, commit your changes and open a PR.
63
+
64
+ ## Scripts
65
+
66
+ | Script | Description |
67
+ | --- | --- |
68
+ | `npm run build` | Builds the theme `.json` files in `./themes` directory |
69
+ | `npm test` | Runs validation tests on the theme (includes build) |
70
+ | `npm run package` | Compiles the theme `.vsix` file at the project root |
71
+ | `npm start` | Automatically runs build on file change |
72
+
73
+ ## Credit
74
+
75
+ This theme was built on top of [GitHub's Visual Studio Code Theme](https://github.com/primer/github-vscode-theme). All credit to them for the technique and build tooling, which we've since iterated on for more specific language tokens.
package/LICENSE.md CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2025 The Pierre Computer Company
3
+ Copyright (c) 2026 The Pierre Computer Company
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -1,75 +1,16 @@
1
- # Pierre Theme
1
+ ```
2
+ PIERRE COMPUTER COMPANY █
3
+ PROJECT: THEME
2
4
 
3
- Light and dark themes for Visual Studio Code, Cursor, Zed, and Shiki. Built for [Diffs.com](https://diffs.com) by [The Pierre Computer Company](https://pierre.computer).
5
+ ~~~
4
6
 
5
- ## Preview
7
+ CONTACT: SUPPORT@PIERRE.CO
8
+ LOCATION: USA
9
+ STATUS: ONLINE
10
+ OPEN POSITIONS: [Systems Engineer](https://pierre.computer/careers/systems-engineer)
6
11
 
7
- ![Pierre dark theme screenshot](https://github.com/user-attachments/assets/e8b2a6e0-995b-4515-997a-f805f4fbc5bf)
8
- ![Pierre light theme screenshot](https://github.com/user-attachments/assets/2ebb09d0-eb42-4c28-9617-35873d96ed8f)
12
+ ~~~
9
13
 
10
- ## Install
11
-
12
- ### Visual Studio Code
13
-
14
- From the menu in Visual Studio Code:
15
-
16
- - View > Extensions (or hit Command+Shift+X or Control+Shift+X)
17
- - Search for `Pierre Theme`
18
- - Click install
19
-
20
- You can also install or download from the [Visual Studio Marketplace](https://marketplace.visualstudio.com/items?itemName=pierrecomputer.pierre-theme).
21
-
22
- ### Cursor
23
-
24
- From the menu in Cursor:
25
-
26
- - View > Extensions (or hit Command+Shift+X or Control+Shift+X)
27
- - Search for `Pierre Theme`
28
- - Click install
29
-
30
- You can also install or download from the [Open VSX registry](https://open-vsx.org/extension/pierrecomputer/pierre-theme).
31
-
32
- ### Zed
33
-
34
- From the menu in Zed:
35
-
36
- - Zed > Extensions (or hit Command+Shift+X or Control+Shift+X)
37
- - Search for `Pierre`
38
- - Click install
39
-
40
- ## Vibrant themes (Display P3)
41
-
42
- > [!NOTE]
43
- > Vibrant themes do not work in VS Code or Cursor at this time as it does not support color formats other than Hex or RGB. You can, however, use these with [Diffs](https://diffs.com) or any [Shiki](https://shiki.style) project to render code.
44
-
45
- The **Vibrant** theme variants use CSS's `color(display-p3 r g b)` format with enhanced saturation to fully utilize Display P3's wider color gamut. Display P3 can represent ~25% more colors than standard sRGB, and these themes are optimized to take full advantage of that on compatible displays.
46
-
47
- The conversion algorithm transforms sRGB colors to Display P3 through proper linear color space transformations, then enhances saturation (15-30%) and luminance (5% for vibrant colors) to push colors into the wider P3 gamut that isn't accessible in sRGB.
48
-
49
- ## Override
50
-
51
- To override this (or any other) theme in your personal config file, please follow the guide in the [color theme](https://code.visualstudio.com/api/extension-guides/color-theme) documentation. This is handy for small tweaks to the theme without having to fork and maintain your own theme.
52
-
53
- ## Contribute
54
-
55
- 1. Clone and open this [repo](https://github.com/pierrecomputer/theme) in your editor
56
- 2. Run `npm install` to install the dependencies.
57
- 3. Press `F5` to open a new window with your extension loaded
58
- 4. Open `Code > Preferences > Color Theme` [`⌘k ⌘t`] and pick the "Pierre…" theme you want to test.
59
- 5. Make changes to the [`/src/theme.ts`](https://github.com/pierrecomputer/theme/blob/main/src/theme.ts) file.
60
- 6. Run `npm run build` to update the theme. You can also run `npm run start` instead to automatically rebuild the theme while making changes and no reloading should be necessary.
61
- 7. Run `npm test` to validate your changes (this runs automatically on PRs).
62
- 8. Once you're happy, commit your changes and open a PR.
63
-
64
- ## Scripts
65
-
66
- | Script | Description |
67
- | --- | --- |
68
- | `npm run build` | Builds the theme `.json` files in `./themes` directory |
69
- | `npm test` | Runs validation tests on the theme (includes build) |
70
- | `npm run package` | Compiles the theme `.vsix` file at the project root |
71
- | `npm start` | Automatically runs build on file change |
72
-
73
- ## Credit
74
-
75
- This theme was built on top of [GitHub's Visual Studio Code Theme](https://github.com/primer/github-vscode-theme). All credit to them for the technique and build tooling, which we've since iterated on for more specific language tokens.
14
+ Overview:
15
+ - Light and dark themes for Visual Studio Code, Cursor, Zed, and Shiki.
16
+ - Built for [Diffs.com](https://diffs.com)
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@pierre/theme",
3
3
  "displayName": "Pierre Theme",
4
4
  "description": "Pierre theme for Shiki, VS Code, and more",
5
- "version": "0.0.22",
5
+ "version": "0.0.23",
6
6
  "publisher": "pierrecomputer",
7
7
  "icon": "icon.png",
8
8
  "galleryBanner": {
package/zed/LICENSE.md ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 The Pierre Computer Company
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.
@@ -1,7 +1,7 @@
1
- id = "pierre"
1
+ id = "pierre-theme"
2
2
  name = "Pierre"
3
3
  description = "A warm, orange-accented color theme with light and dark variants"
4
- version = "0.0.1"
4
+ version = "0.0.23"
5
5
  schema_version = 1
6
6
  authors = ["pierrecomputer"]
7
7
  repository = "https://github.com/pierrecomputer/pierre-theme"