Slider not correctly changing colorr of image.,Changing Image Color via Slider isnt working correctly

My Slider Min and Max values are 0 and 255 respectively. however the image changes color as if value is set to 255 at the slightest movement of the slider. instantly changing the color from black to Solid Red
but through Debug.Log i can see that the slider values do range between 0-255 while ingame
{

public GameObject Base;
public GameObject BaseDisplay;
public Slider RSlider, GSlider, BSlider;
void Update ()
{
	BaseDisplay.GetComponent<Image>().color = new Color(RSlider.value,GSlider.value,BSlider.value);
}

}

Colors are instantiated with float values for ARGB from 0 to 1. Divide your slider values by 255.