1use palette::{FromColor, Hsv, Srgb}; 2 3pub fn srgbu8_to_hsv(input: Srgb<u8>) -> Hsv { 4 Hsv::from_color(input.into_format()) 5}