2. Refer to color_dict:
Check the color_dict
for supported colors. For example:
color_dict = {
"red": (255, 0, 0),
"green": (0, 255, 0),
"blue": (0, 0, 255)
}
Ensure that the color name you are using matches one of the keys in color_dict
.
Last updated