/* Dracula Theme v1.2.5
 *
 * https://github.com/dracula/highlightjs
 *
 * Copyright 2016-present, All rights reserved
 *
 * Code licensed under the MIT license
 *
 * @author Denis Ciccale <dciccale@gmail.com>
 * @author Zeno Rocha <hi@zenorocha.com>
 */

.hljs {
	display: block;
	overflow-x: auto;
	padding: 0.5em;
	background: #282a36;
}

.hljs-built_in,
.hljs-selector-tag,
.hljs-section,
.hljs-link {
	color: #8be9fd;
}

.hljs-keyword {
	color: #ff79c6;
}

.hljs,
.hljs-subst {
	color: #f8f8f2;
}

.hljs-title,
.hljs-attr,
.hljs-meta-keyword {
	font-style: italic;
	color: #50fa7b;
}

.hljs-string,
.hljs-meta,
.hljs-name,
.hljs-type,
.hljs-symbol,
.hljs-bullet,
.hljs-addition,
.hljs-variable,
.hljs-template-tag,
.hljs-template-variable {
	color: #f1fa8c;
}

.hljs-comment,
.hljs-quote,
.hljs-deletion {
	color: #6272a4;
}

.hljs-keyword,
.hljs-selector-tag,
.hljs-literal,
.hljs-title,
.hljs-section,
.hljs-doctag,
.hljs-type,
.hljs-name,
.hljs-strong {
	font-weight: bold;
}

.hljs-literal,
.hljs-number {
	color: #bd93f9;
}

.hljs-emphasis {
	font-style: italic;
}

.hljs-comment {
	color: #75715e;
	/* Comentários em cinza */
}

.hljs-function {
	color: #c586c0;
	/* Roxo para palavras-chave de função */
	font-weight: bold;
}

.hljs-title {
	color: #dcdcaa;
	/* Nome da função em amarelo */
}

.hljs-string {
	color: #a6e22e;
	/* Strings em verde */
}

.hljs-keyword {
	color: #f92672 !important;
	/* Palavras-chave (ex.: function, local) em rosa */
}

.hljs-variable {
	color: #9cdcfe;
	/* Variáveis em azul */
}

.hljs-literal {
	color: #56b6c2;
	/* Valores literais em ciano */
}