Why are UIColor hsb values different from the regular hsl values of a color?
For example the color brown is hue: 0, saturation: 59%, luminosity: 41%, but the UIColor values are hue: 0, saturation: 74%, brightness: 65%
The hue is the same, but the saturation and brightness values differ. I need to use hsb initializer of UIColor for my project. Is there a conversion algorithm?