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 / zenburn.css

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

81 lines 947 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /*
2
3 Zenburn style from voldmar.ru (c) Vladimir Epifanov <voldmar@voldmar.ru>
4 based on dark.css by Ivan Sagalaev
5
6 */
7
8 .hljs {
9 display: block;
10 overflow-x: auto;
11 padding: 0.5em;
12 background: #3f3f3f;
13 color: #dcdcdc;
14 }
15
16 .hljs-keyword,
17 .hljs-selector-tag,
18 .hljs-tag {
19 color: #e3ceab;
20 }
21
22 .hljs-template-tag {
23 color: #dcdcdc;
24 }
25
26 .hljs-number {
27 color: #8cd0d3;
28 }
29
30 .hljs-variable,
31 .hljs-template-variable,
32 .hljs-attribute {
33 color: #efdcbc;
34 }
35
36 .hljs-literal {
37 color: #efefaf;
38 }
39
40 .hljs-subst {
41 color: #8f8f8f;
42 }
43
44 .hljs-title,
45 .hljs-name,
46 .hljs-selector-id,
47 .hljs-selector-class,
48 .hljs-section,
49 .hljs-type {
50 color: #efef8f;
51 }
52
53 .hljs-symbol,
54 .hljs-bullet,
55 .hljs-link {
56 color: #dca3a3;
57 }
58
59 .hljs-deletion,
60 .hljs-string,
61 .hljs-built_in,
62 .hljs-builtin-name {
63 color: #cc9393;
64 }
65
66 .hljs-addition,
67 .hljs-comment,
68 .hljs-quote,
69 .hljs-meta {
70 color: #7f9f7f;
71 }
72
73
74 .hljs-emphasis {
75 font-style: italic;
76 }
77
78 .hljs-strong {
79 font-weight: bold;
80 }
81