Extract RGB or 6 digit code from Seaborn palette Extract RGB or 6 digit code from Seaborn palette python python

Extract RGB or 6 digit code from Seaborn palette


If by "6 digit code" you mean a hex code, you can also do:

pal = sns.color_palette(...)pal.as_hex()


The values you are getting are percentages of 255, the max RGB value.Just multiply each triplet of values by 255 (and round off, if you like) to get the RGB values.

for color in color_list:    for value in color:        value *= 255

Then store those in a new list to have your list of RGB values.