From 063bc55cc751d23f62034910086e45c2bc4e1109 Mon Sep 17 00:00:00 2001 From: haskal Date: Sat, 5 Dec 2020 00:52:39 -0500 Subject: [PATCH] plot style improvements --- scripts/plot.css | 2 +- scripts/plot.scrbl | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/scripts/plot.css b/scripts/plot.css index 63b1e1a..0ea08d6 100644 --- a/scripts/plot.css +++ b/scripts/plot.css @@ -1,4 +1,4 @@ -html, body { background: black; color: white; font-family: monospace; } +html, body { background: #111; color: #dde; font-family: monospace; font-size: 1.05rem; } h1, h2, h3, p { font-family: monospace; } diff --git a/scripts/plot.scrbl b/scripts/plot.scrbl index 36de0e2..ba4217c 100644 --- a/scripts/plot.scrbl +++ b/scripts/plot.scrbl @@ -1,10 +1,14 @@ #lang scribble/base -@(require plot/no-gui racket "plot") +@(require plot/no-gui racket racket/date "plot") +@(date-display-format 'iso-8601) +@(define now (current-date)) @title[#:style '(toc-hidden no-sidebar no-index no-toc+aux)]{BLĂ…HAJ score chart} meow +last updated: @(date->string now #t) + @(parameterize ([plot-width 2048] [plot-height 1024]) (make-plot plot-pict))