[][src]Function colorskill::color_to_string_3

pub fn color_to_string_3(c: (u8, u8, u8)) -> String

Converts a color tuple into a comma separated string with added parenthesis (0, 0, 0) -> "(0,0,0)" Example:

use colorskill::color_to_string_3;
color_to_string_3((100, 143, 49));