| OLD | NEW |
| 1 /* Pretty printing styles. Used with prettify.js. */ | 1 /* Pretty printing styles. Used with prettify.js. */ |
| 2 /* Vim sunburst theme by David Leibovic */ | 2 /* Vim sunburst theme by David Leibovic */ |
| 3 | 3 |
| 4 pre .str, code .str { color: #65B042; } /* string - green */ | 4 pre .str, code .str { color: #65B042; } /* string - green */ |
| 5 pre .kwd, code .kwd { color: #E28964; } /* keyword - dark pink */ | 5 pre .kwd, code .kwd { color: #E28964; } /* keyword - dark pink */ |
| 6 pre .com, code .com { color: #AEAEAE; font-style: italic; } /* comment - gray */ | 6 pre .com, code .com { color: #AEAEAE; font-style: italic; } /* comment - gray */ |
| 7 pre .typ, code .typ { color: #89bdff; } /* type - light blue */ | 7 pre .typ, code .typ { color: #89bdff; } /* type - light blue */ |
| 8 pre .lit, code .lit { color: #3387CC; } /* literal - blue */ | 8 pre .lit, code .lit { color: #3387CC; } /* literal - blue */ |
| 9 pre .pun, code .pun { color: #fff; } /* punctuation - white */ | 9 pre .pun, code .pun { color: #fff; } /* punctuation - white */ |
| 10 pre .pln, code .pln { color: #fff; } /* plaintext - white */ | 10 pre .pln, code .pln { color: #fff; } /* plaintext - white */ |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 pre .kwd, code .kwd { color: #006; font-weight: bold; } | 42 pre .kwd, code .kwd { color: #006; font-weight: bold; } |
| 43 pre .com, code .com { color: #600; font-style: italic; } | 43 pre .com, code .com { color: #600; font-style: italic; } |
| 44 pre .typ, code .typ { color: #404; font-weight: bold; } | 44 pre .typ, code .typ { color: #404; font-weight: bold; } |
| 45 pre .lit, code .lit { color: #044; } | 45 pre .lit, code .lit { color: #044; } |
| 46 pre .pun, code .pun { color: #440; } | 46 pre .pun, code .pun { color: #440; } |
| 47 pre .pln, code .pln { color: #000; } | 47 pre .pln, code .pln { color: #000; } |
| 48 pre .tag, code .tag { color: #006; font-weight: bold; } | 48 pre .tag, code .tag { color: #006; font-weight: bold; } |
| 49 pre .atn, code .atn { color: #404; } | 49 pre .atn, code .atn { color: #404; } |
| 50 pre .atv, code .atv { color: #060; } | 50 pre .atv, code .atv { color: #060; } |
| 51 } | 51 } |
| OLD | NEW |