Search for color names through HEX, or search for color information through names
Install pycolors-kit
into your python environment, using:
pip install pycolors-kit
After installing, you can use the project as follows:
from pycolors_kit import ColorEx
def test():
color = ColorEx()
print(color.get_name_by_hex('#fe9956'))
print(color.get_color_by_name('acapulco sun'))
if __name__ == '__main__':
test()