Color Convert 1.0 | GitLocker.com Product

color-convert 1.0

Last updated:

0 purchases

color-convert 1.0 Image
color-convert 1.0 Images

Free

Languages

Categories

Add to Cart

Description:

colorconvert 1.0

Hexadecimal to rgb
from color_convert import color

rgb = color.hex_to_rgb('#fff000')
print(rgb) # rgb(255,240,0)
Hexadecimal to rgba
from color_convert import color

rgba = color.hex_to_rgba('#fff000')
print(rgba) # rgba(255,240,0,1)
Decimal to hexadecimal
from color_convert import color

hex = color.ten_to_hex(16711680)
print(hex) # #ff0000
Decimal to rgb
from color_convert import color

hex_rgb = color.ten_to_rgb(16711680)
print(hex_rgb) # rgba(255,0,0,1)

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product: (if this is empty don't purchase this product)

Customer Reviews

There are no reviews.