PluginProbe
Prismatic / 1.9
Prismatic v1.9
trunk 1.3 1.4 1.5 1.6 1.6.1 1.7 1.8 1.9 2.0 2.1 2.2 2.3 2.4 2.5 2.6 2.7 2.8 2.9 2.9.1 3.0 3.1 3.1.1 3.2 3.2.1 All 40 releases
prismatic / lib / highlight / css / dracula.css

dracula.css in Prismatic 1.9, at lib/highlight/css/dracula.css

77 lines 1016 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /*
2
3 Dracula Theme v1.2.0
4
5 https://github.com/zenorocha/dracula-theme
6
7 Copyright 2015, All rights reserved
8
9 Code licensed under the MIT license
10 http://zenorocha.mit-license.org
11
12 @author Éverton Ribeiro <nuxlli@gmail.com>
13 @author Zeno Rocha <hi@zenorocha.com>
14
15 */
16
17 .hljs {
18 display: block;
19 overflow-x: auto;
20 padding: 0.5em;
21 background: #282a36;
22 }
23
24 .hljs-keyword,
25 .hljs-selector-tag,
26 .hljs-literal,
27 .hljs-section,
28 .hljs-link {
29 color: #8be9fd;
30 }
31
32 .hljs-function .hljs-keyword {
33 color: #ff79c6;
34 }
35
36 .hljs,
37 .hljs-subst {
38 color: #f8f8f2;
39 }
40
41 .hljs-string,
42 .hljs-title,
43 .hljs-name,
44 .hljs-type,
45 .hljs-attribute,
46 .hljs-symbol,
47 .hljs-bullet,
48 .hljs-addition,
49 .hljs-variable,
50 .hljs-template-tag,
51 .hljs-template-variable {
52 color: #f1fa8c;
53 }
54
55 .hljs-comment,
56 .hljs-quote,
57 .hljs-deletion,
58 .hljs-meta {
59 color: #6272a4;
60 }
61
62 .hljs-keyword,
63 .hljs-selector-tag,
64 .hljs-literal,
65 .hljs-title,
66 .hljs-section,
67 .hljs-doctag,
68 .hljs-type,
69 .hljs-name,
70 .hljs-strong {
71 font-weight: bold;
72 }
73
74 .hljs-emphasis {
75 font-style: italic;
76 }
77