diff --git a/collects/scribble/html-render.ss b/collects/scribble/html-render.ss index 06f4c571..b5e35399 100644 --- a/collects/scribble/html-render.ss +++ b/collects/scribble/html-render.ss @@ -183,7 +183,7 @@ (define/override (render-table t part ht) `((table ((cellspacing "0") ,@(case (table-style t) - [(boxed) '((width "100%") (bgcolor "lightgray"))] + [(boxed) '((width "100%") (bgcolor "#E8E8FF"))] [(centered) '((align "center"))] [(at-right) '((align "right"))] [(at-left) '((align "left"))] diff --git a/collects/scribble/scheme.ss b/collects/scribble/scheme.ss index afc858a4..2d0f57d1 100644 --- a/collects/scribble/scheme.ss +++ b/collects/scribble/scheme.ss @@ -248,6 +248,18 @@ p-color) (set! src-col (+ src-col 1)) (hash-table-put! col-map src-col dest-col))] + [(hash-table? (syntax-e c)) + (advance c init-line!) + (let ([equal-table? (hash-table? (syntax-e c) 'equal)]) + (out (if equal-table? + "#hash" + "#hasheq") + value-color) + (set! src-col (+ src-col 5 (if equal-table? 2 0))) + (hash-table-put! col-map src-col dest-col) + ((loop init-line! +inf.0) + (syntax-ize (hash-table-map (syntax-e c) cons) + (syntax-column c))))] [else (advance c init-line!) (let-values ([(s it? sub?) diff --git a/collects/scribble/scribble.css b/collects/scribble/scribble.css index 4641e4d9..273adc27 100644 --- a/collects/scribble/scribble.css +++ b/collects/scribble/scribble.css @@ -18,11 +18,12 @@ } .refcontent { - background-color: beige; + background-color: #F5F5DC; display: block; position: relative; width: 10em; font-size: 85%; + border: 0.5em solid #F5F5DC; } h1,h2,h3,h4,h5,h6 {