/* PrismJS 1.17.1
https://prismjs.com/download.html#themes=prism-tomorrow&languages=markup+css+clike+javascript */
/**
 * prism.js tomorrow night eighties for JavaScript, CoffeeScript, CSS and HTML
 * Based on https://github.com/chriskempson/tomorrow-theme
 * @author Rose Pritchard
 *
 * modified by mastersign to match Boomacks iron theme
 */

 code[class*="language-"],
 pre[class*="language-"] {
	 color: hsl(207, 50%, 80%);
	 background: none;
	 font-family: "Roboto Mono", Consolas, Courier, monospace;
	 font-size: 1em;
	 text-align: left;
	 white-space: pre;
	 word-spacing: normal;
	 word-break: normal;
	 word-wrap: normal;
	 line-height: 1.5;
 
	 -moz-tab-size: 4;
	 -o-tab-size: 4;
	 tab-size: 4;
 
	 -webkit-hyphens: none;
	 -moz-hyphens: none;
	 -ms-hyphens: none;
	 hyphens: none;
 
 }
 
 /* Code blocks */
 pre[class*="language-"] {
	 padding: 1em;
	 margin: .5em 0;
	 overflow: auto;
 }
 
 :not(pre) > code[class*="language-"],
 pre[class*="language-"] {
	 background: #2d2d2d;
 }
 
 /* Inline code */
 :not(pre) > code[class*="language-"] {
	 padding: .1em;
	 border-radius: .3em;
	 white-space: normal;
 }
 
 .token.comment,
 .token.block-comment,
 .token.prolog,
 .token.doctype,
 .token.cdata {
	 color: hsl(207, 15%, 35%);
 }

 .token.comment,
 .token.block-comment {
	 font-style: italic;
 }
 
 .token.punctuation {
	 color: hsl(207, 57%, 67%);
 }
 
 .token.tag,
 .token.attr-name,
 .token.namespace,
 .token.deleted {
	 color: hsl(315, 59%, 65%);
 }
 
 .token.function,
 .token.function-name {
	 color: hsl(251, 80%, 72%);
 }
 
 .token.boolean,
 .token.number {
	 color: hsl(30, 71%, 64%);
 }
 
 .token.property,
 .token.class-name,
 .token.constant,
 .token.symbol {
	 color: hsl(47, 75%, 74%);
 }
 
 .token.selector,
 .token.important,
 .token.atrule,
 .token.keyword,
 .token.builtin {
	 color: hsl(207, 87%, 64%);
 }
 
 .token.string,
 .token.char,
 .token.attr-value,
 .token.regex,
 .token.variable {
	 color: hsl(165, 61%, 66%);
 }
 
 .token.operator,
 .token.entity,
 .token.url {
	 color: hsl(185, 84%, 54%);
 }
 
 .token.important,
 .token.bold {
	 font-weight: bold;
 }
 .token.italic {
	 font-style: italic;
 }
 
 .token.entity {
	 cursor: help;
 }
 
 .token.inserted {
	 color: hsl(100, 50%, 55%);
 }
 