summaryrefslogtreecommitdiff
path: root/headers.html
diff options
context:
space:
mode:
authoriximeow <me@iximeow.net>2018-01-01 04:46:37 -0800
committeriximeow <me@iximeow.net>2018-01-01 04:46:37 -0800
commit1a864e96c115cefa6aa4965210ebf44d60cf0690 (patch)
treef52daf4e7e1faf8cc5812ebcfedd6357d9cc0f70 /headers.html
parent22cdc1d261925125948000ea8382161121daf561 (diff)
adjust #eval to execute a shell command rather than execute one program
also set up pandoc to include a bit of style information, currently located at headers.html TODO plans include configurable headers for a page, but not right now
Diffstat (limited to 'headers.html')
-rw-r--r--headers.html21
1 files changed, 21 insertions, 0 deletions
diff --git a/headers.html b/headers.html
new file mode 100644
index 0000000..de5f7ec
--- /dev/null
+++ b/headers.html
@@ -0,0 +1,21 @@
+<style>
+body { background-color: #d7d7dd; }
+/* colors pulled from my current terminal config */
+.codebox .black { color: #2e3436; }
+.codebox .red { color: #cc0000; }
+.codebox .green { color: #4e9a06; }
+.codebox .yellow { color: #c4a000; }
+.codebox .blue { color: #3465a4; }
+.codebox .purple { color: #75507b; }
+.codebox .cyan { color: #06989a; }
+.codebox .white { color: #d3d7cf; }
+.codebox {
+ /* terminal foreground */
+ color: #d3d7cf;
+ max-height: 512px;
+ width: 75%;
+ overflow: auto;
+ /* terminal background */
+ background: #171717;
+}
+</style>