forked from atom/one-dark-syntax
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
51 additions
and
14 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,29 @@ | ||
// This file has fallback variables. It specifies all syntax variables that | ||
// themes must implement if they include a syntax-variables.less file. | ||
|
||
// General colors | ||
@syntax-text-color: #c5c8c6; | ||
@syntax-cursor-color: white; | ||
@syntax-selection-color: #444444; | ||
@syntax-background-color: #1d1f21; | ||
|
||
// Guide colors | ||
@syntax-wrap-guide-color: rgba(197, 200, 198, .1); | ||
@syntax-indent-guide-color: rgba(197, 200, 198, .2); | ||
@syntax-invisible-character-color: rgba(197, 200, 198, .2); | ||
|
||
// For find and replace markers | ||
@syntax-result-marker-color: #888; | ||
@syntax-result-marker-color-selected: white; | ||
|
||
// Gutter colors | ||
@syntax-gutter-text-color: @syntax-text-color; | ||
@syntax-gutter-text-color-selected: @syntax-gutter-text-color; | ||
@syntax-gutter-background-color: lighten(@syntax-background-color, 5%); | ||
@syntax-gutter-background-color-selected: rgba(255, 255, 255, 0.14); | ||
|
||
// For git diff info. i.e. in the gutter | ||
@syntax-color-renamed: #96CBFE; | ||
@syntax-color-added: #A8FF60; | ||
@syntax-color-modified: #E9C062; | ||
@syntax-color-removed: #CC6666; |