// standard colors (include file) // Refer to the program "color_chart.txt" // Include this near the beginning of your program // For a shorter list, see basic_colors.txt. // You can copy lines from this file, or make up your own colors. // remember not to duplicate color names with other variable names. // basic colors (include file) // Refer to the program "color_chart.txt" // Include this near the beginning of your program // For a more complete list, see standard_colors.txt. // You can copy lines from this file, or make up your own colors. // remember not to duplicate color names with other variable names. Brown = setcolor (153, 102, 0) Magenta = setcolor (255, 0, 255) Purple = setcolor (128, 0, 255) Blue = setcolor ( 0, 0, 255) Cyan = setcolor ( 0, 255, 255) Turquoise = setcolor ( 0, 194, 194) Green = setcolor ( 0, 255, 0) Yellow = setcolor (255, 255, 0) Orange = setcolor (255, 128, 0) Red = setcolor (255, 0, 0) White = setcolor (255, 255, 255) Gray_50 = setcolor (128, 128, 128) Black = setcolor ( 0, 0, 0) Gold = setcolor (216, 180, 0)