Skip to content

Instantly share code, notes, and snippets.

@X-Raym
Last active November 22, 2015 18:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save X-Raym/7b6ca319aa714914532b to your computer and use it in GitHub Desktop.
Save X-Raym/7b6ca319aa714914532b to your computer and use it in GitHub Desktop.
atom matches bracket highlight character
// From https://discuss.atom.io/t/where-to-set-the-matched-brace-color/12372/17
// by smlombardi
// Puth this in default Less stylesheet
atom-text-editor::shadow .bracket-matcher .region {
border: 1px solid rgba(222, 149, 54, 0.6);
border-radius: 3px;
background-color: rgba(255, 217, 0, 0.3);
z-index: 100;
}
/* Optionnal
atom-text-editor.is-focused .line-number.cursor-line-no-selection, atom-text-editor.is-focused .line.cursor-line, :host(.is-focused) .line-number.cursor-line-no-selection, :host(.is-focused) .line.cursor-line {
background-color: rgba(240, 240, 240,.5);
}
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment