
Company News
Socket Has Acquired Secure Annex
Socket has acquired Secure Annex to expand extension security across browsers, IDEs, and AI tools.
colorhash
Advanced tools
ColorHash is a lightweight Python library for generating deterministic colors from any object.
By calculating a color value based on an object's hash, it ensures consistent results: the same input will always yield the same color. This is particularly useful for UI elements like user avatars or category labels where visual consistency is required.
This module is a port of the original color-hash Javascript library.
Key features:
>>> from colorhash import ColorHash
>>> c = ColorHash('Hello World')
>>> c.hsl
(131, 0.65, 0.5)
>>> c.rgb
(45, 210, 75)
>>> c.hex
'#2dd24b'
Its hosted on PyPI.
pip install colorhash
| code | hex | color |
|---|---|---|
ColorHash('hey') | #782d86 | ![]() |
ColorHash('oh') | #d29d79 | ![]() |
ColorHash('boi') | #6ce072 | ![]() |
You can influence every aspect of final color. Default values are following:
ColorHash(
obj: Any,
lightness: Sequence[float] = (0.35, 0.5, 0.65), # picks deterministically one
saturation: Sequence[float] = (0.35, 0.5, 0.65), # picks deterministically one
min_h: Optional[int] = None, # hue, min 0
max_h: Optional[int] = None, # hue, max 360
)
But be careful, setting tight conditions may result in very similar colors. See example tables.
You can fix lightness or saturation to single value(s) by using sequence with 1 element (eg. [0.5]). Providing more values enables wider variety of options for ColorHash to choose from (deterministically).
Note: If you provide a single float instead of a sequence, it will be automatically wrapped in a list for convenience.
| code | hex | color |
|---|---|---|
ColorHash('hey', lightness=[0.55]) | #b453c6 | ![]() |
ColorHash('hey', lightness=[0.75]) | #d69fdf | ![]() |
ColorHash('hey', lightness=[0.95]) | #f7ecf9 | ![]() |
ColorHash('hey', saturation=[0.15]) | #8d6c93 | ![]() |
ColorHash('hey', saturation=[0.55]) | #b139c6 | ![]() |
ColorHash('hey', saturation=[0.95]) | #d406f9 | ![]() |
ColorHash('hey', lightness=[0.95], saturation=[0.95]) | #fbe6fe | ![]() |
ColorHash('oh', lightness=[0.95], saturation=[0.95]) | #fef0e6 | ![]() |
ColorHash('boi', lightness=[0.95], saturation=[0.95]) | #e6fee7 | ![]() |
You can set hue range or even fix it by setting min_h = max_h.
If you set only min_h or max_h, the other will be defaulted to 0 or 360 respectively.
| code | hex | color |
|---|---|---|
ColorHash('hey', min_h=150) | #2d5886 | ![]() |
ColorHash('hey', min_h=300) | #862d6c | ![]() |
ColorHash('hey', max_h=150) | #866e2d | ![]() |
ColorHash('hey', min_h=150, max_h=360) | #2d5886 | ![]() |
ColorHash('hey', min_h=150, max_h=150) # fixed hue | #2d8659 | ![]() |
Or you can let ColorHash decide between combination of many lightness and saturation options (mind min_h and max_h are equal in this example).
| code | hex | color |
|---|---|---|
ColorHash('stick', min_h=65, max_h=65, saturation=[x/10 for x in range(1, 10)], lightness=[x/10 for x in range(1, 10)]) | #869108 | ![]() |
ColorHash('with', min_h=65, max_h=65, saturation=[x/10 for x in range(1, 10)], lightness=[x/10 for x in range(1, 10)]) | #eef5a3 | ![]() |
ColorHash('one', min_h=65, max_h=65, saturation=[x/10 for x in range(1, 10)], lightness=[x/10 for x in range(1, 10)]) | #ddeb47 | ![]() |
Finally some bad examples. When you set too strict rules, colors may be almost identical.
| code | hex | color |
|---|---|---|
ColorHash('lets', lightness=[0.95], saturation=[0.95], min_h=300) | #fee6f8 | ![]() |
ColorHash('break', lightness=[0.95], saturation=[0.95], min_h=300) | #fee6fb | ![]() |
ColorHash('it', lightness=[0.95], saturation=[0.95], min_h=300) | #fee6fa | ![]() |
ColorHash('here', min_h=150, max_h=150) | #6ce0a6 | ![]() |
ColorHash('goes', min_h=150, max_h=150) | #79d2a6 | ![]() |
ColorHash('color', min_h=150, max_h=150) | #6ce0a6 | ![]() |
min_h and max_h are providedpython3.15 (tested on 3.15.0a6)python3.14uvpython3.7 is still supported and shall work, but not tested any morehsl2rgb()importlib-metadata importpy.typed to support type annotations (#4)poetrytoxpip-tools (manage dependencies)hatch (build & test)twine (publish)python3.11python3.6 (downloads from PyPI are under 1%)python3.6python3.6+python2.xcrc32_hash function and set default hashfunc to that. It's not
fully backwards-compatible, but I don't want to bump the version a lot for
not doing my research.Copyright (c) 2016 Felix Krull f_krull@gmx.de
This is a port of the 'color-hash' Javascript library which is:
Copyright (c) 2015 Zeno Zeng
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
FAQs
Generate color based on any object
We found that colorhash demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Socket has acquired Secure Annex to expand extension security across browsers, IDEs, and AI tools.

Research
/Security News
Socket is tracking cloned Open VSX extensions tied to GlassWorm, with several updated from benign-looking sleepers into malware delivery vehicles.

Product
Reachability analysis for PHP is now available in experimental, helping teams identify which vulnerabilities are actually exploitable.