Last active
February 20, 2018 00:42
-
-
Save briandominick/b3c813c742b53a86ab0336df2e6283ed to your computer and use it in GitHub Desktop.
Custom styles for AsciiDoc syntax highlighting in Atom
This file contains 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
/* | |
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