The colour values you can use are documented in the class variables section of the Color manual page.
The values you are using in your calculations are all integers and so integer division will be used. The result of all those divisions is zero so the colour will appear black. You just need to write 255.0 or 255f in C# to get the right values.