Just in case someone may need to use some of the most popular colors in RGB format for the BASIC Engine NG, I typed in all the colors listed at [ https://www.rapidtables.com/web/color/RGB_Color.html](https://) , while waiting on my wife this evening. It is in standard Engine BASIC format. There were a few duplicates on the webpage listed, and I tried to remember to not include them, but probably let one slip in. The only change I can recall is that I couldn't use the reserved word TAN for the color tan, so I changed it to TANCOLOR. In any case, here it is:
29998 REM RGB colors codes as found at
29999 REM https://www.rapidtables.com/web/color/RGB_Color.html
30000 &RGBCOLORS
30005 BLACK=RGB(0,0,0)
30010 WHITE=RGB(255,255,255)
30015 RED=RGB(255,0,0)
30020 LIME=RGB(0,255,0)
30025 BLUE=RGB(0,0,255)
30030 YELLOW=RGB(255,255,0)
30035 CYAN=RGB(0,255,255)
30040 MAGENTA=RGB(255,0,255)
30045 SILVER=RGB(192,192,192)
30050 GRAY=RGB(128,128,128)
30055 MAROON=RGB(128,0,0)
30060 OLIVE=RGB(128,128,0)
30065 GREEN=RGB(0,128,0)
30070 PURPLE=RGB(128,0,128)
30075 TEAL=RGB(0,128,128)
30080 NAVY=RGB(0,0,128)
30095 MAROON=RGB(128,0,0)
30100 DARKRED=RGB(139,0,0)
30105 BROWN=RGB(165,42,42)
30110 FIREBRICK=RGB(178,34,34)
30115 CRIMSON=RGB(220,20,60)
30120 TOMATO=RGB(255,99,71)
30125 CORAL=RGB(255,127,80)
30130 INDIANRED=RGB(205,92,92)
30135 LIGHTCORAL=RGB(240,128,128)
30140 DARKSALMON=RGB(233,150,122)
30145 SALMON=RGB(250,128,114)
30150 LIGHTSALMON=RGB(255,160,122)
30155 ORANGERED=RGB(255,69,0)
30160 DARKORANGE=RGB(255,140,0)
30165 ORANGE=RGB(255,165,0)
30170 GOLD=RGB(255,215,0)
30175 DARKGOLDENROD=RGB(184,134,11)
30180 GOLDENROD=RGB(218,165,32)
30185 PALEGOLDENROD=RGB(238,232,170)
30190 DARKKHAKI=RGB(189,183,107)
30195 KHAKI=RGB(240,230,140)
30200 OLIVE=RGB(128,128,0)
30205 YELLOW=RGB(255,255,0)
30210 YELLOWGREEN=RGB(154,205,50)
30215 DARKOLIVEGREEN=RGB(85,107,47)
30220 OLIVEDRAB=RGB(107,142,35)
30225 LAWNGREEN=RGB(124,252,0)
30230 CHARTEUSE=RGB(127,255,0)
30235 GREENYELLOW=RGB(173,255,47)
30240 DARKGREEN=RGB(0,100,0)
30245 FORESTGREEN=RGB(34,139,34)
30250 LIME=RGB(0,255,0)
30255 LIMEGREEN=RGB(50,205,50)
30260 LIGHTGREEN=RGB(144,238,144)
30265 PALEGREEN=RGB(152,251,152)
30270 DARKSEAGREEN=RGB(143,188,143)
30275 MEDIUMSPRINGGREEN=RGB(0,250,154)
30280 SPRINGGREEN=RGB(0,255,127)
30285 SEAGREEN=RGB(46,139,87)
30290 MEDIUMAQUA=RGB(102,250,170)
30295 MEDIUMSEAGREEN=RGB(60,179,113)
30330 LIGHSEAGREEN=RGB(32,178,170)
30335 DARKSLATEGRAY=RGB(47,79,79)
30340 TEAL=RGB(0,128,128)
30345 DARKCYAN=RGB(0,139,139)
30350 AQUA=RGB(0,255,255)
30355 LIGHTCYAN=RGB(224,255,255)
30360 DARKTURQUOISE=RGB(0,206,209)
30365 TURQUOISE=RGB(64,224,208)
30370 MEDIUMTURQUOISE=RGB(72,209,204)
30375 PALETURQUOISE=RGB(175,238,238)
30380 AQUAMARINE=RGB(127,255,212)
30385 POWDERBLUE=RGB(176,224,230)
30390 CADETBLUE=RGB(95,158,160)
30395 STEELBLUE=RGB(70,130,180)
30400 CORNFLOWERBLUE=RGB(100,149,237)
30405 DEEPSKYBLUE=RGB(0,191,255)
30410 DODGERBLUE=RGB(30,144,255)
30415 LIGHTBLUE=RGB(173,216,230)
30420 SKYBLUE=RGB(135,206,235)
30425 LIGHTSKYBLUE=RGB(135,206,250)
30430 MIDNIGHTBLUE=RGB(25,25,112)
30435 NAVY=RGB(0,0,128)
30440 DARKBLUE=RGB(0,0,139)
30445 MEDIUMBLUE=RGB(0,0,205)
30450 ROYALBLUE=RGB(65,105,225)
30455 BLUEVIOLET=RGB(138,43,226)
30460 INDIGO=RGB(75,0,130)
30465 DARKSLATEBLUE=RGB(72,61,139)
30470 SLATEBLUE=RGB(106,90,205)
30475 MEDIUMSLATEBLUE=RGB(123,104,238)
30480 MEDIUMPURPLE=RGB(147,112,219)
30485 DARKMAGENTA=RGB(139,0,139)
30490 DARKVIOLET=RGB(148,0,211)
30495 DARKORCHID=RGB(153,50,204)
30500 MEDIUMORCHID=RGB(186,85,211)
30505 PURPLE=RGB(128,0,128)
30510 THISTLE=RGB(216,191,216)
30515 PLUM=RGB(221,160,221)
30520 VIOLET=RGB(238,130,238)
30525 FUSCHIA=RGB(255,0,255)
30530 ORCHID=RGB(218,112,214)
30535 MEDIUMVIOLETRED=RGB(199,21,133)
30540 PALEVIOLETRED=RGB(219,112,147)
30545 DEEPPINK=RGB(255,20,147)
30550 HOTPINK=RGB(255,105,180)
30555 LIGHTPINK=RGB(255,182,193)
30560 PINK=RGB(255,192,203)
30565 ANTIQUEWHITE=RGB(250,235,215)
30570 BEIGE=RGB(245,245,220)
30575 BISQUE=RGB(255,228,196)
30580 BLANCEDALMOND=RGB(255,235,205)
30585 WHEAT=RGB(245,222,179)
30590 CORNSILK=RGB(255,248,220)
30595 LEMONCHIFFON=RGB(255,250,205)
30600 LIGHTGOLDENROD=RGB(250,250,210)
30605 LIGHTYELLOW=RGB(255,255,224)
30610 SADDLEBROWN=RGB(139,69,19)
30615 SIENNA=RGB(160,82,45)
30620 CHOCOLATE=RGB(210,105,30)
30625 PERU=RGB(205,133,63)
30630 SANDYBROWN=RGB(244,164,96)
30635 BURLYWOOD=RGB(222,184,135)
30640 TANCOLOR=RGB(210,180,140)
30645 ROSYBROWN=RGB(188,143,143)
30650 MOCCASIN=RGB(255,228,181)
30655 NAVAJOWHITE=RGB(255,222,173)
30660 PEACHPUFF=RGB(255,218,185)
30665 MISTYROSE=RGB(255,228,225)
30670 LAVENDARBLUSH=RGB(255,240,245)
30675 LINEN=RGB(250,240,230)
30680 OLDLACE=RGB(253,245,230)
30685 PAPAYAWHIP=RGB(255,239,213)
30690 SEASSHELL=RGB(255,245,238)
30695 MINTCREAM=RGB(245,255,250)
30700 SLATEGRAY=RGB(112,128,144)
30705 LIGHTSLATEGRAY=RGB(119,136,153)
30710 LIGHTSTEELBLUE=RGB(176,196,222)
30715 LAVENDAR=RGB(230,230,250)
30720 FLORALWHITE=RGB(255,250,240)
30725 ALICEBLUE=RGB(240,248,255)
30730 GHOSTWHITE=RGB(248,248,255)
30735 HONEYEW=RGB(240,255,240)
30740 IVORY=RGB(255,255,240)
30745 AZURE=RGB(240,255,255)
30750 SNOW=RGB(240,255,255)
30755 DIMGRAY=RGB(105,105,105)
30760 GAINSBORO=RGB(220,220,220)