I have a color data file that gives the color name and its RGB values, for instance like this:
red RGB(255,0,0)
green RGB(0,128,0)
blue RGB(0,0,255)
brown RGB(165,42,42)
gold RGB(255,215,0)
maroon RGB(128,0,0)
I like to create a color dictionary from this file that looks like this:
{'red': (255,0,0), 'green': (0,128,0), 'blue': (0,0,255), ...}
How can I best do that?