Skip to content

Commit 0edfbbd

Browse files
authored
Merge pull request #7 from decameronn/mercury
Critical bugfix for Uranus Italic & Saturn Italic themes
2 parents 7735139 + fce2437 commit 0edfbbd

7 files changed

Lines changed: 515 additions & 508 deletions

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,13 @@
22

33
This file document the most important changes in the [project releases](https://github.com/decameronn/solar-system-theme/releases).
44

5+
## 2.3.3
6+
1. Fix critical bug with incorrect colors in Uranus Italic theme
7+
2. Fix critical bug with incorrect colors in Saturn Italic theme
8+
3. Small improvements in Uranus & Saturn themes
9+
510
## 2.3.2
6-
1. New branch for Mercury development
11+
1. New branch for Mercury development (no new release)
712

813
## 2.3.1
914
1. Release Candidate for Uranus Theme

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "solar-system-theme",
33
"displayName": "Solar System Theme",
44
"description": "The marvelous Solar System imagined for VS Code - Choose your planet!",
5-
"version": "2.3.1",
5+
"version": "2.3.3",
66
"author": "Decameron",
77
"publisher": "decameron",
88
"icon": "images/icon.png",

themes/solar-system-jupiter-italic-theme.json

Lines changed: 122 additions & 123 deletions
Original file line numberDiff line numberDiff line change
@@ -176,16 +176,15 @@
176176
"tab.activeForeground": "#ffffff",
177177
"tab.inactiveBackground": "#1c2029",
178178
"tab.inactiveForeground": "#ffffff80",
179-
179+
180180
// TODO: Add Terminal color palette
181-
182181
// Title Bar
183182
"titleBar.activeBackground": "#1d3041",
184183
"titleBar.activeForeground": "#cccccc",
185184
"titleBar.inactiveBackground": "#1d304199",
186185
"titleBar.inactiveForeground": "#cccccc99"
187186
},
188-
"tokenColors":[
187+
"tokenColors": [
189188
{
190189
// Comment
191190
"scope": "comment",
@@ -204,12 +203,12 @@
204203
}
205204
},
206205
{
207-
// String
208-
"scope": "string",
209-
"settings": {
210-
"foreground": "#ffce8e"
211-
}
212-
},
206+
// String
207+
"scope": "string",
208+
"settings": {
209+
"foreground": "#ffce8e"
210+
}
211+
},
213212
{
214213
// Numeric constant
215214
"scope": "constant.numeric",
@@ -260,9 +259,9 @@
260259
// Class
261260
"scope": [
262261
"entity.name.class",
263-
"entity.name.type",
264-
"entity.name.namespace",
265-
"entity.name.scope-resolution"
262+
"entity.name.type",
263+
"entity.name.namespace",
264+
"entity.name.scope-resolution"
266265
],
267266
"settings": {
268267
"foreground": "#a33600"
@@ -280,7 +279,7 @@
280279
// Function
281280
"scope": "entity.name.function",
282281
"settings": {
283-
"foreground": "#ee9a54"
282+
"foreground": "#ee9a54"
284283
}
285284
},
286285
{
@@ -306,83 +305,83 @@
306305
}
307306
},
308307
{
309-
// Library function
310-
"scope": "support.function",
311-
"settings": {
312-
"foreground": "#d64000"
313-
}
314-
},
315-
{
316-
// Library constant
317-
"scope": "support.constant",
318-
"settings": {
319-
"foreground": "#aa663b"
320-
}
321-
},
308+
// Library function
309+
"scope": "support.function",
310+
"settings": {
311+
"foreground": "#d64000"
312+
}
313+
},
314+
{
315+
// Library constant
316+
"scope": "support.constant",
317+
"settings": {
318+
"foreground": "#aa663b"
319+
}
320+
},
322321
{
323-
// Library type & class
324-
"scope": [
325-
"support.type",
326-
"support.class"
327-
],
328-
"settings": {
322+
// Library type & class
323+
"scope": [
324+
"support.type",
325+
"support.class"
326+
],
327+
"settings": {
329328
"fontStyle": "italic",
330-
"foreground": "#ee9a54"
331-
}
332-
},
329+
"foreground": "#ee9a54"
330+
}
331+
},
333332
{
334-
// Library variable
335-
"scope": "support.other.variable",
336-
"settings": {
337-
"fontStyle": ""
338-
}
339-
},
333+
// Library variable
334+
"scope": "support.other.variable",
335+
"settings": {
336+
"fontStyle": ""
337+
}
338+
},
340339
{
341-
// Invalid
342-
"scope": "invalid",
343-
"settings": {
344-
"foreground": "#b13b00"
345-
}
346-
},
347-
{
348-
// Invalid deprecated
349-
"scope": "invalid.deprecated",
350-
"settings": {
351-
"foreground": "#b13b00"
352-
}
353-
},
340+
// Invalid
341+
"scope": "invalid",
342+
"settings": {
343+
"foreground": "#b13b00"
344+
}
345+
},
346+
{
347+
// Invalid deprecated
348+
"scope": "invalid.deprecated",
349+
"settings": {
350+
"foreground": "#b13b00"
351+
}
352+
},
354353
{
355-
// Diff (meta) header
356-
"scope": [
357-
"meta.diff",
358-
"meta.diff.header"
359-
],
360-
"settings": {
354+
// Diff (meta) header
355+
"scope": [
356+
"meta.diff",
357+
"meta.diff.header"
358+
],
359+
"settings": {
361360
"fontStyle": "italic",
362-
"foreground": "#ceb465"
363-
}
364-
},
365-
{
366-
// Markup deleted
367-
"scope": "markup.deleted",
368-
"settings": {
369-
"foreground": "#3ca7ff"
370-
}
371-
},
372-
{
373-
// Markup updated
374-
"scope": "markup.changed",
375-
"settings": {
376-
"foreground": "#3ca7ff"
377-
}
378-
},
379-
{
380-
// Markup inserted
381-
"scope": "markup.inserted",
382-
"settings": {
383-
"foreground": "#3ca7ff"
384-
}
385-
},
361+
"foreground": "#ceb465"
362+
}
363+
},
364+
{
365+
// Markup deleted
366+
"scope": "markup.deleted",
367+
"settings": {
368+
"foreground": "#3ca7ff"
369+
}
370+
},
371+
{
372+
// Markup updated
373+
"scope": "markup.changed",
374+
"settings": {
375+
"foreground": "#3ca7ff"
376+
}
377+
},
378+
{
379+
// Markup inserted
380+
"scope": "markup.inserted",
381+
"settings": {
382+
"foreground": "#3ca7ff"
383+
}
384+
},
386385
{
387386
// Markup link
388387
"scope": "markup.underline.link",
@@ -391,45 +390,45 @@
391390
}
392391
},
393392
{
394-
// Markup Quote
395-
"scope": "markup.quote",
396-
"settings": {
397-
"foreground": "#22aa44"
398-
}
399-
},
400-
{
401-
// Markup Styling
402-
"scope": [
403-
"markup.bold",
404-
"markup.italic"
405-
],
406-
"settings": {
407-
"foreground": "#aa663b"
408-
}
409-
},
393+
// Markup Quote
394+
"scope": "markup.quote",
395+
"settings": {
396+
"foreground": "#22aa44"
397+
}
398+
},
399+
{
400+
// Markup Styling
401+
"scope": [
402+
"markup.bold",
403+
"markup.italic"
404+
],
405+
"settings": {
406+
"foreground": "#aa663b"
407+
}
408+
},
409+
{
410+
// Markup: Emphasis
411+
"scope": "markup.italic",
412+
"settings": {
413+
"fontStyle": "italic"
414+
}
415+
},
416+
{
417+
// Markup Inline
418+
"scope": "markup.inline.raw",
419+
"settings": {
420+
"foreground": "#aa663b"
421+
}
422+
},
410423
{
411-
// Markup: Emphasis
412-
"scope": "markup.italic",
413-
"settings": {
414-
"fontStyle": "italic"
415-
}
416-
},
417-
{
418-
// Markup Inline
419-
"scope": "markup.inline.raw",
420-
"settings": {
421-
"foreground": "#aa663b"
422-
}
423-
},
424-
{
425-
//Markup Headings
426-
"scope": [
427-
"markup.heading",
428-
"markup.heading.setext"
429-
],
430-
"settings": {
431-
"foreground": "#b13b00"
432-
}
433-
}
424+
//Markup Headings
425+
"scope": [
426+
"markup.heading",
427+
"markup.heading.setext"
428+
],
429+
"settings": {
430+
"foreground": "#b13b00"
431+
}
432+
}
434433
]
435434
}

0 commit comments

Comments
 (0)