From 8f248a36f10aa232551cac01a70bc44db68276a3 Mon Sep 17 00:00:00 2001 From: Mischa POSLAWSKY Date: Wed, 8 Dec 2010 03:01:33 +0100 Subject: [PATCH] termcol: 256-colour greyscale ramp as single table Separate tables allow theoretical side-by-side floating on very high resolutions (~2500px with normal font), but in normal cases just causes an inappropriate gap. --- termcol.plp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/termcol.plp b/termcol.plp index 5493c8a..c564255 100644 --- a/termcol.plp +++ b/termcol.plp @@ -151,11 +151,12 @@ for my $r (0 .. 5) { } print "\n"; + print ''; for my $row (0, 12) { - print '
'; + print ''; print colcell(232+$_, ($_*10 + 8) x 3) for $row .. $row+11; - print "
\n"; } + print "\n"; print "\n"; :> -- 2.30.0