Skip to content

Instantly share code, notes, and snippets.

@briandominick
Last active February 20, 2018 00:42
Show Gist options
  • Save briandominick/b3c813c742b53a86ab0336df2e6283ed to your computer and use it in GitHub Desktop.
Save briandominick/b3c813c742b53a86ab0336df2e6283ed to your computer and use it in GitHub Desktop.
Custom styles for AsciiDoc syntax highlighting in Atom
/*
This is what I dump in my Atom editor stylesheet file (Atom > Stylesheet).
*/
/// EDITOR
::-webkit-scrollbar {
display: none;
}
/// SYNTAX
.syntax--markup.syntax--substitution {
font-weight: bold;
font-style: italic;
}
.syntax--attribute-value {
color: #fff;
}
.syntax--link {
color: rgba(144, 238, 144, 0.50);
}
.syntax--url .syntax--string.syntax--unquoted,
.syntax--reference.syntax--xref .syntax--string {
color: #5293d8;
font-weight: bold;
}
.syntax--asciidoc.syntax--markup.syntax--admonition {
font-weight: normal !important;
color: blue;
}
.syntax--entity.syntax--name.syntax--function {
font-weight: bold;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment