/* http://prismjs.com/download.html?themes=prism-funky&languages=markup+css+clike+javascript&plugins=unescaped-markup+normalize-whitespace */
/**
 * prism.js Funky theme
 * Based on “Polyfilling the gaps” talk slides http://lea.verou.me/polyfilling-the-gaps/
 * @author Lea Verou
 */

.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
	color: #aaa;
}

.token.punctuation {
	color: #999;
}

.namespace {
	opacity: .7;
}

.token.property,
.token.tag,
.token.boolean,
.token.number,
.token.constant,
.token.symbol {
	color: hsl(80, 70%, 60%); /* yellowgreen */
}

.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin {
	color: hsl(335, 80%, 70%); /* deep pink */
}

.token.operator,
.token.entity,
.token.url,
.language-css > .token.string,
.token.inserted {
	color: hsl(182, 39%, 69%);
}

.token.attr-value,
.token.keyword,
.token.variable {
	color: yellow;
}

.token.atrule,
.token.regex,
.token.important {
	color: orange;
}

.token.function {
	color: hsl(186, 60%, 60%); /* aqua */
}

.token.important,
.token.bold {
	font-weight: bold;
}
.token.italic {
	font-style: italic;
}

.token.entity {
	cursor: help;
}

.token.deleted {
	color: red;
}

/* Fallback, in case JS does not run, to ensure the code is at least visible */
.lang-markup script[type='text/plain'],
.language-markup script[type='text/plain'],
script[type='text/plain'].lang-markup,
script[type='text/plain'].language-markup {
	display: block;
	font: 100% Consolas, Monaco, monospace;
	white-space: pre;
	overflow: auto;
}
