def blend_with_as_rgb256()

in colorSchemeTool.py [0:0]


def blend_with_as_rgb256(base_hex_color, blend_with_hex_color, blend_hex_alpha):
    result = hex_to_rgb(color_from_textmate(base_hex_color + blend_hex_alpha, blend_with_hex_color))
    return int(result[0] * 256), int(result[1] * 256), int(result[2] * 256)