Created
January 19, 2015 19:51
-
-
Save smlombardi/a3069a3c27031322c3a2 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| atom-text-editor { | |
| background-color: @syntax-background-color; | |
| color: @syntax-text-color; | |
| } | |
| atom-text-editor, :host { | |
| .wrap-guide { | |
| background-color: @syntax-wrap-guide-color; | |
| } | |
| .indent-guide { | |
| color: @syntax-indent-guide-color; | |
| } | |
| .invisible-character { | |
| color: @syntax-invisible-character-color; | |
| } | |
| &.is-focused { | |
| .cursor { | |
| border-color: @syntax-cursor-color; | |
| } | |
| &.vim-mode.command-mode .cursor { | |
| background-color: @syntax-cursor-color; | |
| } | |
| .cursor, | |
| &.vim-mode.command-mode .cursor { | |
| transition: opacity 0.3s ease-in-out; | |
| &.blink-off { | |
| visibility: visible; | |
| opacity: 0; | |
| } | |
| } | |
| } | |
| .gutter { | |
| background-color: @syntax-gutter-background-color; | |
| color: @syntax-gutter-text-color; | |
| .line-number { | |
| &.cursor-line { | |
| background-color: @syntax-gutter-background-color-selected; | |
| color: @syntax-gutter-text-color-selected; | |
| } | |
| &.cursor-line-no-selection { | |
| color: @syntax-gutter-text-color-selected; | |
| } | |
| } | |
| } | |
| .gutter .line-number.folded, | |
| .gutter .line-number:after, | |
| .fold-marker:after { | |
| color: @syntax-gutter-text-color; | |
| } | |
| .invisible { | |
| color: @syntax-invisible-character-color; | |
| } | |
| .selection .region { | |
| background-color: @syntax-selection-color; | |
| } | |
| } |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks