tm-themes 1.9.5 → 1.9.6
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/NOTICE +1 -1
- package/README.md +1 -1
- package/index.js +6 -6
- package/package.json +1 -1
- package/themes/night-owl.json +38 -12
package/NOTICE
CHANGED
|
@@ -516,7 +516,7 @@ SOFTWARE.
|
|
|
516
516
|
|
|
517
517
|
=========================================================================================================
|
|
518
518
|
Files: night-owl.json
|
|
519
|
-
License: https://raw.githubusercontent.com/sdras/night-owl-vscode-theme/main/LICENSE
|
|
519
|
+
License: https://raw.githubusercontent.com/sdras/night-owl-vscode-theme/main/LICENSE.md
|
|
520
520
|
SPDX: MIT
|
|
521
521
|
---------------------------------------------------------------------------------------------------------
|
|
522
522
|
MIT License
|
package/README.md
CHANGED
|
@@ -66,7 +66,7 @@ import { themes } from 'tm-themes'
|
|
|
66
66
|
| Material Theme Palenight | `material-theme-palenight` | [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 |
|
|
67
67
|
| Min Dark | `min-dark` | [misolori/min-theme](https://github.com/misolori/min-theme/blob/4641b5d395b9a3506572ec717e80ae8c7cdaae2a/themes/min-dark.json) | [MIT](https://raw.githubusercontent.com/miguelsolorio/min-theme/master/LICENSE) | 6.08 kB |
|
|
68
68
|
| Monokai | `monokai` | [microsoft/vscode](https://github.com/microsoft/vscode/blob/09fe3fcbc1514bc35742dc4325d05b7d7adfcad2/extensions/theme-monokai/themes/monokai-color-theme.json) | [MIT](https://raw.githubusercontent.com/microsoft/vscode/main/LICENSE.txt) | 7.64 kB |
|
|
69
|
-
| Night Owl | `night-owl` | [sdras/night-owl-vscode-theme](https://github.com/sdras/night-owl-vscode-theme/blob/
|
|
69
|
+
| Night Owl | `night-owl` | [sdras/night-owl-vscode-theme](https://github.com/sdras/night-owl-vscode-theme/blob/c685376d2f18d4a4bbc2dd5e2986aa7ff19addda/themes/Night%20Owl-color-theme.json) | [MIT](https://raw.githubusercontent.com/sdras/night-owl-vscode-theme/main/LICENSE.md) | 28.22 kB |
|
|
70
70
|
| Nord | `nord` | [arcticicestudio/nord-visual-studio-code](https://github.com/arcticicestudio/nord-visual-studio-code/blob/27045851c5154fe2d9b116e7491c596cdcd72275/themes/nord-color-theme.json) | [MIT](https://raw.githubusercontent.com/nordtheme/visual-studio-code/develop/license) | 26.04 kB |
|
|
71
71
|
| One Dark Pro | `one-dark-pro` | [Binaryify/OneDark-Pro](https://github.com/Binaryify/OneDark-Pro/blob/469431cd7a848dc8f8e40bee2ae547a9abd631e0/themes/OneDark-Pro.json) | [MIT](https://raw.githubusercontent.com/Binaryify/OneDark-Pro/master/LICENSE.txt) | 32.89 kB |
|
|
72
72
|
| Plastic | `plastic` | [will-stone/plastic](https://github.com/will-stone/plastic/blob/30eaf248a3ee319c85ddf254dd0cb64a443d1571/themes/main.json) | [MIT](https://raw.githubusercontent.com/will-stone/plastic/main/LICENSE) | 9.02 kB |
|
package/index.js
CHANGED
|
@@ -399,15 +399,15 @@ export const themes = [
|
|
|
399
399
|
type: 'dark',
|
|
400
400
|
},
|
|
401
401
|
{
|
|
402
|
-
byteSize:
|
|
402
|
+
byteSize: 28902,
|
|
403
403
|
displayName: 'Night Owl',
|
|
404
|
-
hash: '
|
|
405
|
-
lastUpdate: '2024-12-
|
|
404
|
+
hash: 'pjfXGVeLXm',
|
|
405
|
+
lastUpdate: '2024-12-28T19:13:22Z',
|
|
406
406
|
license: 'MIT',
|
|
407
|
-
licenseUrl: 'https://raw.githubusercontent.com/sdras/night-owl-vscode-theme/main/LICENSE',
|
|
407
|
+
licenseUrl: 'https://raw.githubusercontent.com/sdras/night-owl-vscode-theme/main/LICENSE.md',
|
|
408
408
|
name: 'night-owl',
|
|
409
|
-
sha: '
|
|
410
|
-
source: 'https://github.com/sdras/night-owl-vscode-theme/blob/
|
|
409
|
+
sha: 'c685376d2f18d4a4bbc2dd5e2986aa7ff19addda',
|
|
410
|
+
source: 'https://github.com/sdras/night-owl-vscode-theme/blob/c685376d2f18d4a4bbc2dd5e2986aa7ff19addda/themes/Night%20Owl-color-theme.json',
|
|
411
411
|
type: 'dark',
|
|
412
412
|
},
|
|
413
413
|
{
|
package/package.json
CHANGED
package/themes/night-owl.json
CHANGED
|
@@ -20,9 +20,7 @@
|
|
|
20
20
|
"debugExceptionWidget.border": "#5f7e97",
|
|
21
21
|
"debugToolBar.background": "#011627",
|
|
22
22
|
"diffEditor.insertedTextBackground": "#99b76d23",
|
|
23
|
-
"diffEditor.insertedTextBorder": "#c5e47833",
|
|
24
23
|
"diffEditor.removedTextBackground": "#ef535033",
|
|
25
|
-
"diffEditor.removedTextBorder": "#ef53504d",
|
|
26
24
|
"dropdown.background": "#011627",
|
|
27
25
|
"dropdown.border": "#5f7e97",
|
|
28
26
|
"dropdown.foreground": "#ffffffcc",
|
|
@@ -33,13 +31,14 @@
|
|
|
33
31
|
"editor.foreground": "#d6deeb",
|
|
34
32
|
"editor.hoverHighlightBackground": "#7e57c25a",
|
|
35
33
|
"editor.inactiveSelectionBackground": "#7e57c25a",
|
|
36
|
-
"editor.lineHighlightBackground": "#
|
|
34
|
+
"editor.lineHighlightBackground": "#28707d29",
|
|
37
35
|
"editor.lineHighlightBorder": null,
|
|
38
36
|
"editor.rangeHighlightBackground": "#7e57c25a",
|
|
39
37
|
"editor.selectionBackground": "#1d3b53",
|
|
40
38
|
"editor.selectionHighlightBackground": "#5f7e9779",
|
|
41
39
|
"editor.wordHighlightBackground": "#f6bbe533",
|
|
42
40
|
"editor.wordHighlightStrongBackground": "#e2a2f433",
|
|
41
|
+
"editorBracketHighlight.foreground3": "#87fab73a",
|
|
43
42
|
"editorCodeLens.foreground": "#5e82ceb4",
|
|
44
43
|
"editorCursor.foreground": "#80a4c2",
|
|
45
44
|
"editorError.border": null,
|
|
@@ -702,6 +701,15 @@
|
|
|
702
701
|
"foreground": "#82AAFF"
|
|
703
702
|
}
|
|
704
703
|
},
|
|
704
|
+
{
|
|
705
|
+
"scope": [
|
|
706
|
+
"variable.language.this.js"
|
|
707
|
+
],
|
|
708
|
+
"settings": {
|
|
709
|
+
"fontStyle": "italic",
|
|
710
|
+
"foreground": "#41eec6"
|
|
711
|
+
}
|
|
712
|
+
},
|
|
705
713
|
{
|
|
706
714
|
"scope": [
|
|
707
715
|
"keyword.operator.comparison",
|
|
@@ -1341,45 +1349,45 @@
|
|
|
1341
1349
|
},
|
|
1342
1350
|
{
|
|
1343
1351
|
"scope": [
|
|
1344
|
-
"markup.heading
|
|
1345
|
-
"markup.heading.setext.1
|
|
1346
|
-
"markup.heading.setext.2
|
|
1352
|
+
"markup.heading",
|
|
1353
|
+
"markup.heading.setext.1",
|
|
1354
|
+
"markup.heading.setext.2"
|
|
1347
1355
|
],
|
|
1348
1356
|
"settings": {
|
|
1349
1357
|
"foreground": "#82b1ff"
|
|
1350
1358
|
}
|
|
1351
1359
|
},
|
|
1352
1360
|
{
|
|
1353
|
-
"scope": "markup.italic
|
|
1361
|
+
"scope": "markup.italic",
|
|
1354
1362
|
"settings": {
|
|
1355
1363
|
"fontStyle": "italic",
|
|
1356
1364
|
"foreground": "#c792ea"
|
|
1357
1365
|
}
|
|
1358
1366
|
},
|
|
1359
1367
|
{
|
|
1360
|
-
"scope": "markup.bold
|
|
1368
|
+
"scope": "markup.bold",
|
|
1361
1369
|
"settings": {
|
|
1362
1370
|
"fontStyle": "bold",
|
|
1363
1371
|
"foreground": "#c5e478"
|
|
1364
1372
|
}
|
|
1365
1373
|
},
|
|
1366
1374
|
{
|
|
1367
|
-
"scope": "markup.quote
|
|
1375
|
+
"scope": "markup.quote",
|
|
1368
1376
|
"settings": {
|
|
1369
1377
|
"fontStyle": "italic",
|
|
1370
1378
|
"foreground": "#697098"
|
|
1371
1379
|
}
|
|
1372
1380
|
},
|
|
1373
1381
|
{
|
|
1374
|
-
"scope": "markup.inline.raw
|
|
1382
|
+
"scope": "markup.inline.raw",
|
|
1375
1383
|
"settings": {
|
|
1376
1384
|
"foreground": "#80CBC4"
|
|
1377
1385
|
}
|
|
1378
1386
|
},
|
|
1379
1387
|
{
|
|
1380
1388
|
"scope": [
|
|
1381
|
-
"markup.underline.link
|
|
1382
|
-
"markup.underline.link.image
|
|
1389
|
+
"markup.underline.link",
|
|
1390
|
+
"markup.underline.link.image"
|
|
1383
1391
|
],
|
|
1384
1392
|
"settings": {
|
|
1385
1393
|
"foreground": "#ff869a"
|
|
@@ -1705,6 +1713,24 @@
|
|
|
1705
1713
|
"foreground": "#82AAFF"
|
|
1706
1714
|
}
|
|
1707
1715
|
},
|
|
1716
|
+
{
|
|
1717
|
+
"scope": "markup.deleted",
|
|
1718
|
+
"settings": {
|
|
1719
|
+
"foreground": "#ff0000"
|
|
1720
|
+
}
|
|
1721
|
+
},
|
|
1722
|
+
{
|
|
1723
|
+
"scope": "markup.inserted",
|
|
1724
|
+
"settings": {
|
|
1725
|
+
"foreground": "#036A07"
|
|
1726
|
+
}
|
|
1727
|
+
},
|
|
1728
|
+
{
|
|
1729
|
+
"scope": "markup.underline",
|
|
1730
|
+
"settings": {
|
|
1731
|
+
"fontStyle": "underline"
|
|
1732
|
+
}
|
|
1733
|
+
},
|
|
1708
1734
|
{
|
|
1709
1735
|
"scope": [
|
|
1710
1736
|
"meta.property-list.css meta.property-value.css variable.other.less",
|