//! Color space conversion helpers.
//!
//! Provides convenience functions for working with different color spaces,
//! particularly HSV (Hue, Saturation, Value) which is more intuitive for
//! many LED animations like color wheels and hue rotations.
//!
//! All functions return `palette::Srgb` for direct use with RGB sequences.
use ;
/// Creates an RGB color from HSV (Hue, Saturation, Value) components.
/// Creates an RGB color from hue only (full saturation and value).