Created
October 2, 2015 17:14
-
-
Save nkmathew/db136053a84f9aea685a to your computer and use it in GitHub Desktop.
Dark Stylish theme for viewing html source
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
@namespace xul url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul); | |
@namespace html url(http://www.w3.org/1999/xhtml); | |
@-moz-document url("chrome://global/content/viewSource.xul"), | |
url("chrome://global/content/viewPartialSource.xul"), | |
url-prefix("view-source:") { | |
html { | |
background: #151515 !important; | |
color: #fff !important; | |
font-size: 12px; | |
} | |
#viewsource { | |
font-family: consolas; | |
} | |
a { | |
color: #ccc !important; | |
} | |
.attribute-name { | |
color: #8FEB08 !important; | |
} | |
.start-tag, | |
.end-tag { | |
color: #F0E68C !important | |
} | |
.attribute-value { | |
color: #FFA0A0 !important; | |
} | |
.comment { | |
color: #666 !important; | |
} | |
.entity { | |
color: #5AB762 !important; | |
} | |
::-moz-selection { | |
background-color: #aaa !important; | |
color: #000 !important; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment