import
[web.mtrack] / inc / hyperlight / zenburn.css
1 /*
2  * Copyright 2008 Konrad Rudolph
3  * All rights reserved.
4  *
5  * Color scheme for code is a simplified version of the VIM Zenburn scheme:
6  * http://slinky.imukuppi.org/zenburn/
7  */
8
9 .source-code.zenburn {
10     background: #3F3F3F;
11     color: #DCDCCC;
12 }
13
14 .source-code.zenburn .comment {
15     color: #7F9F7F;
16     font-style: italic;
17 }
18
19 .source-code.zenburn .comment .todo {
20     color: #DFDFDF;
21     font-weight: bold;
22 }
23
24 .source-code.zenburn .tag {
25     color: #EFEF8F;
26 }
27
28 .source-code.zenburn .identifier {
29     color: #EFDCBC;
30 }
31
32 .source-code.zenburn .keyword {
33     color: #F0DFAF;
34     font-weight: bold;
35 }
36
37 .source-code.zenburn .keyword.builtin {
38     color: #EFEF8F;
39     font-weight: normal;
40 }
41
42 .source-code.zenburn .keyword.operator {
43     color: #FFCFAF;
44 }
45
46 .source-code.zenburn .number {
47     color: #8CD0D3;
48 }
49
50 .source-code.zenburn .string {
51     color: #CC9393;
52 }
53
54 .source-code.zenburn::-moz-selection,
55 .source-code.zenburn span::-moz-selection {
56     background: #70D2B3;
57     color: #233322;
58 }
59
60 .source-code.zenburn::selection,
61 .source-code.zenburn span::selection {
62     background: yellow;
63     color: black;
64 }