Bill Allombert on Mon, 06 Jun 2005 17:21:38 +0200


[Date Prev] [Date Next] [Thread Prev] [Thread Next] [Date Index] [Thread Index]

Re: screen colors


On Fri, Jun 03, 2005 at 01:57:49PM +0200, Rampal Etienne wrote:
> How do I change screen colors in PARI/gp? (I'm using the Windows version).
> I see a color definition scheme in the .gprc file, but I have no idea what 
> other options exist. I would like the background to be white an dthe text 
> to be black, and the other colors to be readable against such a background.

Use default(colors,...), see
??colors

If you already have a white background terminal, you can just do
default(colors,"lightbg"), which is the same as
default(colors,"1, 6, 3, 4, 5, 2, 3")

If you want GP to force the background to be white, you can try
default(colors,"[1,7,0], [6,7,0], [3,7,0], [4,7,0], [5,7,0], [2,7,0], [3,7,0]")

thought it has some rough edge.

Cheers,
Bill