Moxie
2015-11-23 67834872ddd5630b9c30c53c2972f5dcbf3dd5aa
commit | author | age
48fe87 1 /* Vibrant Ink Theme */
M 2 /* Original theme - http://alternateidea.com/blog/articles/2006/1/3/textmate-vibrant-ink-theme-and-prototype-bundle */
3 /* Pretty printing styles. Used with prettify.js. */
4 /* SPAN elements with the classes below are added by prettyprint. */
5 /* plain text */
6 .pln {
7   color: white;
8 }
9
10 @media screen {
11   /* string content */
12   .str {
13     color: #66ff00;
14   }
15
16   /* a keyword */
17   .kwd {
18     color: #ff6600;
19   }
20
21   /* a comment */
22   .com {
23     color: #9933cc;
24   }
25
26   /* a type name */
27   .typ {
28     color: #445588;
29   }
30
31   /* a literal value */
32   .lit {
33     color: #445588;
34   }
35
36   /* punctuation */
37   .pun {
38     color: white;
39   }
40
41   /* lisp open bracket */
42   .opn {
43     color: white;
44   }
45
46   /* lisp close bracket */
47   .clo {
48     color: white;
49   }
50
51   /* a markup tag name */
52   .tag {
53     color: white;
54   }
55
56   /* a markup attribute name */
57   .atn {
58     color: #99cc99;
59   }
60
61   /* a markup attribute value */
62   .atv {
63     color: #66ff00;
64   }
65
66   /* a declaration */
67   .dec {
68     color: white;
69   }
70
71   /* a variable name */
72   .var {
73     color: white;
74   }
75
76   /* a function name */
77   .fun {
78     color: #ffcc00;
79   }
80 }
81 /* Use higher contrast and text-weight for printable form. */
82 @media print, projection {
83   .str {
84     color: #006600;
85   }
86
87   .kwd {
88     color: #006;
89     font-weight: bold;
90   }
91
92   .com {
93     color: #600;
94     font-style: italic;
95   }
96
97   .typ {
98     color: #404;
99     font-weight: bold;
100   }
101
102   .lit {
103     color: #004444;
104   }
105
106   .pun, .opn, .clo {
107     color: #444400;
108   }
109
110   .tag {
111     color: #006;
112     font-weight: bold;
113   }
114
115   .atn {
116     color: #440044;
117   }
118
119   .atv {
120     color: #006600;
121   }
122 }
123 /* Style */
124 pre.prettyprint {
125   background: black;
126   border: 1px solid #cccccc;
127   padding: 10px;
128 }
129
130 /* Specify class=linenums on a pre to get line numbering */
131 ol.linenums {
132   margin-top: 0;
133   margin-bottom: 0;
134 }
135
136 /* IE indents via margin-left */
137 li.L0,
138 li.L1,
139 li.L2,
140 li.L3,
141 li.L4,
142 li.L5,
143 li.L6,
144 li.L7,
145 li.L8,
146 li.L9 {
147   /* */
148 }
149
150 /* Alternate shading for lines */
151 li.L1,
152 li.L3,
153 li.L5,
154 li.L7,
155 li.L9 {
156   /* */
157 }