/**
 * Tomorrow Night 80's theme. for JavaScript, CSS, R and HTML
 * Based on the Tomorrow Night 80s theme by ChrisKempson used in RStudio
 * https://github.com/chriskempson/tomorrow-theme
 *
 * @author <mathematical.coffee@gmail.com>
 */
code[class*="language-"],
pre[class*="language-"] {
    color: #cccccc;
	text-shadow: 0 1px rgba(0,0,0,0.3);
	font-family: Consolas, Monaco, 'Andale Mono', monospace;
	direction: ltr;
	text-align: left;
	white-space: pre;
	word-spacing: normal;
	
	-moz-tab-size: 4;
	-o-tab-size: 4;
	tab-size: 4;
	
	-webkit-hyphens: none;
	-moz-hyphens: none;
	-ms-hyphens: none;
	hyphens: none;
}
code[class*="language-"]::selection,
pre[class*="language-"]::selection,
code[class*="language-"] *::selection,
pre[class*="language-"] *::selection {
    background: #0000FF;
}
 
/* Code blocks */
pre[class*="language-"] {
	padding: 1em;
	margin: .5em 0;
	overflow: auto;	
    -webkit-border-radius: 0.5em;
    -moz-border-radius: 0.5em;
    -goog-ms-border-radius: 0.5em;
    border-radius: 0.5em;
}
:not(pre) > code[class*="language-"],
pre[class*="language-"] {
    background: #2d2d2d;
}
 
/* Inline code */
:not(pre) > code[class*="language-"] {
	padding: .1em;
	border-radius: .3em;
}
.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
    color: #999999;
    font-style: italic;
}
.token.operator,
.token.punctuation {
    color: #66cccc;
}
.namespace {
	opacity: .7;
}
.token.keyword,
.token.selector,
.token.tag {
    color: #cc99cc;
}
.token.number,
.token.boolean {
    color: #f99157;
}
.token.property,
.token.attr-name,
.token.regex,
.token.builtin,
.token.function {
    color: #ffcc66;
}
.token.atrule,
.token.attr-value,
.token.string {
    color: #99cc99;
}
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string {
    color: #6699cc;
}
.token.important {
    color: #f2777a;
	font-weight: bold;
}
.token.entity {
	cursor: help;
}
.token.namespace,
.token.variable {
  color: #cccccc;
}
