public inbox for cygwin@cygwin.com
 help / color / mirror / Atom feed
From: Brian Inglis <Brian.Inglis@SystematicSw.ab.ca>
To: cygwin@cygwin.com
Subject: Re: mintty shows some text in other than foreground color
Date: Fri, 16 Sep 2016 13:21:00 -0000	[thread overview]
Message-ID: <d127e93e-5922-bc01-d3ec-043169f58cc3@SystematicSw.ab.ca> (raw)
In-Reply-To: <CAA5t8VoO0AEJ1in1pf+iZc6yKyfDSdKZjt-gNYkMMKtjf9-6xA@mail.gmail.com>

On 2016-09-15 14:47, David Karr wrote:
> When I run mintty, the background is white, and normal text is black.
> This is fine.  However, there are some applications that are
> displaying text in other colors, many of which are fine, but some apps
> display some text in yellow, which on a white background is almost
> unreadable.
>
> For instance, the display from Cassandra's "cqlsh" shows the results
> of queries in black, purple (probably not quite right), and yellow.
> The worst part is, it's using yellow for the column values.
>
> Is there any way to control this, in general (obviously, not just for
> cqlsh output)?

See
http://invisible-island.net/xterm/ctlseqs/ctlseqs.html#h2-Operating-System-Controls

Normal ANSI escapes start with CSI 0x9b or \e[, these start with OSC 0x9d or \e],
and end with ST 0x9c or \e\\, or BEL ctrl-G, 0x07 or \a.

See Ps = 4 ; c ; spec → Change colour c to colour spec, a standard xterm RGB
colour word or hex code; the ; c ; spec sequences may be repeated as many times
as required before the ST, e.g. for up to 256 colours.
See also Ps = 10 default foreground colour and 11 default background colour
if you need to temporarily invert the default background and foreground colours,
e.g to display curl wttr.in[/CityName] in a normally white window background:

#!/bin/bash
# wttr.sh - ANSI colour text weather forecast for IP address or city
echo -ne '\e]10;white\e\\'
echo -ne '\e]11;black\e\\'
curl wttr.in
sleep 5
echo -ne '\e]10;black\e\\'
echo -ne '\e]11;white\e\\'

as the colours just don't work without the black background.
N.B. The OSC sequences do not appear to be supported by man or less.

-- 
Take care. Thanks, Brian Inglis, Calgary, Alberta, Canada

--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple

  parent reply	other threads:[~2016-09-16  4:45 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-09-15 21:04 David Karr
2016-09-15 21:07 ` Andrey Repin
2016-09-16 13:21 ` Brian Inglis [this message]
2016-09-16 13:48 ` James Darnley
2016-09-16 15:48   ` David Karr
2016-09-16 20:52   ` Thomas Wolff

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=d127e93e-5922-bc01-d3ec-043169f58cc3@SystematicSw.ab.ca \
    --to=brian.inglis@systematicsw.ab.ca \
    --cc=cygwin@cygwin.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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 read-only IMAP folder(s) and NNTP newsgroup(s).