zsh-workers
 help / color / mirror / code / Atom feed
* Numeric colour tip
@ 2008-05-12 11:50 Peter Stephenson
  0 siblings, 0 replies; only message in thread
From: Peter Stephenson @ 2008-05-12 11:50 UTC (permalink / raw)
  To: Zsh hackers list

Those of you experimenting with colours on terminals that allow more
than the simple set of colours might like to be reminded about
user-defined arithmetic functions.  For example, I've got the following
to set up colours for rxvt.

    autoload -U zmathfuncdef
    # colour takes red, green, blue (0..3) as arguments
    zmathfuncdef colour '16 + $1 * 16 + $2 * 4 + $3'
    zle_highlight=(
      # sort of lightish blue on dark red
      region:fg=$((colour(2,2,3))),bg=$((colour(1,0,0)))
      # yellow on dark blue
      isearch:fg=$((colour(3,3,0)))bg=$((colour(0,0,1)))
      # white on not very dark green
      default:fg=$((colour(3,3,3))),bg=$((colour(0,1,1)))
    )

-- 
Peter Stephenson <pws@csr.com>                  Software Engineer
CSR PLC, Churchill House, Cambridge Business Park, Cowley Road
Cambridge, CB4 0WZ, UK                          Tel: +44 (0)1223 692070


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2008-05-12 11:51 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-05-12 11:50 Numeric colour tip Peter Stephenson

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).