Skip to content

Instantly share code, notes, and snippets.

@juristr
Created March 2, 2013 23:24
Show Gist options
  • Save juristr/5073730 to your computer and use it in GitHub Desktop.
Save juristr/5073730 to your computer and use it in GitHub Desktop.
CSS style for prettyprint sunburst style. More nice themes for prettyprint can be found here: http://demo.stanleyhlng.com/prettify-js/?id=tomorrow-night-dark
/* Pretty printing styles. Used with prettify.js. */
/* Vim sunburst theme by David Leibovic */
pre .str, code .str { color: #65B042; } /* string - green */
pre .kwd, code .kwd { color: #E28964; } /* keyword - dark pink */
pre .com, code .com { color: #AEAEAE; font-style: italic; } /* comment - gray */
pre .typ, code .typ { color: #89bdff; } /* type - light blue */
pre .lit, code .lit { color: #3387CC; } /* literal - blue */
pre .pun, code .pun { color: #fff; } /* punctuation - white */
pre .pln, code .pln { color: #fff; } /* plaintext - white */
pre .tag, code .tag { color: #89bdff; } /* html/xml tag - light blue */
pre .atn, code .atn { color: #bdb76b; } /* html/xml attribute name - khaki */
pre .atv, code .atv { color: #65B042; } /* html/xml attribute value - green */
pre .dec, code .dec { color: #3387CC; } /* decimal - blue */
pre.prettyprint, code.prettyprint {
background-color: #444;
}
ol.linenums > li{
color: white;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment