[][src]Function colorskill::make_color_lighter

pub fn make_color_lighter(t: (u8, u8, u8), amount: f64) -> (u8, u8, u8)

Wrapper function to make a color lighter Receives a tuple and the amount to make lighter Example:

use colorskill::make_color_lighter;
make_color_lighter((43, 56, 84), 20.0);