pub type ColorHash { ColorHash( saturations: dict.Dict(Int, Float), lightnesses: dict.Dict(Int, Float), hue_ranges: dict.Dict(Int, #(Float, Float)), ) }
ColorHash( saturations: dict.Dict(Int, Float), lightnesses: dict.Dict(Int, Float), hue_ranges: dict.Dict(Int, #(Float, Float)), )
pub fn new() -> ColorHash
pub fn to_hex(color_hash: ColorHash, input: String) -> String
pub fn to_hsl( color_hash: ColorHash, input: String, ) -> #(Float, Float, Float)
pub fn to_rgb( color_hash: ColorHash, input: String, ) -> #(Int, Int, Int)
pub fn with_hue_ranges( color_hash: ColorHash, hue_ranges: List(#(Float, Float)), ) -> ColorHash
pub fn with_lightnesses( color_hash: ColorHash, lightnesses: List(Float), ) -> ColorHash
pub fn with_saturations( color_hash: ColorHash, saturations: List(Float), ) -> ColorHash