tlc.helpers.color_helper¶

Color conversion helpers.

Module Contents¶

Classes¶

Class

Description

ColorHelper

Helpers for converting between common color representations.

API¶

class ColorHelper¶

Helpers for converting between common color representations.

static hex_to_rgb_tuple(
hex_color: str,
) tuple[int, int, int]¶

Convert a #RRGGBB (or RRGGBB) hex string to an (R, G, B) tuple of 0-255 ints.

static rgb_tuple_to_hex(
rgb: tuple[int, int, int],
) str¶

Convert an (R, G, B) tuple of 0-255 ints to a #RRGGBB hex string.