Skip to content
This repository has been archived by the owner on Apr 22, 2020. It is now read-only.

adds monokai style #569

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion styles/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,8 @@ <h1>Gallery of themes for
{ name: 'desert', author: '<a href="https://code.google.com/u/[email protected]/">anatoly techtonik<\/a>' },
{ name: 'sunburst', author: 'David Leibovic' },
{ name: 'sons-of-obsidian', author: '<a href="http://CodeTunnel.com/blog/post/71/google-code-prettify-obsidian-theme">Alex Ford<\/a>' },
{ name: 'doxy', author: 'Robert Sperberg' }
{ name: 'doxy', author: 'Robert Sperberg' },
{ name: 'monokai', author: '<a href="http://shajanjacob.com">Shajan Jacob<\/a>'},
];

(function () {
Expand Down
29 changes: 29 additions & 0 deletions styles/monokai.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@

pre .com, code .com { color: #75715e; font-style: italic; } /* comment - gray */
pre .kwd, code .kwd { color: #f92672; } /* keyword - dark pink */
pre .str, code .str { color: #e6db74; } /* string - green */
pre .lit, code .lit { color: #f8f8f2; } /* literal - blue */
pre .typ, code .typ { color: #67d8ef; } /* type - light blue */

pre .atn, code .atn { color: #a5e12c; } /* html/xml attribute name - khaki */
pre .tag, code .tag { color: #f92672; } /* html/xml tag - light blue */
pre .atv, code .atv { color: #e7db74; } /* html/xml attribute value - green */

pre .pun, code .pun { color: #fff; } /* punctuation - white */
pre .pln, code .pln { color: #67d8ef; } /* plaintext - white */
pre .dec, code .dec { color: #ae81ff; } /* decimal - blue */

pre.prettyprint, code.prettyprint {
font-family: Ubuntu Mono, monospace;
background-color: #272822;
border-radius: 8px;
border: 0px;
color: #f8f8f2;
}

pre.prettyprint {
width: 95%;
margin: 1em auto;
padding: 1em;
white-space: pre-wrap;
}