Colors for Rows in the view

So far I have a list of these colors to be used in the view rows:red := 255:0:0;

blue := 0:0:255;

yellow := 255:255:0;

pink := 255:193:253;

white := 255:255:255;

black := 1:1:1;

apricot := 255:155:133;

plain:= 0:0:0;

Purple := 128:0:128;

Blue := 0:0:128;

DkGreen := 0:160:0;

Brown := 130:66:0;

PaleYellow := 255:255:208;

Tan := 224:161:117;

DefaultColor := 0:0:0;

Is there any others? Wher can I get the list of them?

Subject: Colors for Rows in the view

You can find tables of RGB colors in any number of places on the web (for example, Hex Hub HTML Color Codes: Hexadecimal codes for named colors used in HTML page features). The notations are in hexidecimal for use on the web, but it shouldn’t be too hard to convert those to decimal for your own use. That said, the difference between, say, Alice blue and ghost white will be vanishingly small to the user, so do try to limit your palette to a small, easily distinguished assortment.