1/*
2
3Intellij Idea-like styling (c) Vasily Polovnyov <vast@whiteants.net>
4
5*/
6
7pre code {
8    display: block;
9    color: #000;
10    background: #fff;
11}
12
13.subst, .title {
14    font-weight: normal;
15    color: #000;
16}
17
18.comment, .template_comment, .javadoc, .diff .header {
19    color: #808080;
20    font-style: italic;
21}
22
23.annotation, .decorator, .preprocessor, .doctype, .pi, .chunk, .shebang, .apache .cbracket {
24    color: #808000;
25}
26
27.tag, .pi {
28    background: #efefef;
29}
30
31.tag .title, .id, .attr_selector, .pseudo, .literal, .keyword, .hexcolor, .css .function, .ini .title, .css .class, .list .title {
32    font-weight: bold;
33    color: #000080;
34}
35
36.attribute, .rules .keyword, .number, .date, .regexp {
37    font-weight: bold;
38    color: #0000ff;
39}
40
41.number, .regexp {
42    font-weight: normal;
43}
44
45.string, .value, .filter .argument, .css .function .params, .apache .tag {
46    color: #008000;
47    font-weight: bold;
48}
49
50.symbol, .char {
51    color: #000;
52    background: #d0eded;
53    font-style: italic;
54}
55
56.phpdoc, .javadoctag {
57    text-decoration: underline;
58}
59
60.variable, .envvar, .apache .sqbracket {
61    color: #660e7a;
62}
63
64.addition {
65    background: #baeeba;
66}
67
68.deletion {
69    background: #ffc8bd;
70}
71
72.diff .change {
73    background: #bccff9;
74}
75