'hex2RGB' is a simple Python program that converts hexadecimal color codes to RGB color format. I personally use it to use 'Adobe Color' to extract colors and convert them into RGB format.
git clone https://github.com/acariaC/hex2RGB.git
cd hex2RGB
python3 hex2RGB.py
Enter hex colors: #C0FFEE #ABCDEF
[[192, 255, 238], [171, 205, 239]]
- Converts any valid hexadecimal color code to RGB color format
- Handles 6-digit hexadecimal color codes
- Outputs the RGB color code as a tuple of integers
Python 3.5 or higher
This program is licensed under the MIT License. Feel free to use and modify it for your own purposes.