
/* --- Custom SBOL Visual Prism theme --- */
code[class*=language-], pre[class*=language-] {
	color: #23272e;
	background: #f7f8fa;
	font-family: monospace;
	font-size: 1em !important;
	text-align: left;
	white-space: pre;
	word-spacing: normal;
	word-break: normal;
	word-wrap: normal;
	line-height: 1.6;
	tab-size: 4;
	hyphens: none;
	border-radius: var(--radius-md);
	box-shadow: none;
	text-shadow: none;
	padding: 0 !important;
	margin: 0 !important;
	outline: none;
}
pre[class*=language-] {
    padding: 0.9em !important;
	background: #f7f8fa !important;
	border: 1px solid #e3e6eb !important;
    margin-bottom: 0.7em !important;
}
code[class*=language-] {
	background: none;
	padding: 0;
	border: none;
	outline: none;
}
.token.comment, .token.prolog, .token.doctype, .token.cdata {
	color: #a0a1a7;
	font-style: italic;
}
.token.punctuation {
	color: #6c6f93;
}
.token.namespace {
	opacity: .7;
}
.token.property, .token.tag, .token.boolean, .token.number, .token.constant, .token.symbol, .token.deleted {
	color: #b15c00;
}
.token.selector, .token.attr-name, .token.string, .token.char, .token.builtin, .token.inserted {
	color: #38761d;
}
.token.operator, .token.entity, .token.url, .language-css .token.string, .style .token.string {
	color: #9a6e3a;
	background: rgba(255,255,255,0.3);
}
.token.atrule, .token.attr-value, .token.keyword {
	color: #2563eb;
}
.token.function, .token.class-name {
	color: #b8006b;
}
.token.regex, .token.important, .token.variable {
	color: #e90;
}
.token.important, .token.bold {
	font-weight: bold;
}
.token.italic {
	font-style: italic;
}
.token.entity {
	cursor: help;
}
/* Selection highlight */
code[class*=language-] ::selection, pre[class*=language-] ::selection {
	background: #e0e7ef;
}
code[class*=language-]::-moz-selection, pre[class*=language-]::-moz-selection {
	background: #e0e7ef;
}
