plot style improvements

This commit is contained in:
xenia 2020-12-05 00:52:39 -05:00
parent 23ef0d5a6f
commit 063bc55cc7
2 changed files with 6 additions and 2 deletions

View File

@ -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; } h1, h2, h3, p { font-family: monospace; }

View File

@ -1,10 +1,14 @@
#lang scribble/base #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} @title[#:style '(toc-hidden no-sidebar no-index no-toc+aux)]{BLÅHAJ score chart}
meow meow
last updated: @(date->string now #t)
@(parameterize ([plot-width 2048] [plot-height 1024]) @(parameterize ([plot-width 2048] [plot-height 1024])
(make-plot plot-pict)) (make-plot plot-pict))