Reputation: 598
The square saturation-brightness picker has two gradients:
I'm trying to make this as a circular picker which should look like this:
I tried to draw the circular picker like the square one but I lose the colors around the corner. It looks like this:
So what can I do to make the circular saturation-brightness gradient?
Upvotes: 4
Views: 480
Reputation: 94
You make a full circle of red (#FF0000). Now you draw a piece of a circle (360°/3=120°) with black (#000000) and you set a radial-gradient where the middel of the circle is transparent or red and the outer band is black. Now you do the same for white (#FFFFFF) and you place this next to the black piece. Now you could fade out the edges of the black and white piece.
To make this work the layer with the red circle needs to be the bottom layer.
Sorry for my english
Upvotes: 1