aboutsummaryrefslogtreecommitdiff
path: root/utils.py
blob: ec402a41c619cff723991e68f71e219b20633d86 (plain)
1
2
3
4
5
6
def rgb_to_hex(rgb_list: list[int]) -> str:
    """
    Converts a list of RGB values to a hex string.
    """
    r, g, b = rgb_list
    return f"#{r:02x}{g:02x}{b:02x}"