/**
 * okaidia theme for JavaScript, CSS and HTML
 * Loosely based on Monokai textmate theme by http://www.monokai.nl/
 * @author ocodia
 */

 code[class*="language-"]::-webkit-scrollbar,
 pre[class*="language-"]::-webkit-scrollbar {
	
	background: #1f2937;
 }
 code[class*="language-"],
 pre[class*="language-"] {
	 color: #fff;
	 background: none;
	 /* font-family: "Inter", "sans-serif"; */
	 font-family: "ui-monospace","SFMono-Regular","SF Mono","Menlo,Consolas","Liberation Mono","monospace" !important;
	 font-size: 0.75rem;
	 text-align: left;
	 /* white-space: pre; */
	 /* white-space: break-spaces; */
	 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:0 1em 1em 1em;
	 margin: .5em 0;
	 border-radius: 0.5rem;
 }
 
 :not(pre) > code[class*="language-"],
 pre[class*="language-"] {
	 /* background: #272822; */
	 background: #1f2937;
	 border: 1px solid var(--default-border);
 }
 
 /* Inline code */
 :not(pre) > code[class*="language-"] {
	 padding: .1em;
	 border-radius: .3em;
	 white-space: normal;
 }
 
 .token.comment,
 .token.prolog,
 .token.doctype,
 .token.cdata {
	 color: #6b7280;
 }
 
 .token.punctuation {
	 color: #6b7280;
 }
 
 .token.namespace {
	 opacity: .7;
 }
 
 .token.property,
 .token.tag,
 .token.constant,
 .token.symbol,
 .token.deleted {
	 color: #f472b6;
 }
 
 .token.boolean,
 .token.number {
	 color: #60d3ec;
 }
 
 .token.selector,
 .token.attr-name,
 .token.string,
 .token.char,
 .token.builtin,
 .token.inserted {
	 color: #d1d5db;
 }
 
 .token.operator,
 .token.entity,
 .token.url,
 .language-css .token.string,
 .style .token.string,
 .token.variable {
	 color: #d1d5db;
 }
 
 .token.atrule,
 .token.attr-value,
 .token.class-name {
	 color: #60d3ec;
 }
 
 .token.function {
	 color: #dd4a68;
 }
 .token.keyword {
	 color: #60d3ec;
 }
 
 .token.regex,
 .token.important {
	 color: #fd971f;
 }
 
 .token.important,
 .token.bold {
	 font-weight: bold;
 }
 .token.italic {
	 font-style: italic;
 }
 
 .token.entity {
	 cursor: help;
 }
 