I basically made somekind of gradient, by giving a tile in a grid colours, it looks like this:

Now, I want to invert this, so the light is white, and the surroundings are black, how would I go about doing this? I tried alot, but nothing I did worked.
Here is the code:
foreach (Tile tiles in Tiles)
{
tiles.distance = (mousePos - tiles.pos).Length();
tiles.color = new Color(tiles.distance / size, tiles.distance / size, tiles.distance / size);
}