From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-4.0 required=3.0 tests=ALL_TRUSTED,BAYES_00 shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 5B96E21420 for ; Wed, 30 Jan 2019 04:44:32 +0000 (UTC) From: Eric Wong To: meta@public-inbox.org Subject: [PATCH 07/11] css/216dark: add comments and tweak highlight colors Date: Wed, 30 Jan 2019 04:44:26 +0000 Message-Id: <20190130044430.28189-8-e@80x24.org> In-Reply-To: <20190130044430.28189-1-e@80x24.org> References: <20190130044430.28189-1-e@80x24.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: Overkill, but "highlight" supports single-line comments (slc) independently of multi-line comments (com); but we'll use the same color for that. We'll also use #0f0 instead of #0ff for "kwb" (keyword class "b") since blue shades are prevalent in links and comments, while green was unused. --- contrib/css/216dark.css | 14 +++++++------- lib/PublicInbox/UserContent.pm | 14 +++++++------- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/contrib/css/216dark.css b/contrib/css/216dark.css index 35ef7aa..882fbc4 100644 --- a/contrib/css/216dark.css +++ b/contrib/css/216dark.css @@ -30,17 +30,17 @@ a:visited { color:#96f } * this doesn't use most of the colors available (I find too many * colors overwhelming). So the #ccc default is commented out. */ -.hl.num { color:#f30 } -.hl.esc { color:#f0f } -.hl.str { color:#f30 } -.hl.pps { color:#f30 } -/* .hl.slc { color:#ccc } */ +.hl.num { color:#f30 } /* number */ +.hl.esc { color:#f0f } /* escape character */ +.hl.str { color:#f30 } /* string */ +.hl.ppc { color:#f0f } /* preprocessor */ +.hl.pps { color:#f30 } /* preprocessor string */ +.hl.slc { color:#09f } /* single-line comment */ .hl.com { color:#09f } -.hl.ppc { color:#f0f } /* .hl.opt { color:#ccc } */ /* .hl.ipl { color:#ccc } */ /* .hl.lin { color:#ccc } */ .hl.kwa { color:#ff0 } -.hl.kwb { color:#0ff } +.hl.kwb { color:#0f0 } .hl.kwc { color:#ff0 } /* .hl.kwd { color:#ccc } */ diff --git a/lib/PublicInbox/UserContent.pm b/lib/PublicInbox/UserContent.pm index 514cd95..df0429c 100644 --- a/lib/PublicInbox/UserContent.pm +++ b/lib/PublicInbox/UserContent.pm @@ -42,18 +42,18 @@ sub CSS () { * this doesn't use most of the colors available (I find too many * colors overwhelming). So the #ccc default is commented out. */ - .hl.num { color:#f30 } - .hl.esc { color:#f0f } - .hl.str { color:#f30 } - .hl.pps { color:#f30 } - /* .hl.slc { color:#ccc } */ + .hl.num { color:#f30 } /* number */ + .hl.esc { color:#f0f } /* escape character */ + .hl.str { color:#f30 } /* string */ + .hl.ppc { color:#f0f } /* preprocessor */ + .hl.pps { color:#f30 } /* preprocessor string */ + .hl.slc { color:#09f } /* single-line comment */ .hl.com { color:#09f } - .hl.ppc { color:#f0f } /* .hl.opt { color:#ccc } */ /* .hl.ipl { color:#ccc } */ /* .hl.lin { color:#ccc } */ .hl.kwa { color:#ff0 } - .hl.kwb { color:#0ff } + .hl.kwb { color:#0f0 } .hl.kwc { color:#ff0 } /* .hl.kwd { color:#ccc } */ _ -- EW