Hued Package Documentation
Package documentation for Hued, our Python package for color properties, manipulation, blending, and palettes.
Changelog
Installation
pip install huedExample Usage
Color Properties
from hued.colors import ColorManager
# Initialize the color manager
color_manager = ColorManager()
# Generate a random color
colorBlue = color_manager.get_color_by_name("Blue");
print("Blue Hex:", colorBlue.get("Hex"));Last updated