:root {
    --broadway-lights: #fee07c;
    --french-gray: #cfc9cb;
    --mysterious-mauve: #a4a4a9;
    --raisin-black: #211e1f;
    --rusty-blue: #98c4db;
    --sea-green: #388c46;
    --wisteria: #b0a3d4;
}



code[class*="language-"],
pre[class*="language-"] {
	color: var(--wisteria);
	background: none;
	text-shadow: 0 1px rgba(0, 0, 0, 0.3);
	font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
	font-size: 0.7rem;
	text-align: left;
	white-space: pre-wrap;
	word-spacing: normal;
	word-break: normal;
	word-wrap: normal;
    overflow-x: auto;
    overflow-wrap: break-word;
	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: 1rem 0;
	overflow: auto;
    
	border-radius: 0.3em;
}

:not(pre) > code[class*="language-"],
pre[class*="language-"] {
	background: var(--raisin-black);
}

/* Inline code */
:not(pre) > code[class*="language-"] {
	padding: .1em;
	border-radius: .3em;
	white-space: normal;
}

/* Tokens */
.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
	color: var(--mysterious-mauve);
}

.token.punctuation {
	color: var(--french-gray);
}

.token.namespace {
	opacity: .7;
}

.token.property,
.token.tag,
.token.constant,
.token.symbol,
.token.deleted {
	color: #f92672;       /* pinkish/red */
}

.token.boolean,
.token.number {
	color: var(--sea-green)
}

.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted {
	color: #99cc99;       /* soft green */
}

.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string,
.token.variable {
	color: var(--rusty-blue)
}

.token.atrule,
.token.attr-value,
.token.function,
.token.class-name {
	color: var(--broadway-lights)
}

.token.keyword {
	color: #cc99cd;       /* purple */
}

.token.regex,
.token.important {
	color: #fd971f;       /* orange */
}

.token.important,
.token.bold {
	font-weight: bold;
}

.token.italic {
	font-style: italic;
}

.token.entity {
	cursor: help;
}