PluginProbe
Prismatic / 2.2
Prismatic v2.2
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 / vs.css

vs.css in Prismatic 2.2, at lib/highlight/css/vs.css

69 lines 837 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /*
2
3 Visual Studio-like style based on original C# coloring by Jason Diamond <jason@diamond.name>
4
5 */
6 .hljs {
7 display: block;
8 overflow-x: auto;
9 padding: 0.5em;
10 background: white;
11 color: black;
12 }
13
14 .hljs-comment,
15 .hljs-quote,
16 .hljs-variable {
17 color: #008000;
18 }
19
20 .hljs-keyword,
21 .hljs-selector-tag,
22 .hljs-built_in,
23 .hljs-name,
24 .hljs-tag {
25 color: #00f;
26 }
27
28 .hljs-string,
29 .hljs-title,
30 .hljs-section,
31 .hljs-attribute,
32 .hljs-literal,
33 .hljs-template-tag,
34 .hljs-template-variable,
35 .hljs-type,
36 .hljs-addition {
37 color: #a31515;
38 }
39
40 .hljs-deletion,
41 .hljs-selector-attr,
42 .hljs-selector-pseudo,
43 .hljs-meta {
44 color: #2b91af;
45 }
46
47 .hljs-doctag {
48 color: #808080;
49 }
50
51 .hljs-attr {
52 color: #f00;
53 }
54
55 .hljs-symbol,
56 .hljs-bullet,
57 .hljs-link {
58 color: #00b0e8;
59 }
60
61
62 .hljs-emphasis {
63 font-style: italic;
64 }
65
66 .hljs-strong {
67 font-weight: bold;
68 }
69