Attribute changed highlight
[roojs1] / highlight / styles / vs.css
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 }