Skip to content

Instantly share code, notes, and snippets.

@davidlukerice
Created February 17, 2016 14:22
Show Gist options
  • Save davidlukerice/364de15b2c400629ce5f to your computer and use it in GitHub Desktop.
Save davidlukerice/364de15b2c400629ce5f to your computer and use it in GitHub Desktop.
Atom Editor Find Highlight Style
atom-text-editor::shadow .highlight {
&.find-result .region,
&.current-result .region,
&.current-result ~ .highlight.selection .region {
z-index: -1;
}
&.find-result .region {
background: rgba(255, 215, 0, 0.2);
}
&.current-result .region,
&.current-result ~ .highlight.selection .region {
background: rgba(255, 215, 0, 0.5);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment