PluginProbe
Prismatic / 2.1
Prismatic v2.1
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 / dark.css

dark.css in Prismatic 2.1, at lib/highlight/css/dark.css

64 lines 794 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /*
2
3 Dark style from softwaremaniacs.org (c) Ivan Sagalaev <Maniac@SoftwareManiacs.Org>
4
5 */
6
7 .hljs {
8 display: block;
9 overflow-x: auto;
10 padding: 0.5em;
11 background: #444;
12 }
13
14 .hljs-keyword,
15 .hljs-selector-tag,
16 .hljs-literal,
17 .hljs-section,
18 .hljs-link {
19 color: white;
20 }
21
22 .hljs,
23 .hljs-subst {
24 color: #ddd;
25 }
26
27 .hljs-string,
28 .hljs-title,
29 .hljs-name,
30 .hljs-type,
31 .hljs-attribute,
32 .hljs-symbol,
33 .hljs-bullet,
34 .hljs-built_in,
35 .hljs-addition,
36 .hljs-variable,
37 .hljs-template-tag,
38 .hljs-template-variable {
39 color: #d88;
40 }
41
42 .hljs-comment,
43 .hljs-quote,
44 .hljs-deletion,
45 .hljs-meta {
46 color: #777;
47 }
48
49 .hljs-keyword,
50 .hljs-selector-tag,
51 .hljs-literal,
52 .hljs-title,
53 .hljs-section,
54 .hljs-doctag,
55 .hljs-type,
56 .hljs-name,
57 .hljs-strong {
58 font-weight: bold;
59 }
60
61 .hljs-emphasis {
62 font-style: italic;
63 }
64