-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refine color scheme for different languages
Refine color scheme for different languages Details ======= - Refine Javascript spefic color scheme - Refine Python specific color scheme - Refine PHP specific color scheme - Refine Bash specific color scheme - Refine Sass specific color scheme Co-authored-by: Roberto Mauro <[email protected]>
- Loading branch information
Showing
9 changed files
with
204 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
{ | ||
"TwoDark - Default": | ||
{ | ||
"Preferences": | ||
{ | ||
"color_scheme": "Packages/Theme - TwoDark/TwoDark.sublime-color-scheme", | ||
"theme": "TwoDark.sublime-theme", | ||
"draw_shadows": false, | ||
"highlight_modified_tabs": true, | ||
"caret_extra_width": 1 | ||
} | ||
} | ||
"TwoDark - Default": { | ||
"Preferences": { | ||
"theme": "TwoDark.sublime-theme", | ||
"color_scheme": "Packages/Theme - TwoDark/TwoDark.sublime-color-scheme", | ||
"draw_shadows": false, | ||
"highlight_modified_tabs": true, | ||
"caret_extra_width": 1, | ||
"caret_style": "smooth", | ||
"highlight_line": true | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
{ | ||
"color_scheme": "Packages/Theme - TwoDark/Widget - TwoDark.stTheme", | ||
"draw_shadows": false, | ||
"caret_extra_width": 1, | ||
"highlight_modified_tabs": true, | ||
"caret_extra_width": 1, | ||
"caret_style": "smooth", | ||
"highlight_line": true | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
TwoDark v1.2.2 is here! | ||
|
||
This version migrate to `sublime-color-scheme` format! Head over to your | ||
preferences and make the following changes: | ||
|
||
{ | ||
"theme": "TwoDark.sublime-theme", | ||
"color_scheme": "Packages/Theme - TwoDark/TwoDark.sublime-color-scheme", | ||
"draw_shadows": false, | ||
"highlight_modified_tabs": true, | ||
"caret_extra_width": 1, | ||
"caret_style": "smooth", | ||
"highlight_line": true | ||
} | ||
|
||
TwoDark Changelog | ||
================== | ||
|
||
## [1.2.4] 2021-06-07 | ||
|
||
### Polish | ||
* Refine Javascript spefic color scheme | ||
* Refine Python specific color scheme | ||
* Refine PHP specific color scheme | ||
* Refine Bash specific color scheme | ||
* Refine Sass specific color scheme | ||
|
||
## [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 | ||
|
||
### Fix | ||
* Fix laravel blade template syntax | ||
|
||
## [1.2.1] 2021-06-03 | ||
|
||
### Enhancement | ||
* All rules are now updated to `sublime-color-scheme`. | ||
* Slightly lighten minimap color. | ||
|
||
### Internal | ||
* Update installation information. | ||
|
||
## [1.2.0] 2021-06-03 | ||
|
||
### Enhancement | ||
|
||
* Convert color theme to `sublime-color-scheme`. | ||
* Add @3x retina icons resolution. | ||
|
||
### BugFix | ||
|
||
* Fix Sidebar icons color. | ||
|
||
## [1.1.1] 2016-12-08 | ||
|
||
### Enhancement | ||
|
||
* Scrollbars background color has been darkened to match the general ui palette. | ||
|
||
## [1.1.0] 2016-12-08 | ||
|
||
### Enhancement | ||
|
||
* Add Scrollbars (Whoa, magical!) | ||
* Support for 'Skins' plugin. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "TwoDark", | ||
"version": "1.2.2", | ||
"description": "It's like OneDark for Atom, but it's called TwoDark and works for SublimeText", | ||
"version": "1.2.4", | ||
"description": "Atom's OneDark inspired theme for Sublime Text", | ||
"author": "Roberto Mauro <[email protected]>", | ||
"homepage": "https://github.com/erremauro/TwoDark#readme", | ||
"license": "MIT", | ||
|