|
- /* 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,
- .hljs-keyword {
- color: rgb(86, 156, 214);
- }
-
- /*
- .hljs-keyword {
- color: rgb(86, 156, 214);
- }
-
- */
-
- .hljs,
- .hljs-subst,
- .hljs-tag {
- color: #f8f8f2 !important;
- }
-
- .hljs-string,
- .hljs-meta,
- .hljs-name,
- .hljs-type,
- .hljs-attr,
- .hljs-symbol,
- .hljs-bullet,
- .hljs-addition,
- .hljs-variable,
- .hljs-template-tag,
- .hljs-template-variable,
- .hljs-title {
- color: rgb(214, 157, 133);
- }
-
- .hljs-title {
- color: rgb(78, 201, 176);
- }
-
- .hljs-comment,
- .hljs-quote,
- .hljs-deletion {
- color: rgb(87, 166, 74);
- }
-
- .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: rgb(181, 206, 168);
- }
-
- .hljs-emphasis {
- font-style: italic;
- }
|