Main sections
RGB()
color%=RGB(red%, green%, blue%)
Sets the value of a color mixed with red%, green% and blue%. The values for these are from 0 to 255.
Sample:
 
DRAWRECT 0, 0, 200, 200, RGB(255, 0, 255) // Purple
SHOWSCREEN
MOUSEWAIT
// Farben / Colors
//   R   G   B
//   0   0   0 - Schwarz / Black
//   0   0 255 - Blau    / Blue 
//   0 255   0 - Grün    / Green
//   0 255 255 - Türkis  / Cyan
// 255   0   0 - Rot     / Red
// 255   0 255 - Lila    / Purple
// 255 255   0 - Gelb    / Yellow
// 255 255 255 - Weiß    / White
// 255   0 128 - Rosa    / Pink
//  80  40  10 - Braun   / Brown
//  80  80  80 - Grau    / Grey
//  80  80 255 - H-Blau  / sky blue

