tm-themes 1.6.3 → 1.6.4

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.
Files changed (4) hide show
  1. package/NOTICE +1 -1
  2. package/README.md +2 -0
  3. package/index.js +22 -0
  4. package/package.json +1 -1
package/NOTICE CHANGED
@@ -173,7 +173,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
173
173
  SOFTWARE.
174
174
 
175
175
  =========================================================================================================
176
- Files: github-dark.json, github-dark-default.json, github-dark-dimmed.json, github-light.json, github-light-default.json
176
+ Files: github-dark.json, github-dark-default.json, github-dark-dimmed.json, github-dark-high-contrast.json, github-light.json, github-light-default.json, github-light-high-contrast.json
177
177
  License: https://raw.githubusercontent.com/primer/github-vscode-theme/main/LICENSE
178
178
  SPDX: MIT
179
179
  ---------------------------------------------------------------------------------------------------------
package/README.md CHANGED
@@ -26,6 +26,7 @@ import { themes } from 'tm-themes'
26
26
  | Everforest Light | `everforest-light` | [sainnhe/everforest-vscode](https://github.com/sainnhe/everforest-vscode/blob/b039b30727868d77108ec85f0be66e6d80a9bc1f/themes/everforest-light.json) | [MIT](https://raw.githubusercontent.com/sainnhe/everforest-vscode/master/LICENSE) | 52.43 kB |
27
27
  | GitHub Light | `github-light` | [primer/github-vscode-theme](https://github.com/primer/github-vscode-theme/blob/f47b83f1acebb7fba4a3ec0bdb9385f85e6e8aa1/src/theme.js) | [MIT](https://raw.githubusercontent.com/primer/github-vscode-theme/main/LICENSE) | 10.86 kB |
28
28
  | GitHub Light Default | `github-light-default` | [primer/github-vscode-theme](https://github.com/primer/github-vscode-theme/blob/f47b83f1acebb7fba4a3ec0bdb9385f85e6e8aa1/src/theme.js) | [MIT](https://raw.githubusercontent.com/primer/github-vscode-theme/main/LICENSE) | 13.73 kB |
29
+ | GitHub Light High Contrast | `github-light-high-contrast` | [primer/github-vscode-theme](https://github.com/primer/github-vscode-theme/blob/f47b83f1acebb7fba4a3ec0bdb9385f85e6e8aa1/src/theme.js) | [MIT](https://raw.githubusercontent.com/primer/github-vscode-theme/main/LICENSE) | 13.84 kB |
29
30
  | Light Plus | `light-plus` | [microsoft/vscode](https://github.com/microsoft/vscode/blob/cc4775f55aff152db2417dfaaddc643ee90b31f9/extensions/theme-defaults/themes/light_plus.json) | [MIT](https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt) | 9.47 kB |
30
31
  | Material Theme Lighter | `material-theme-lighter` | [antfu/vsc-material-theme](https://github.com/antfu/vsc-material-theme/blob/f09de7a2970defaed43d8e293b4d3ac4e350e71b/src/material.theme.config.ts) | [Apache-2.0](https://raw.githubusercontent.com/antfu/vsc-material-theme/main/LICENSE) | 18.14 kB |
31
32
  | Min Light | `min-light` | [misolori/min-theme](https://github.com/misolori/min-theme/blob/4641b5d395b9a3506572ec717e80ae8c7cdaae2a/themes/min-light.json) | [MIT](https://raw.githubusercontent.com/miguelsolorio/min-theme/master/LICENSE) | 6.75 kB |
@@ -53,6 +54,7 @@ import { themes } from 'tm-themes'
53
54
  | GitHub Dark | `github-dark` | [primer/github-vscode-theme](https://github.com/primer/github-vscode-theme/blob/f47b83f1acebb7fba4a3ec0bdb9385f85e6e8aa1/src/theme.js) | [MIT](https://raw.githubusercontent.com/primer/github-vscode-theme/main/LICENSE) | 11.08 kB |
54
55
  | GitHub Dark Default | `github-dark-default` | [primer/github-vscode-theme](https://github.com/primer/github-vscode-theme/blob/f47b83f1acebb7fba4a3ec0bdb9385f85e6e8aa1/src/theme.js) | [MIT](https://raw.githubusercontent.com/primer/github-vscode-theme/main/LICENSE) | 14.00 kB |
55
56
  | GitHub Dark Dimmed | `github-dark-dimmed` | [primer/github-vscode-theme](https://github.com/primer/github-vscode-theme/blob/f47b83f1acebb7fba4a3ec0bdb9385f85e6e8aa1/src/theme.js) | [MIT](https://raw.githubusercontent.com/primer/github-vscode-theme/main/LICENSE) | 14.00 kB |
57
+ | GitHub Dark High Contrast | `github-dark-high-contrast` | [primer/github-vscode-theme](https://github.com/primer/github-vscode-theme/blob/f47b83f1acebb7fba4a3ec0bdb9385f85e6e8aa1/src/theme.js) | [MIT](https://raw.githubusercontent.com/primer/github-vscode-theme/main/LICENSE) | 14.16 kB |
56
58
  | Houston | `houston` | [withastro/houston-vscode](https://github.com/withastro/houston-vscode/blob/d297233be95e3f8fdecc22e4ffa92bb0e7265592/themes/houston.json) | [MIT](https://raw.githubusercontent.com/withastro/houston-vscode/main/LICENSE) | 34.53 kB |
57
59
  | LaserWave | `laserwave` | [Jaredk3nt/laserwave](https://github.com/Jaredk3nt/laserwave/blob/f768285c659425fbb6ec5642085df4902f8a8d92/themes/LaserWave-color-theme.json) | [MIT](https://raw.githubusercontent.com/Jaredk3nt/laserwave/master/LICENSE) | 11.17 kB |
58
60
  | Material Theme | `material-theme` | [antfu/vsc-material-theme](https://github.com/antfu/vsc-material-theme/blob/f09de7a2970defaed43d8e293b4d3ac4e350e71b/src/material.theme.config.ts) | [Apache-2.0](https://raw.githubusercontent.com/antfu/vsc-material-theme/main/LICENSE) | 18.12 kB |
package/index.js CHANGED
@@ -167,6 +167,17 @@ export const themes = [
167
167
  source: 'https://github.com/primer/github-vscode-theme/blob/f47b83f1acebb7fba4a3ec0bdb9385f85e6e8aa1/src/theme.js',
168
168
  type: 'dark',
169
169
  },
170
+ {
171
+ byteSize: 14496,
172
+ displayName: 'GitHub Dark High Contrast',
173
+ lastUpdate: '2023-01-06T02:19:35Z',
174
+ license: 'MIT',
175
+ licenseUrl: 'https://raw.githubusercontent.com/primer/github-vscode-theme/main/LICENSE',
176
+ name: 'github-dark-high-contrast',
177
+ sha: 'f47b83f1acebb7fba4a3ec0bdb9385f85e6e8aa1',
178
+ source: 'https://github.com/primer/github-vscode-theme/blob/f47b83f1acebb7fba4a3ec0bdb9385f85e6e8aa1/src/theme.js',
179
+ type: 'dark',
180
+ },
170
181
  {
171
182
  byteSize: 11124,
172
183
  displayName: 'GitHub Light',
@@ -189,6 +200,17 @@ export const themes = [
189
200
  source: 'https://github.com/primer/github-vscode-theme/blob/f47b83f1acebb7fba4a3ec0bdb9385f85e6e8aa1/src/theme.js',
190
201
  type: 'light',
191
202
  },
203
+ {
204
+ byteSize: 14176,
205
+ displayName: 'GitHub Light High Contrast',
206
+ lastUpdate: '2023-01-06T02:19:35Z',
207
+ license: 'MIT',
208
+ licenseUrl: 'https://raw.githubusercontent.com/primer/github-vscode-theme/main/LICENSE',
209
+ name: 'github-light-high-contrast',
210
+ sha: 'f47b83f1acebb7fba4a3ec0bdb9385f85e6e8aa1',
211
+ source: 'https://github.com/primer/github-vscode-theme/blob/f47b83f1acebb7fba4a3ec0bdb9385f85e6e8aa1/src/theme.js',
212
+ type: 'light',
213
+ },
192
214
  {
193
215
  byteSize: 35362,
194
216
  displayName: 'Houston',
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "tm-themes",
3
3
  "type": "module",
4
- "version": "1.6.3",
4
+ "version": "1.6.4",
5
5
  "description": "Collecton of TextMate grammars in JSON",
6
6
  "author": "Anthony Fu <anthonyfu117@hotmail.com>",
7
7
  "license": "MIT",