tm-themes 0.0.1 → 0.0.2

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 CHANGED
@@ -42,7 +42,7 @@ import { themes } from 'tm-themes'
42
42
  | `one-dark-pro` | [Binaryify/OneDark-Pro](https://github.com/Binaryify/OneDark-Pro/blob/0f37dcd4d02d71465ed0bc65c3829cbdfaa3fc5f/themes/OneDark-Pro.json) | [MIT](https://raw.githubusercontent.com/Binaryify/OneDark-Pro/master/LICENSE.txt) | `dark` |
43
43
  | `poimandres` | [drcmda/poimandres-theme](https://github.com/drcmda/poimandres-theme/blob/a7b8ed96b2319d44b53f755bdc8f321deb69c729/themes/poimandres-color-theme.json) | | `dark` |
44
44
  | `rose-pine` | [rose-pine/vscode](https://github.com/rose-pine/vscode/blob/5a6d89246d58316802bf5c54bb83d6654ff6a1c5/themes/rose-pine-color-theme.json) | [MIT](https://raw.githubusercontent.com/rose-pine/vscode/main/license) | `dark` |
45
- | `rose-pine-dawn` | [rose-pine/vscode](https://github.com/rose-pine/vscode/blob/5a6d89246d58316802bf5c54bb83d6654ff6a1c5/themes/rose-pine-dawn-color-theme.json) | [MIT](https://raw.githubusercontent.com/rose-pine/vscode/main/license) | `dark` |
45
+ | `rose-pine-dawn` | [rose-pine/vscode](https://github.com/rose-pine/vscode/blob/5a6d89246d58316802bf5c54bb83d6654ff6a1c5/themes/rose-pine-dawn-color-theme.json) | [MIT](https://raw.githubusercontent.com/rose-pine/vscode/main/license) | `light` |
46
46
  | `rose-pine-moon` | [rose-pine/vscode](https://github.com/rose-pine/vscode/blob/5a6d89246d58316802bf5c54bb83d6654ff6a1c5/themes/rose-pine-moon-color-theme.json) | [MIT](https://raw.githubusercontent.com/rose-pine/vscode/main/license) | `dark` |
47
47
  | `slack-dark` | [slack-theme/visual-studio-code](https://github.com/slack-theme/visual-studio-code/blob/ae207bda0c2477fb609b21377ab0a7a40b1f4b0b/themes/dark-mode.json) | [MIT](https://raw.githubusercontent.com/slack-theme/visual-studio-code/master/License) | `dark` |
48
48
  | `slack-ochin` | [slack-theme/visual-studio-code](https://github.com/slack-theme/visual-studio-code/blob/ae207bda0c2477fb609b21377ab0a7a40b1f4b0b/themes/ochin.json) | [MIT](https://raw.githubusercontent.com/slack-theme/visual-studio-code/master/License) | `light` |
package/index.js CHANGED
@@ -144,6 +144,7 @@ export const themes = [
144
144
  type: 'light',
145
145
  },
146
146
  {
147
+ displayName: 'Monokai',
147
148
  license: 'MIT',
148
149
  licenseUrl: 'https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt',
149
150
  name: 'monokai',
@@ -170,7 +171,7 @@ export const themes = [
170
171
  type: 'dark',
171
172
  },
172
173
  {
173
- displayName: 'poimandres dark theme',
174
+ displayName: 'Poimandres',
174
175
  name: 'poimandres',
175
176
  sha: 'a7b8ed96b2319d44b53f755bdc8f321deb69c729',
176
177
  source: 'https://github.com/drcmda/poimandres-theme/blob/a7b8ed96b2319d44b53f755bdc8f321deb69c729/themes/poimandres-color-theme.json',
@@ -192,7 +193,7 @@ export const themes = [
192
193
  name: 'rose-pine-dawn',
193
194
  sha: '5a6d89246d58316802bf5c54bb83d6654ff6a1c5',
194
195
  source: 'https://github.com/rose-pine/vscode/blob/5a6d89246d58316802bf5c54bb83d6654ff6a1c5/themes/rose-pine-dawn-color-theme.json',
195
- type: 'dark',
196
+ type: 'light',
196
197
  },
197
198
  {
198
199
  displayName: 'Rosé Pine Moon',
@@ -204,7 +205,7 @@ export const themes = [
204
205
  type: 'dark',
205
206
  },
206
207
  {
207
- displayName: 'Slack Theme Dark Mode',
208
+ displayName: 'Slack Dark',
208
209
  license: 'MIT',
209
210
  licenseUrl: 'https://raw.githubusercontent.com/slack-theme/visual-studio-code/master/License',
210
211
  name: 'slack-dark',
@@ -213,7 +214,7 @@ export const themes = [
213
214
  type: 'dark',
214
215
  },
215
216
  {
216
- displayName: 'Slack Theme Ochin',
217
+ displayName: 'Slack Ochin',
217
218
  license: 'MIT',
218
219
  licenseUrl: 'https://raw.githubusercontent.com/slack-theme/visual-studio-code/master/License',
219
220
  name: 'slack-ochin',
@@ -222,7 +223,7 @@ export const themes = [
222
223
  type: 'light',
223
224
  },
224
225
  {
225
- displayName: 'Solarized (dark)',
226
+ displayName: 'Solarized Dark',
226
227
  license: 'MIT',
227
228
  licenseUrl: 'https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt',
228
229
  name: 'solarized-dark',
@@ -231,7 +232,7 @@ export const themes = [
231
232
  type: 'dark',
232
233
  },
233
234
  {
234
- displayName: 'Solarized (light)',
235
+ displayName: 'Solarized Light',
235
236
  license: 'MIT',
236
237
  licenseUrl: 'https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt',
237
238
  name: 'solarized-light',
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "tm-themes",
3
3
  "type": "module",
4
- "version": "0.0.1",
4
+ "version": "0.0.2",
5
5
  "packageManager": "pnpm@8.11.0",
6
6
  "description": "Collecton of TextMate grammars in JSON",
7
7
  "author": "Anthony Fu <anthonyfu117@hotmail.com>",
@@ -94,6 +94,7 @@
94
94
  "titleBar.activeBackground": "#1e1f1c",
95
95
  "widget.shadow": "#00000098"
96
96
  },
97
+ "displayName": "Monokai",
97
98
  "name": "monokai",
98
99
  "semanticHighlighting": true,
99
100
  "tokenColors": [
@@ -443,7 +443,7 @@
443
443
  "welcomePage.tileHoverBackground": "#303340",
444
444
  "widget.shadow": "#00000030"
445
445
  },
446
- "displayName": "poimandres dark theme",
446
+ "displayName": "Poimandres",
447
447
  "name": "poimandres",
448
448
  "tokenColors": [
449
449
  {
@@ -730,5 +730,5 @@
730
730
  }
731
731
  }
732
732
  ],
733
- "type": "dark"
733
+ "type": "light"
734
734
  }
@@ -50,7 +50,7 @@
50
50
  "titleBar.inactiveBackground": "#222222",
51
51
  "titleBar.inactiveForeground": "#7A7A7A"
52
52
  },
53
- "displayName": "Slack Theme Dark Mode",
53
+ "displayName": "Slack Dark",
54
54
  "name": "slack-dark",
55
55
  "tokenColors": [
56
56
  {
@@ -140,7 +140,7 @@
140
140
  "welcomePage.buttonHoverBackground": "#ECECEC",
141
141
  "widget.shadow": "#161F2694"
142
142
  },
143
- "displayName": "Slack Theme Ochin",
143
+ "displayName": "Slack Ochin",
144
144
  "name": "slack-ochin",
145
145
  "tokenColors": [
146
146
  {
@@ -93,7 +93,7 @@
93
93
  "terminal.ansiYellow": "#b58900",
94
94
  "titleBar.activeBackground": "#002C39"
95
95
  },
96
- "displayName": "Solarized (dark)",
96
+ "displayName": "Solarized Dark",
97
97
  "name": "solarized-dark",
98
98
  "semanticHighlighting": true,
99
99
  "tokenColors": [
@@ -85,7 +85,7 @@
85
85
  "titleBar.activeBackground": "#EEE8D5",
86
86
  "walkThrough.embeddedEditorBackground": "#00000014"
87
87
  },
88
- "displayName": "Solarized (light)",
88
+ "displayName": "Solarized Light",
89
89
  "name": "solarized-light",
90
90
  "semanticHighlighting": true,
91
91
  "tokenColors": [