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 +1 -1
- package/index.js +7 -6
- package/package.json +1 -1
- package/themes/monokai.json +1 -0
- package/themes/poimandres.json +1 -1
- package/themes/rose-pine-dawn.json +1 -1
- package/themes/slack-dark.json +1 -1
- package/themes/slack-ochin.json +1 -1
- package/themes/solarized-dark.json +1 -1
- package/themes/solarized-light.json +1 -1
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) | `
|
|
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: '
|
|
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: '
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
package/themes/monokai.json
CHANGED
package/themes/poimandres.json
CHANGED
package/themes/slack-dark.json
CHANGED
package/themes/slack-ochin.json
CHANGED
|
@@ -85,7 +85,7 @@
|
|
|
85
85
|
"titleBar.activeBackground": "#EEE8D5",
|
|
86
86
|
"walkThrough.embeddedEditorBackground": "#00000014"
|
|
87
87
|
},
|
|
88
|
-
"displayName": "Solarized
|
|
88
|
+
"displayName": "Solarized Light",
|
|
89
89
|
"name": "solarized-light",
|
|
90
90
|
"semanticHighlighting": true,
|
|
91
91
|
"tokenColors": [
|