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

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

103 lines 1.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /*
2
3 Sunburst-like style (c) Vasily Polovnyov <vast@whiteants.net>
4
5 */
6
7 .hljs {
8 display: block;
9 overflow-x: auto;
10 padding: 0.5em;
11 background: #000;
12 color: #f8f8f8;
13 }
14
15 .hljs-comment,
16 .hljs-quote {
17 color: #aeaeae;
18 font-style: italic;
19 }
20
21 .hljs-keyword,
22 .hljs-selector-tag,
23 .hljs-type {
24 color: #e28964;
25 }
26
27 .hljs-string {
28 color: #65b042;
29 }
30
31 .hljs-subst {
32 color: #daefa3;
33 }
34
35 .hljs-regexp,
36 .hljs-link {
37 color: #e9c062;
38 }
39
40 .hljs-title,
41 .hljs-section,
42 .hljs-tag,
43 .hljs-name {
44 color: #89bdff;
45 }
46
47 .hljs-class .hljs-title,
48 .hljs-doctag {
49 text-decoration: underline;
50 }
51
52 .hljs-symbol,
53 .hljs-bullet,
54 .hljs-number {
55 color: #3387cc;
56 }
57
58 .hljs-params,
59 .hljs-variable,
60 .hljs-template-variable {
61 color: #3e87e3;
62 }
63
64 .hljs-attribute {
65 color: #cda869;
66 }
67
68 .hljs-meta {
69 color: #8996a8;
70 }
71
72 .hljs-formula {
73 background-color: #0e2231;
74 color: #f8f8f8;
75 font-style: italic;
76 }
77
78 .hljs-addition {
79 background-color: #253b22;
80 color: #f8f8f8;
81 }
82
83 .hljs-deletion {
84 background-color: #420e09;
85 color: #f8f8f8;
86 }
87
88 .hljs-selector-class {
89 color: #9b703f;
90 }
91
92 .hljs-selector-id {
93 color: #8b98ab;
94 }
95
96 .hljs-emphasis {
97 font-style: italic;
98 }
99
100 .hljs-strong {
101 font-weight: bold;
102 }
103