Have you used one of the rgb expressions? These expressions are built so you can just plug in values representing the amount of red, green and blue to blend to get your desired color.
rgba(r, g, b, a)
rgba255(r, g, b, a)
rgbEx(r, g, b)
rgbEx255(r, g, b)
For these expressions, r is for the red value, b is for the blue value and g is the green. In the 2 expressions not ending in 255, the value should be between 0 and 100. In the 2 expressions ending in 255 the value should be between 0 and 255.
The a is for alpha and should be a number between 0 and 100 where 0 is completely transparent and 100 is completely opaque.