about summary refs log tree commit diff stats
path: root/html/020run.cc.html
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2018-12-29 15:27:18 -0800
committerKartik Agaram <vc@akkartik.com>2018-12-29 15:27:18 -0800
commitac07e589b3e912c704c2011d543f18b16712ff15 (patch)
treecc62a44e368487f6379a970e0183a5d18d552182 /html/020run.cc.html
parentc164f4fb6be4dcdf452e4276127a2cfabc32c33f (diff)
downloadmu-ac07e589b3e912c704c2011d543f18b16712ff15.tar.gz
4890 - new html renderings
a) Switch to a light background.
b) Linkify calls in .subx files.
c) Keep all colorization in the Vim colorscheme, get rid of hacky special-cases
   in update_html.
Diffstat (limited to 'html/020run.cc.html')
-rw-r--r--html/020run.cc.html31
1 files changed, 13 insertions, 18 deletions
diff --git a/html/020run.cc.html b/html/020run.cc.html
index bc61e5f7..db5a30e4 100644
--- a/html/020run.cc.html
+++ b/html/020run.cc.html
@@ -7,30 +7,25 @@
 <meta name="plugin-version" content="vim7.4_v2">
 <meta name="syntax" content="cpp">
 <meta name="settings" content="number_lines,use_css,pre_wrap,no_foldcolumn,expand_tabs,line_ids,prevent_copy=">
-<meta name="colorscheme" content="minimal">
+<meta name="colorscheme" content="minimal-light">
 <style type="text/css">
 <!--
-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; }
-.subxS2Comment a { color:inherit; }
-.subxS1Comment a { color:inherit; }
-.subxComment a { color:inherit; }
-.subxH2Comment a { color:inherit; }
-.subxH1Comment a { color:inherit; }
+pre { white-space: pre-wrap; font-family: monospace; color: #000000; background-color: #c6c6c6; }
+body { font-size:12pt; font-family: monospace; color: #000000; background-color: #c6c6c6; }
 * { font-size:12pt; font-size: 1em; }
-.LineNr { color:#444444; }
-.Delimiter { color:#800080; }
-.Normal { color: #aaaaaa; background-color: #080808; padding-bottom: 1px; }
-.SalientComment { color: #00ffff; }
-.CommentedCode { color: #6c6c6c; }
+.LineNr { }
+.Delimiter { color: #c000c0; }
+.Normal { color: #000000; background-color: #c6c6c6; padding-bottom: 1px; }
+.SalientComment { color: #0000af; }
+.CommentedCode { color: #8a8a8a; }
 .traceAbsent { color: #c00000; }
 .muRecipe { color: #ff8700; }
-.Constant { color:#00a0a0; }
-.Special { color:#c00000; }
-.Identifier { color:#c0a020; }
+.Constant { color: #008787; }
+.Special { color: #d70000; }
+.Identifier { color: #af5f00; }
 .cSpecial { color: #008000; }
-.Comment { color: #8080ff; }
-.traceContains { color: #008000; }
+.Comment { color: #005faf; }
+.traceContains { color: #005f00; }
 -->
 </style>
 
218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310