| OLD | NEW |
| 1 /* Doxy pretty-printing styles. Used with prettify.js. */ | 1 /* Doxy pretty-printing styles. Used with prettify.js. */ |
| 2 | 2 |
| 3 pre .str, code .str { color: #fec243; } /* string - eggyolk gold */ | 3 pre .str, code .str { color: #fec243; } /* string - eggyolk gold */ |
| 4 pre .kwd, code .kwd { color: #8470FF; } /* keyword - light slate blue */ | 4 pre .kwd, code .kwd { color: #8470FF; } /* keyword - light slate blue */ |
| 5 pre .com, code .com { color: #32cd32; font-style: italic; } /* comment - green *
/ | 5 pre .com, code .com { color: #32cd32; font-style: italic; } /* comment - green *
/ |
| 6 pre .typ, code .typ { color: #6ecbcc; } /* type - turq green */ | 6 pre .typ, code .typ { color: #6ecbcc; } /* type - turq green */ |
| 7 pre .lit, code .lit { color: #d06; } /* literal - cherry red */ | 7 pre .lit, code .lit { color: #d06; } /* literal - cherry red */ |
| 8 pre .pun, code .pun { color: #8B8970; } /* punctuation - lemon chiffon4 */ | 8 pre .pun, code .pun { color: #8B8970; } /* punctuation - lemon chiffon4 */ |
| 9 pre .pln, code .pln { color: #f0f0f0; } /* plaintext - white */ | 9 pre .pln, code .pln { color: #f0f0f0; } /* plaintext - white */ |
| 10 pre .tag, code .tag { color: #9c9cff; } /* html/xml tag (bluey) */ | 10 pre .tag, code .tag { color: #9c9cff; } /* html/xml tag (bluey) */ |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 pre .typ, code .typ { color: #404; font-weight: bold; } | 55 pre .typ, code .typ { color: #404; font-weight: bold; } |
| 56 pre .lit, code .lit { color: #044; } | 56 pre .lit, code .lit { color: #044; } |
| 57 pre .pun, code .pun { color: #440; } | 57 pre .pun, code .pun { color: #440; } |
| 58 pre .pln, code .pln { color: #000; } | 58 pre .pln, code .pln { color: #000; } |
| 59 pre .tag, code .tag { color: #b66ff7; font-weight: bold; } | 59 pre .tag, code .tag { color: #b66ff7; font-weight: bold; } |
| 60 pre .htm, code .htm { color: #606; font-weight: bold; } | 60 pre .htm, code .htm { color: #606; font-weight: bold; } |
| 61 pre .xsl, code .xsl { color: #606; font-weight: bold; } | 61 pre .xsl, code .xsl { color: #606; font-weight: bold; } |
| 62 pre .atn, code .atn { color: #c71585; font-weight: normal; } | 62 pre .atn, code .atn { color: #c71585; font-weight: normal; } |
| 63 pre .atv, code .atv { color: #088; font-weight: normal; } | 63 pre .atv, code .atv { color: #088; font-weight: normal; } |
| 64 } | 64 } |
| OLD | NEW |