palett 0.0.8

ansi color space tool
Documentation
1
2
3
4
5
6
7
use crate::convert::_hsl_rgb::hsl_rgb;
use crate::convert::_rgb_hex::rgb_hex;
use crate::types::HSL;

pub fn hsl_hex(hsl: &HSL) -> String {
    rgb_hex(&hsl_rgb(&hsl))
}