about summary refs log tree commit diff stats
path: root/html/023boolean.cc.html
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2017-03-08 19:02:59 -0800
committerKartik K. Agaram <vc@akkartik.com>2017-03-08 19:02:59 -0800
commit4a39d12d4568f76ebf45b34cec722d8e0bcf1207 (patch)
tree398323ebfd911b0a994b57be3053b19f38f5c66e /html/023boolean.cc.html
parent1f3bb2eda188f04271d318c36b57f69fd61552ef (diff)
downloadmu-4a39d12d4568f76ebf45b34cec722d8e0bcf1207.tar.gz
3764 - better colors for cross-links
Diffstat (limited to 'html/023boolean.cc.html')
-rw-r--r--html/023boolean.cc.html9
1 files changed, 5 insertions, 4 deletions
diff --git a/html/023boolean.cc.html b/html/023boolean.cc.html
index 4fcfa930..90ea4bc6 100644
--- a/html/023boolean.cc.html
+++ b/html/023boolean.cc.html
@@ -10,9 +10,9 @@
 <meta name="colorscheme" content="minimal">
 <style type="text/css">
 <!--
-pre { white-space: pre-wrap; font-family: monospace; color: #eeeeee; background-color: #080808; }
-body { font-size: 12pt; font-family: monospace; color: #eeeeee; background-color: #080808; }
-a { text-decoration: none; }
+pre { white-space: pre-wrap; font-family: monospace; color: #aaaaaa; background-color: #080808; }
+body { font-size: 12pt; font-family: monospace; color: #aaaaaa; background-color: #080808; }
+a { color:#eeeeee; text-decoration: none; }
 a:hover { text-decoration: underline; }
 * { font-size: 12pt; font-size: 1em; }
 .Constant { color: #00a0a0; }
@@ -20,10 +20,11 @@ a:hover { text-decoration: underline; }
 .traceContains { color: #008000; }
 .muRecipe { color: #ff8700; }
 .Comment { color: #9090ff; }
+.Comment a { color:#0000ee; text-decoration:underline; }
 .Delimiter { color: #800080; }
 .LineNr { color: #444444; }
 .Identifier { color: #c0a020; }
-.Normal { color: #eeeeee; background-color: #080808; padding-bottom: 1px; }
+.Normal { color: #aaaaaa; background-color: #080808; padding-bottom: 1px; }
 .Special { color: #c00000; }
 .cSpecial { color: #008000; }
 -->
f5d7864f6c0c62b8849349cb182c61f8dbed452'>6f5d7864 ^
ec926027 ^
3c435756 ^
1228ec73 ^
ec926027 ^


1228ec73 ^

7da71d03 ^
0edf822f ^
7da71d03 ^
9fc64bbc ^
10e449b5 ^
ec926027 ^
9fc64bbc ^

1228ec73 ^
0edf822f ^
ec926027 ^



decaddb4 ^
a8007cc4 ^
ec926027 ^
a8007cc4 ^
82ac0b7e ^
c7c822b2 ^
f1a6f323 ^
d241c9c4 ^





f1a6f323 ^
d241c9c4 ^
eb7afe5d ^
d241c9c4 ^
9cf71627 ^
6f5d7864 ^
9fc64bbc ^
0edf822f ^
9fc64bbc ^

3c435756 ^


2199940a ^
ec926027 ^















e7f76736 ^



267ebb59 ^
e7f76736 ^

a8007cc4 ^
c17d5591 ^
a8007cc4 ^
e7f76736 ^




267ebb59 ^


f5f4b698 ^



ad8e984f ^
cc3b58b6 ^
2b7a7498 ^
267ebb59 ^


7284d503 ^
96f19e1e ^

7f931ef0 ^


3c435756 ^
3c435756 ^
2199940a ^
3c435756 ^

b1bbe92d ^
96f19e1e ^
3c435756 ^
3c435756 ^
7284d503 ^

cae5461b ^
916ae8f5 ^
cae5461b ^
c82d0176 ^
a4ef18b1 ^
a26cc359 ^

a4ef18b1 ^
fae70331 ^

b291f85b ^



cae5461b ^



6b6dfb0c ^
3ba63579 ^
fae70331 ^
0edc9471 ^
fae70331 ^
57699011 ^
b291f85b ^

cae5461b ^

c1a50c82 ^
6b6dfb0c ^
3076bab4 ^


f1a6f323 ^
f48f6c14 ^
eaa75c87 ^
decaddb4 ^
6b6dfb0c ^



c82d0176 ^



decaddb4 ^







fc55fea0 ^






1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200