(hex)
| 20148 | # ------------------------ Color processing functions ------------------------ |
| 20149 | |
| 20150 | def _hex_to_hsl(hex): |
| 20151 | r, g, b = _hex_to_rgb(hex) |
| 20152 | return _rgb_to_hsl(r, g, b) |
| 20153 | |
| 20154 | |
| 20155 | def _hex_to_rgb(hex): |
no test coverage detected