docs: adds module's author, description and references

This commit is contained in:
cicerotcv 2023-10-30 18:45:40 -03:00
parent c493d23dda
commit a62b5e5c97

View File

@ -1,3 +1,13 @@
"""
* Author: Cicero Tiago Carneiro Valentim (https://github.com/cicerotcv)
* Description: Convert hexadecimal (#FF2000) color to RGB (rgb(255, 32, 0)).
References:
https://www.w3schools.com/colors/colors_rgb.asp
https://www.w3schools.com/colors/colors_hexadecimal.asp
"""
def hex_to_rgb(hex_color: str) -> str:
"""
Converts a hexadecimal color code to RGB values.