tm-themes 1.9.11 → 1.9.12

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
@@ -77,7 +77,7 @@ import { themes } from 'tm-themes'
77
77
  | Slack Dark | `slack-dark` | [slack-theme/visual-studio-code](https://github.com/slack-theme/visual-studio-code/blob/28cd093d2aac9bfe0d3b96d468efa73a1d6639c2/themes/dark-mode.json) | [MIT](https://raw.githubusercontent.com/slack-theme/visual-studio-code/master/License) | 8.84 kB |
78
78
  | Solarized Dark | `solarized-dark` | [microsoft/vscode](https://github.com/microsoft/vscode/blob/09fe3fcbc1514bc35742dc4325d05b7d7adfcad2/extensions/theme-solarized-dark/themes/solarized-dark-color-theme.json) | [MIT](https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt) | 6.63 kB |
79
79
  | Synthwave '84 | `synthwave-84` | [robb0wen/synthwave-vscode](https://github.com/robb0wen/synthwave-vscode/blob/7eaf45c07650295625e1e5ea73274fc50f9ea3c1/themes/synthwave-color-theme.json) | [MIT](https://raw.githubusercontent.com/robb0wen/synthwave-vscode/master/LICENSE) | 13.65 kB |
80
- | Tokyo Night | `tokyo-night` | [enkia/tokyo-night-vscode-theme](https://github.com/enkia/tokyo-night-vscode-theme/blob/ea732f04b830cc89239db7a6029222d8a1fd6335/themes/tokyo-night-color-theme.json) | [MIT](https://raw.githubusercontent.com/tokyo-night/tokyo-night-vscode-theme/master/LICENSE.txt) | 34.26 kB |
80
+ | Tokyo Night | `tokyo-night` | [enkia/tokyo-night-vscode-theme](https://github.com/enkia/tokyo-night-vscode-theme/blob/da5546bc4163a02a30d6f3ced90d4ef7dfcb8460/themes/tokyo-night-color-theme.json) | [MIT](https://raw.githubusercontent.com/tokyo-night/tokyo-night-vscode-theme/master/LICENSE.txt) | 34.77 kB |
81
81
  | Vesper | `vesper` | [raunofreiberg/vesper](https://github.com/raunofreiberg/vesper/blob/ef652b41ec5303892b1172d90fa4184ae6399a04/themes/Vesper-dark-color-theme.json) | [MIT](https://raw.githubusercontent.com/raunofreiberg/vesper/main/LICENSE.md) | 12.31 kB |
82
82
  | Vitesse Black | `vitesse-black` | [antfu/vscode-theme-vitesse](https://github.com/antfu/vscode-theme-vitesse/blob/625a5e6fffd15e440e574f353ae0ba777b41d47f/themes/vitesse-black.json) | [MIT](https://raw.githubusercontent.com/antfu/vscode-theme-vitesse/main/LICENSE.md) | 13.30 kB |
83
83
  | Vitesse Dark | `vitesse-dark` | [antfu/vscode-theme-vitesse](https://github.com/antfu/vscode-theme-vitesse/blob/625a5e6fffd15e440e574f353ae0ba777b41d47f/themes/vitesse-dark.json) | [MIT](https://raw.githubusercontent.com/antfu/vscode-theme-vitesse/main/LICENSE.md) | 13.38 kB |
package/index.js CHANGED
@@ -591,15 +591,15 @@ export const themes = [
591
591
  type: 'dark',
592
592
  },
593
593
  {
594
- byteSize: 35080,
594
+ byteSize: 35605,
595
595
  displayName: 'Tokyo Night',
596
- hash: 'kS9EkLMXGN',
597
- lastUpdate: '2025-02-04T19:59:01Z',
596
+ hash: 'yXmrQpw0hy',
597
+ lastUpdate: '2025-02-05T19:34:14Z',
598
598
  license: 'MIT',
599
599
  licenseUrl: 'https://raw.githubusercontent.com/tokyo-night/tokyo-night-vscode-theme/master/LICENSE.txt',
600
600
  name: 'tokyo-night',
601
- sha: 'ea732f04b830cc89239db7a6029222d8a1fd6335',
602
- source: 'https://github.com/enkia/tokyo-night-vscode-theme/blob/ea732f04b830cc89239db7a6029222d8a1fd6335/themes/tokyo-night-color-theme.json',
601
+ sha: 'da5546bc4163a02a30d6f3ced90d4ef7dfcb8460',
602
+ source: 'https://github.com/enkia/tokyo-night-vscode-theme/blob/da5546bc4163a02a30d6f3ced90d4ef7dfcb8460/themes/tokyo-night-color-theme.json',
603
603
  type: 'dark',
604
604
  },
605
605
  {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "tm-themes",
3
3
  "type": "module",
4
- "version": "1.9.11",
4
+ "version": "1.9.12",
5
5
  "description": "Collecton of TextMate grammars in JSON",
6
6
  "author": "Anthony Fu <anthonyfu117@hotmail.com>",
7
7
  "license": "MIT",
@@ -266,6 +266,18 @@
266
266
  "pickerGroup.foreground": "#a9b1d6",
267
267
  "progressBar.background": "#3d59a1",
268
268
  "sash.hoverBorder": "#29355a",
269
+ "scmGraph.foreground1": "#ff9e64",
270
+ "scmGraph.foreground2": "#e0af68",
271
+ "scmGraph.foreground3": "#41a6b5",
272
+ "scmGraph.foreground4": "#7aa2f7",
273
+ "scmGraph.foreground5": "#bb9af7",
274
+ "scmGraph.historyItemBaseRefColor": "#9d7cd8",
275
+ "scmGraph.historyItemHoverAdditionsForeground": "#41a6b5",
276
+ "scmGraph.historyItemHoverDefaultLabelForeground": "#a9b1d6",
277
+ "scmGraph.historyItemHoverDeletionsForeground": "#f7768e",
278
+ "scmGraph.historyItemHoverLabelForeground": "#1b1e2e",
279
+ "scmGraph.historyItemRefColor": "#506FCA",
280
+ "scmGraph.historyItemRemoteRefColor": "#41a6b5",
269
281
  "scrollbar.shadow": "#00000033",
270
282
  "scrollbarSlider.activeBackground": "#868bc422",
271
283
  "scrollbarSlider.background": "#868bc415",