Skip to content

Commit

Permalink
Fix an issue with the graphic resolution that showed some artifacts o…
Browse files Browse the repository at this point in the history
…n windows.

Details
=======

Fix
- Fix an issue with the graphic resolution that showed some artifacts on windows.

Polish
- Refine the color scheme.
- Update the tab close icon.
  • Loading branch information
Roberto Mauro committed Jun 4, 2021
1 parent 5d79dd1 commit e342447
Show file tree
Hide file tree
Showing 168 changed files with 1,065 additions and 951 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,15 @@ This change log adheres to standards from [Keep a CHANGELOG].
[Semantic Versioning]: http://semver.org/
[Keep a CHANGELOG]: http://keepachangelog.com

## [1.2.3] 2021-06-04

### Fix
* Fix an issue with the graphic resolution that showed some artifacts on windows.

### Polish
* Refine the color scheme.
* Update the tab close icon.

## [1.2.2] 2021-06-03

### :bug: BugFix
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ preferences. (or <kbd>⌘</kbd><kbd>,</kbd> on Mac)
"highlight_modified_tabs": true,
"caret_extra_width": 1,
"caret_style": "smooth",
"highlight_line": true
}
```

Expand Down
105 changes: 69 additions & 36 deletions TwoDark.sublime-color-scheme
Original file line number Diff line number Diff line change
Expand Up @@ -19,33 +19,34 @@
"red": "hsl(355, 65%, 65%)",
"deep_red": "hsla(5, 48%, 51%, 1)",
"electric_blue": "hsl(220, 100%, 66%)",
"blue": "hsl(207, 82%, 66%)",
"cyan": "hsl(187, 47%, 55%)",
"blue": "hsl(210, 73%, 68%)",
"dark_blue": "hsl(222, 29%, 30%)",
"cyan": "hsl(189, 39%, 59%)",
"yellow": "hsl(40, 94%, 68%)",
"green": "hsl(95, 38%, 62%)",
"mocha": "hsla(55, 5%, 43%)"
"green": "hsl(90, 34%, 63%)",
"mocha": "hsl(55, 5%, 43%)"
},
"globals":
{
"foreground": "var(white)",
"background": "var(darker_grey)",
"invisibles": "var(lighter_grey)",
"caret": "var(electric_blue)",
"line_highlight": "var(dark_grey)",
"line_highlight": "color(var(grey) alpha(0.3))",
"selection": "var(grey)",
"selection_border":"var(light_grey2)",
"inactive_selection": "var(light_grey2)",
"selection_border": "var(grey)",
"inactive_selection": "var(grey)",
"misspelling": "var(red)",
"shadow": "color(var(black) alpha(0.25))",
"active_guide": "var(cyan)",
"stack_guide": "color(var(cyan) alpha(0.5))",
"highlight": "var(cyan)",
"find_highlight_foreground": "var(grey)",
"highlight": "var(yellow)",
"find_highlight_foreground": "var(darker_grey)",
"find_highlight": "var(yellow)",
"brackets_options": "underline",
"brackets_foreground": "var(cyan)",
"brackets_foreground": "var(electric_blue)",
"bracket_contents_options": "underline",
"bracket_contents_foreground": "var(cyan)",
"bracket_contents_foreground": "var(electric_blue)",
"tags_options": "stippled_underline",
"tags_foreground": "var(pink)"
},
Expand All @@ -70,23 +71,38 @@
{
"name": "Operator",
"scope": "keyword.operator",
"foreground": "var(white)"
"foreground": "var(pink)"
},
{
"name": "Keyword",
"scope": "keyword",
"scope": "keyword - keyword.operator, keyword.operator.word",
"foreground": "var(pink)"
},
{
"name": "Variable",
"scope": "variable",
"foreground": "var(white)"
},
{
"name": "Member Variable",
"scope": "variable.member",
"foreground": "var(red)"
},
{
"name": "Functions",
"scope": "entity.name.function, meta.require, support.function.any-method",
"name": "Function",
"scope": "entity.name.function, meta.require, support.function, support.macro",
"foreground": "var(blue)"
},
{
"name": "Function call",
"scope": "variable.function, variable.annotation",
"foreground": "var(blue)"
},
{
"name": "Library class/type",
"scope": "support.type",
"foreground": "var(red)"
},
{
"name": "Classes",
"scope": "support.class, entity.name.class, entity.name.type.class",
Expand All @@ -113,10 +129,15 @@
"foreground": "var(cyan)"
},
{
"name": "Strings, Inherited Class",
"scope": "string, constant.other.symbol, entity.other.inherited-class",
"name": "String",
"scope": "string",
"foreground": "var(green)"
},
{
"name": "Inherited Class",
"scope": "entity.other.inherited-class",
"foreground": "var(yellow)"
},
{
"name": "Integers",
"scope": "constant.numeric",
Expand Down Expand Up @@ -165,7 +186,7 @@
{
"name": "Headings",
"scope": "markup.heading punctuation.definition.heading, entity.name.section",
"foreground": "var(blue)"
"foreground": "var(red)"
},
{
"name": "Units",
Expand All @@ -174,44 +195,61 @@
},
{
"name": "Bold",
"scope": "markup.bold, punctuation.definition.bold",
"scope": "markup.bold",
"font_style": "bold",
"foreground": "var(orange)"
},
{
"name": "Italic",
"scope": "markup.italic, punctuation.definition.italic",
"scope": "markup.italic",
"font_style": "italic",
"foreground": "var(pink)"
},
{
"name": "Bold/Italic",
"scope": "markup.italic markup.bold | markup.bold markup.italic",
"font_style": "bold italic",
},
{
"name": "Bold/Italic Punctuation",
"scope": "punctuation.definition.bold, punctuation.definition.italic",
"foreground": "var(white)"
},
{
"name": "Code",
"scope": "markup.raw.inline",
"foreground": "var(green)"
},
{
"name": "Link Text",
"scope": "string.other.link, punctuation.definition.string.end.markdown",
"foreground": "var(red)"
},
{
"name": "Link Url",
"scope": "meta.link",
"foreground": "var(orange)"
"foreground": "var(blue)"
},
{
"name": "Link Url Punctuation",
"scope": "meta.link punctuation.definition",
"foreground": "var(white)"
},
{
"name": "markup links",
"scope": "string.other.link, markup.underline.link",
"foreground": "var(cyan)",
"font_style": "underline"
},
{
"name": "Lists",
"scope": "markup.list",
"scope": "markup.list.numbered.bullet | markup.list.unnumbered.bullet",
"foreground": "var(red)"
},
{
"name": "Quotes",
"scope": "markup.quote",
"foreground": "var(orange)"
"foreground": "var(light_grey)"
},
{
"name": "Separator",
"scope": "meta.separator",
"foreground": "var(white)",
"background": "var(grey)"
"foreground": "var(light_grey)"
},
{
"name": "diff:Inserted",
Expand Down Expand Up @@ -275,7 +313,7 @@
{
"name": "Javascript Dollar",
"scope": "variable.other.dollar.only.js, variable.other.object.dollar.only.js, variable.type.dollar.only.js, support.class.dollar.only.js",
"foreground": "var(white)"
"foreground": "var(blue)"
},
{
"name": "Python logical keyword",
Expand Down Expand Up @@ -312,11 +350,6 @@
"scope": "text.html.blade entity.name.tag.blade",
"foreground": "var(green)"
},
{
"name": "Laravel Blade Tag",
"scope": "support.function, constant.other.inline-data.html",
"foreground": "var(green)"
},
{
"name": "Laravel Blade @",
"scope": "text.html.blade constant.other.inline-data.html",
Expand Down
Loading

0 comments on commit e342447

Please sign in to comment.