First of all, you're missing some semi-colons. Remember to have a ; at the end of each line.
Second of all, the colors should each range from 0.0 to 1.0
You probably know that each of the four numbers "R G B A" represents Red, Green, Blue, and Alpha (transparency).
So pure red would be:
"1 0 0 1"
(Like you have)
But instead of having "0 9 9 1", you should have something more like "0 0.9 0.9 1" or "0 0.9 0.9 0.1" depending on what you were trying to do.