/*
 * Laserwave Theme originally by Jared Jones for Visual Studio Code
 * https://github.com/Jaredk3nt/laserwave
 *
 * Ported for PrismJS by Simon Jespersen [https://github.com/simjes]
 */

.language-cs {
	--function: #dadcaa;
	--keyword: #529ad6;
	--class-name: #4ec8ab;
	--string: #fff;
	--comment: #53a246;
	--punctuation: #dcdccf;
	--boolean: #529ad6;
	--number: #b4cba2;
}

.language-markup {
	--function: #74caf4;
	--keyword: #ef4;
	--class-name: #e6e6e6;
	--string: #569cd6;
	--comment: #808080;
	--punctuation: #808080;
	--boolean: #ef4;
	--number: #b4cba2;
}

code[class*="language-"],
pre[class*="language-"] {
	background: #1e1e1e;
	color: #ffffff;
	font-family: Consolas, Monaco, "Andale Mono", "Ubuntu Mono", monospace; /* this is the default */
	/* The following properties are standard, please leave them as they are */
	font-size: 10pt;
	direction: ltr;
	text-align: left;
	white-space: pre;
	word-spacing: normal;
	word-break: normal;
	line-height: 1.5;
	-moz-tab-size: 2;
	-o-tab-size: 2;
	tab-size: 2;
	/* The following properties are also standard */
	-webkit-hyphens: none;
	-moz-hyphens: none;
	-ms-hyphens: none;
	hyphens: none;
}

code[class*="language-"]::-moz-selection,
code[class*="language-"] ::-moz-selection,
pre[class*="language-"]::-moz-selection,
pre[class*="language-"] ::-moz-selection {
	background: #22466b;
	color: inherit;
}

code[class*="language-"]::selection,
code[class*="language-"] ::selection,
pre[class*="language-"]::selection,
pre[class*="language-"] ::selection {
	background: #22466b;
	color: inherit;
}

/* Properties specific to code blocks */
pre[class*="language-"] {
	padding: 1em; /* this is standard */
	margin: 0px 0px 20px 0px; /* this is the default */
	overflow: auto; /* this is standard */
}

/* Properties specific to inline code */
:not(pre) > code[class*="language-"] {
	padding: 0.2em 0.3em;
	white-space: normal; /* this is standard */
}

.token.comment,
.token.prolog,
.token.cdata {
	color: var(--comment);
}

.token.punctuation {
	color: var(--punctuation);
}

.token.builtin,
.token.constant,
.token.boolean {
	color: var(--boolean);
}

.token.number {
	color: var(--number);
}

.token.important,
.token.atrule,
.token.property,
.token.keyword {
	color: var(--keyword);
}

.token.doctype,
.token.operator,
.token.inserted,
.token.tag,
.token.class-name,
.token.symbol {
	color: var(--class-name);
}

.token.attr-name,
.token.function,
.token.deleted,
.token.selector {
	color: var(--function);
}

.token.attr-value,
.token.regex,
.token.char,
.token.string {
	color: var(--string);
}

.token.entity,
.token.url,
.token.variable {
	color: #ffffff;
}

/* The following rules are pretty similar across themes, but feel free to adjust them */
.token.bold {
	font-weight: bold;
}

.token.italic {
	font-style: italic;
}

.token.entity {
	cursor: help;
}

.token.namespace {
	opacity: 0.7;
}

@media only screen and (max-width: 600px) {
	code[class*="language-"],
	pre[class*="language-"] {
		font-size: 8pt;
}