| 1 | import { HslColor, HsvColor, Input, RgbColor } from "../src/types"; |
| 2 | |
| 3 | interface Fixture { |
| 4 | hex: string; |
| 5 | rgb: RgbColor; |
| 6 | hsl: HslColor; |
| 7 | hsv: HsvColor; |
| 8 | } |
| 9 | |
| 10 | // https://www.w3schools.com/colors/colors_converter.asp |
| 11 | // https://www.rapidtables.com/convert/color/rgb-to-hsv.html |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…