Last active
July 24, 2017 08:34
-
-
Save SebastianCarroll/95e162fbb30278ab4d26ebe2d2285396 to your computer and use it in GitHub Desktop.
Highlightine in Atom (change to make it easier to see)
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
The highlighting on Atom is pretty bad and hard to see when using find replace. Change it by 'Atom -> Styleshee' and adding: | |
atom-text-editor::shadow .highlight { | |
&.find-result .region, | |
&.current-result .region, | |
&.current-result ~ .highlight.selection .region { | |
z-index: -1; | |
} | |
&.find-result .region { | |
background: yellow; | |
} | |
&.current-result .region, | |
&.current-result ~ .highlight.selection .region { | |
background: orange; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
See: https://discuss.atom.io/t/how-to-change-find-and-replace-highlight-color/14750/12 and atom/find-and-replace#206 for details