Moxie
2015-11-23 67834872ddd5630b9c30c53c2972f5dcbf3dd5aa
commit | author | age
48fe87 1 /* Tomorrow Night Bright Theme */
M 2 /* Original theme - https://github.com/chriskempson/tomorrow-theme */
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: #eaeaea;
8 }
9
10 @media screen {
11   /* string content */
12   .str {
13     color: #b9ca4a;
14   }
15
16   /* a keyword */
17   .kwd {
18     color: #c397d8;
19   }
20
21   /* a comment */
22   .com {
23     color: #969896;
24   }
25
26   /* a type name */
27   .typ {
28     color: #7aa6da;
29   }
30
31   /* a literal value */
32   .lit {
33     color: #e78c45;
34   }
35
36   /* punctuation */
37   .pun {
38     color: #eaeaea;
39   }
40
41   /* lisp open bracket */
42   .opn {
43     color: #eaeaea;
44   }
45
46   /* lisp close bracket */
47   .clo {
48     color: #eaeaea;
49   }
50
51   /* a markup tag name */
52   .tag {
53     color: #d54e53;
54   }
55
56   /* a markup attribute name */
57   .atn {
58     color: #e78c45;
59   }
60
61   /* a markup attribute value */
62   .atv {
63     color: #70c0b1;
64   }
65
66   /* a declaration */
67   .dec {
68     color: #e78c45;
69   }
70
71   /* a variable name */
72   .var {
73     color: #d54e53;
74   }
75
76   /* a function name */
77   .fun {
78     color: #7aa6da;
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   font-family: Menlo, "Bitstream Vera Sans Mono", "DejaVu Sans Mono", Monaco, Consolas, monospace;
127   font-size: 12px;
128   line-height: 1.5;
129   border: 1px solid #cccccc;
130   padding: 10px;
131 }
132
133 /* Specify class=linenums on a pre to get line numbering */
134 ol.linenums {
135   margin-top: 0;
136   margin-bottom: 0;
137 }
138
139 /* IE indents via margin-left */
140 li.L0,
141 li.L1,
142 li.L2,
143 li.L3,
144 li.L4,
145 li.L5,
146 li.L6,
147 li.L7,
148 li.L8,
149 li.L9 {
150   /* */
151 }
152
153 /* Alternate shading for lines */
154 li.L1,
155 li.L3,
156 li.L5,
157 li.L7,
158 li.L9 {
159   /* */
160 }