I can't properly set color of water with google maps api v3.
My RGB color is: #676a59. I've converted it to HSL using this tool: http://www.workwithcolor.com/hsl-color-picker-01.htm. The result is: color: hsl(71, 9%, 38%);
This is the code I use in Javascript to style water.
stylers: [{hue: "#676a59"}, {lightness: 38}, {saturation: 9}, {visibility: "on" }, {gamma: 1.0}]
The problem is that it doesn't work at all. I don't really know what is the reason of that. Can you see something that I'm doing wrong?
Thanks