about summary refs log tree commit diff stats
path: root/html/edit
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/edit
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/edit')
-rw-r--r--html/edit/001-editor.mu.html25
-rw-r--r--html/edit/002-typing.mu.html25
-rw-r--r--html/edit/003-shortcuts.mu.html25
-rw-r--r--html/edit/004-programming-environment.mu.html25
-rw-r--r--html/edit/005-sandbox.mu.html25
-rw-r--r--html/edit/006-sandbox-copy.mu.html25
-rw-r--r--html/edit/007-sandbox-delete.mu.html25
-rw-r--r--html/edit/008-sandbox-edit.mu.html25
-rw-r--r--html/edit/009-sandbox-test.mu.html25
-rw-r--r--html/edit/010-sandbox-trace.mu.html25
-rw-r--r--html/edit/011-errors.mu.html25
-rw-r--r--html/edit/012-editor-undo.mu.html25
12 files changed, 120 insertions, 180 deletions
diff --git a/html/edit/001-editor.mu.html b/html/edit/001-editor.mu.html
index 2646fefc..55d657c3 100644
--- a/html/edit/001-editor.mu.html
+++ b/html/edit/001-editor.mu.html
@@ -7,27 +7,22 @@
 <meta name="plugin-version" content="vim7.4_v2">
 <meta name="syntax" content="none">
 <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; }
-.muControl { color:#c0a020; }
+.muControl { color: #804000; }
 .muRecipe { color: #ff8700; }
 .muScenario { color: #00af00; }
-.LineNr { color:#444444; }
+.LineNr { }
 .muData { color: #ffff00; }
-.Delimiter { color:#800080; }
-.Constant { color:#00a0a0; }
-.Special { color:#c00000; }
-.Comment { color: #8080ff; }
-.SalientComment { color: #00ffff; }
+.Delimiter { color: #c000c0; }
+.Constant { color: #008787; }
+.Special { color: #ff6060; }
+.Comment { color: #005faf; }
+.SalientComment { color: #0000af; }
 -->
 </style>
 
diff --git a/html/edit/002-typing.mu.html b/html/edit/002-typing.mu.html
index 518644c2..b1d91e07 100644
--- a/html/edit/002-typing.mu.html
+++ b/html/edit/002-typing.mu.html
@@ -7,27 +7,22 @@
 <meta name="plugin-version" content="vim7.4_v2">
 <meta name="syntax" content="none">
 <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; }
-.muControl { color:#c0a020; }
+.muControl { color: #804000; }
 .muRecipe { color: #ff8700; }
 .muScenario { color: #00af00; }
-.LineNr { color:#444444; }
+.LineNr { }
 .muData { color: #ffff00; }
-.Delimiter { color:#800080; }
-.Constant { color:#00a0a0; }
-.Special { color:#c00000; }
-.Comment { color: #8080ff; }
-.SalientComment { color: #00ffff; }
+.Delimiter { color: #c000c0; }
+.Constant { color: #008787; }
+.Special { color: #ff6060; }
+.Comment { color: #005faf; }
+.SalientComment { color: #0000af; }
 -->
 </style>
 
diff --git a/html/edit/003-shortcuts.mu.html b/html/edit/003-shortcuts.mu.html
index e4bb3480..4381f107 100644
--- a/html/edit/003-shortcuts.mu.html
+++ b/html/edit/003-shortcuts.mu.html
@@ -7,26 +7,21 @@
 <meta name="plugin-version" content="vim7.4_v2">
 <meta name="syntax" content="none">
 <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; }
-.muControl { color:#c0a020; }
+.muControl { color: #804000; }
 .muRecipe { color: #ff8700; }
 .muScenario { color: #00af00; }
-.LineNr { color:#444444; }
-.Delimiter { color:#800080; }
-.Constant { color:#00a0a0; }
-.Special { color:#c00000; }
-.Comment { color: #8080ff; }
-.SalientComment { color: #00ffff; }
+.LineNr { }
+.Delimiter { color: #c000c0; }
+.Constant { color: #008787; }
+.Special { color: #ff6060; }
+.Comment { color: #005faf; }
+.SalientComment { color: #0000af; }
 -->
 </style>
 
diff --git a/html/edit/004-programming-environment.mu.html b/html/edit/004-programming-environment.mu.html
index f84126d0..c46650db 100644
--- a/html/edit/004-programming-environment.mu.html
+++ b/html/edit/004-programming-environment.mu.html
@@ -7,27 +7,22 @@
 <meta name="plugin-version" content="vim7.4_v2">
 <meta name="syntax" content="none">
 <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; }
-.muControl { color:#c0a020; }
+.muControl { color: #804000; }
 .muRecipe { color: #ff8700; }
 .muScenario { color: #00af00; }
-.LineNr { color:#444444; }
+.LineNr { }
 .muData { color: #ffff00; }
-.Delimiter { color:#800080; }
-.Constant { color:#00a0a0; }
-.Special { color:#c00000; }
-.Comment { color: #8080ff; }
-.SalientComment { color: #00ffff; }
+.Delimiter { color: #c000c0; }
+.Constant { color: #008787; }
+.Special { color: #ff6060; }
+.Comment { color: #005faf; }
+.SalientComment { color: #0000af; }
 -->
 </style>
 
diff --git a/html/edit/005-sandbox.mu.html b/html/edit/005-sandbox.mu.html
index fd7ce4a1..7e484efe 100644
--- a/html/edit/005-sandbox.mu.html
+++ b/html/edit/005-sandbox.mu.html
@@ -7,27 +7,22 @@
 <meta name="plugin-version" content="vim7.4_v2">
 <meta name="syntax" content="none">
 <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; }
-.muControl { color:#c0a020; }
+.muControl { color: #804000; }
 .muRecipe { color: #ff8700; }
 .muScenario { color: #00af00; }
-.LineNr { color:#444444; }
+.LineNr { }
 .muData { color: #ffff00; }
-.Delimiter { color:#800080; }
-.Constant { color:#00a0a0; }
-.Special { color:#c00000; }
-.Comment { color: #8080ff; }
-.SalientComment { color: #00ffff; }
+.Delimiter { color: #c000c0; }
+.Constant { color: #008787; }
+.Special { color: #ff6060; }
+.Comment { color: #005faf; }
+.SalientComment { color: #0000af; }
 -->
 </style>
 
diff --git a/html/edit/006-sandbox-copy.mu.html b/html/edit/006-sandbox-copy.mu.html
index c80bcf91..0feafeef 100644
--- a/html/edit/006-sandbox-copy.mu.html
+++ b/html/edit/006-sandbox-copy.mu.html
@@ -7,26 +7,21 @@
 <meta name="plugin-version" content="vim7.4_v2">
 <meta name="syntax" content="none">
 <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; }
-.muControl { color:#c0a020; }
+.muControl { color: #804000; }
 .muRecipe { color: #ff8700; }
 .muScenario { color: #00af00; }
-.LineNr { color:#444444; }
-.Delimiter { color:#800080; }
-.Constant { color:#00a0a0; }
-.Special { color:#c00000; }
-.Comment { color: #8080ff; }
-.SalientComment { color: #00ffff; }
+.LineNr { }
+.Delimiter { color: #c000c0; }
+.Constant { color: #008787; }
+.Special { color: #ff6060; }
+.Comment { color: #005faf; }
+.SalientComment { color: #0000af; }
 -->
 </style>
 
diff --git a/html/edit/007-sandbox-delete.mu.html b/html/edit/007-sandbox-delete.mu.html
index cdfaf71c..588c2b8e 100644
--- a/html/edit/007-sandbox-delete.mu.html
+++ b/html/edit/007-sandbox-delete.mu.html
@@ -7,26 +7,21 @@
 <meta name="plugin-version" content="vim7.4_v2">
 <meta name="syntax" content="none">
 <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; }
-.muControl { color:#c0a020; }
+.muControl { color: #804000; }
 .muRecipe { color: #ff8700; }
 .muScenario { color: #00af00; }
-.LineNr { color:#444444; }
-.Delimiter { color:#800080; }
-.Constant { color:#00a0a0; }
-.Special { color:#c00000; }
-.Comment { color: #8080ff; }
-.SalientComment { color: #00ffff; }
+.LineNr { }
+.Delimiter { color: #c000c0; }
+.Constant { color: #008787; }
+.Special { color: #ff6060; }
+.Comment { color: #005faf; }
+.SalientComment { color: #0000af; }
 -->
 </style>
 
diff --git a/html/edit/008-sandbox-edit.mu.html b/html/edit/008-sandbox-edit.mu.html
index ded40eeb..d20780a9 100644
--- a/html/edit/008-sandbox-edit.mu.html
+++ b/html/edit/008-sandbox-edit.mu.html
@@ -7,26 +7,21 @@
 <meta name="plugin-version" content="vim7.4_v2">
 <meta name="syntax" content="none">
 <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; }
-.muControl { color:#c0a020; }
+.muControl { color: #804000; }
 .muRecipe { color: #ff8700; }
 .muScenario { color: #00af00; }
-.LineNr { color:#444444; }
-.Delimiter { color:#800080; }
-.Constant { color:#00a0a0; }
-.Special { color:#c00000; }
-.Comment { color: #8080ff; }
-.SalientComment { color: #00ffff; }
+.LineNr { }
+.Delimiter { color: #c000c0; }
+.Constant { color: #008787; }
+.Special { color: #ff6060; }
+.Comment { color: #005faf; }
+.SalientComment { color: #0000af; }
 -->
 </style>
 
diff --git a/html/edit/009-sandbox-test.mu.html b/html/edit/009-sandbox-test.mu.html
index 7d8b5d8d..cd853990 100644
--- a/html/edit/009-sandbox-test.mu.html
+++ b/html/edit/009-sandbox-test.mu.html
@@ -7,27 +7,22 @@
 <meta name="plugin-version" content="vim7.4_v2">
 <meta name="syntax" content="none">
 <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; }
-.muControl { color:#c0a020; }
+.muControl { color: #804000; }
 .muRecipe { color: #ff8700; }
 .muScenario { color: #00af00; }
-.LineNr { color:#444444; }
+.LineNr { }
 .muData { color: #ffff00; }
-.Delimiter { color:#800080; }
-.Constant { color:#00a0a0; }
-.Special { color:#c00000; }
-.Comment { color: #8080ff; }
-.SalientComment { color: #00ffff; }
+.Delimiter { color: #c000c0; }
+.Constant { color: #008787; }
+.Special { color: #ff6060; }
+.Comment { color: #005faf; }
+.SalientComment { color: #0000af; }
 -->
 </style>
 
diff --git a/html/edit/010-sandbox-trace.mu.html b/html/edit/010-sandbox-trace.mu.html
index 1507f1f8..45fa21e9 100644
--- a/html/edit/010-sandbox-trace.mu.html
+++ b/html/edit/010-sandbox-trace.mu.html
@@ -7,27 +7,22 @@
 <meta name="plugin-version" content="vim7.4_v2">
 <meta name="syntax" content="none">
 <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; }
-.muControl { color:#c0a020; }
+.muControl { color: #804000; }
 .muRecipe { color: #ff8700; }
 .muScenario { color: #00af00; }
-.LineNr { color:#444444; }
+.LineNr { }
 .muData { color: #ffff00; }
-.Delimiter { color:#800080; }
-.Constant { color:#00a0a0; }
-.Special { color:#c00000; }
-.Comment { color: #8080ff; }
-.SalientComment { color: #00ffff; }
+.Delimiter { color: #c000c0; }
+.Constant { color: #008787; }
+.Special { color: #ff6060; }
+.Comment { color: #005faf; }
+.SalientComment { color: #0000af; }
 -->
 </style>
 
diff --git a/html/edit/011-errors.mu.html b/html/edit/011-errors.mu.html
index 1bf4330a..7a265f32 100644
--- a/html/edit/011-errors.mu.html
+++ b/html/edit/011-errors.mu.html
@@ -7,27 +7,22 @@
 <meta name="plugin-version" content="vim7.4_v2">
 <meta name="syntax" content="none">
 <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; }
-.muControl { color:#c0a020; }
+.muControl { color: #804000; }
 .muRecipe { color: #ff8700; }
 .muScenario { color: #00af00; }
-.LineNr { color:#444444; }
+.LineNr { }
 .muData { color: #ffff00; }
-.Delimiter { color:#800080; }
-.Constant { color:#00a0a0; }
-.Special { color:#c00000; }
-.Comment { color: #8080ff; }
-.SalientComment { color: #00ffff; }
+.Delimiter { color: #c000c0; }
+.Constant { color: #008787; }
+.Special { color: #ff6060; }
+.Comment { color: #005faf; }
+.SalientComment { color: #0000af; }
 -->
 </style>
 
diff --git a/html/edit/012-editor-undo.mu.html b/html/edit/012-editor-undo.mu.html
index 7a9143bf..fc29d146 100644
--- a/html/edit/012-editor-undo.mu.html
+++ b/html/edit/012-editor-undo.mu.html
@@ -7,27 +7,22 @@
 <meta name="plugin-version" content="vim7.4_v2">
 <meta name="syntax" content="none">
 <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; }
-.muControl { color:#c0a020; }
+.muControl { color: #804000; }
 .muRecipe { color: #ff8700; }
 .muScenario { color: #00af00; }
-.LineNr { color:#444444; }
+.LineNr { }
 .muData { color: #ffff00; }
-.Delimiter { color:#800080; }
-.Constant { color:#00a0a0; }
-.Special { color:#c00000; }
-.Comment { color: #8080ff; }
-.SalientComment { color: #00ffff; }
+.Delimiter { color: #c000c0; }
+.Constant { color: #008787; }
+.Special { color: #ff6060; }
+.Comment { color: #005faf; }
+.SalientComment { color: #0000af; }
 -->
 </style>