Is there a way to convert HSV color arguments to RGB type color arguments using pygame modules in python? I tried the following code, but it returns ridiculous values.
The Hue argument should also vary from 0-1.
import colorsys test_color = colorsys.hsv_to_rgb(359/360.0, 1, 1)