termcol: hover title with decimal r,g,b values
[sheet.git] / termcol.plp
index 359b33d7db1a51530f5472a9e69c3d45c6459378..5a0306afc66c92727ea34ca7655a59dd0db03222 100644 (file)
@@ -1,28 +1,25 @@
-<:
-use utf8;
-use strict;
-use warnings;
-use open IO => ':utf8';
-use List::Util 'min';
-
-our $VERSION = 'v1.0';
+<(common.inc.plp)><:
+       our $VERSION = 'v1.0';
 
-$header{content_type} = 'text/html; charset=utf-8';
+       use List::Util 'min';
 
 :><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
  "http://www.w3.org/TR/html4/loose.dtd">
-<html>
+<html lang="en">
 
 <head>
-<title>terminal colour cheat sheet</title>
 <meta http-equiv="content-type" content="utf-8">
-<link rel="stylesheet" type="text/css" media="all" href="/base.css">
+<title>terminal colour cheat sheet</title>
+<meta name="description" content="Index of all terminal/console colour codes, with an example result of various environments.">
+<meta name="keywords" content="color, code, terminal, console, escape, table, xterm, rxvt">
+<:= stylesheet(qw'light dark') :>
+<link rel="icon" type="image/png" href="/clip.png">
 </head>
 
 <body id="colour">
 <h1>Terminal colours</h1>
 
-<ul>
+<div class="section">
 <:
 sub luminance {
        # perceived brightness (using ITU-R recommendation 601 luma co-efficients)
@@ -38,8 +35,9 @@ sub colcell {
        my $rgb48 = '';
        $rgb48 .= sprintf '%02X', $_ for @rgb[0..2];
        my $inverse = sprintf('%X', luminance(@rgb)/255 < .3 ? 12 : 0) x 3;
-       return sprintf '<td style="%s; padding:0 1ex">%s<td style="%s">%s<td style="%s">%s'."\n",
-               "background:#$rgb48; color:#$inverse",
+       return sprintf '<td title="%s" style="%s">%s<td style="%s">%s<td style="%s">%s'."\n",
+               join(',', map { int } @rgb[0..2]),
+               "background:#$rgb48; color:#$inverse; padding:0 1ex",
                $id,
                "background:#000; color:#$rgb48",
                $rgb24,
@@ -77,7 +75,6 @@ my %col = (
 );
 
 for my $term (qw/html cga xterm tango/) {
-       print '<li>', "\n";
        print '<table>', "\n";
        print "<caption>$term</caption>\n";
        for my $num (0 .. 15) {
@@ -85,15 +82,17 @@ for my $term (qw/html cga xterm tango/) {
                print '<tr>',
                        colcell($col{"-$term"}[$num] || $num, $rgb, $col{$term}[0]);
        }
-       print "</table></li>\n\n";
+       print "</table>\n\n";
 }
-:></ul>
+:></div>
 
 <hr>
-<h2>88-colour space</h2><ul>
+
+<div class="section">
+<h2>88-colour space</h2>
 <:
 for my $r (0 .. 3) {
-       print '<li><table>';
+       print '<table>';
        for my $g (0 .. 3) {
                print '<tr>';
                for my $b (0 .. 3) {
@@ -105,16 +104,19 @@ for my $r (0 .. 3) {
 }
 print "\n";
 
-print '<li><table><tr>';
-print colcell(80, ($_) x 3) for 46, 92, 115, 139, 162, 185, 208, 231;
+print '<table><tr>';
+print colcell(80+$_, (($_ + 2 + ($_>0)) * 255/11) x 3) for 0 .. 7;
 print "</table>\n\n";
-:></ul>
 
+:></div>
+<: if ($ENV{PATH_INFO} =~ /256/) { :>
 <hr>
-<h2>256-colour space</h2><ul>
+
+<div class="section">
+<h2>256-colour space</h2>
 <:
 for my $r (0 .. 5) {
-       print '<li><table>';
+       print '<table>';
        for my $g (0 .. 5) {
                print '<tr>';
                for my $b (0 .. 5) {
@@ -127,13 +129,14 @@ for my $r (0 .. 5) {
 print "\n";
 
 for my $row (0, 12) {
-       print '<li><table><tr>';
+       print '<table><tr>';
        print colcell(232+$_, ($_*10 + 8) x 3) for $row .. $row+11;
        print "</table>\n";
 }
 print "\n";
-:></ul>
 
+:></div>
+<: } :>
 <hr>
 
 <p class="footer">