It's a simple formula: percentage=100 * ColorChannel/255
For example if your color in RGB is (0,204, 255), to convert these numbers for "Set color" effect you divide each by 255 and multiply by 100, result: (0, 80, 100)
.
To convert back: ColorChannel=percentage*2.55