[][src]Function colorskill::color_to_string_4

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

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

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