Hued Package Documentation

Package documentation for Hued, our Python package for color properties, manipulation, blending, and palettes.

Changelog

  • 1.0.6 (Latest): Added export functions in ColorPalette and a new gradient generation function.

  • 1.0.5: Added XYZ / CIE 1931 XYZ color format to conversions.py.

  • 1.0.4: Added 500+ new names to colors.py.

  • 1.0.3: Updated PYPI project description.

  • 1.0.1 - 1.0.2: Created new functions, including color blending, conversion methods between common types, and new color schemes under the ColorPalette class.

  • 1.0.0: Initial release.

Installation

You can install Hued using PyPi. Please make sure that you are using Python 3.6 or later before installing Hued:

pip install hued

Example 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

Was this helpful?