Skip to main content

Add your description here

Project description

Material Color Utilities

Material Color Utilities is a Python package for working with Material Design color systems. This package includes utilities for generating themes from colors or images, extracting prominent colors from images, converting colors, and calculating contrast ratios.


Installation

Install the package directly from pip:

pip install material-color-utilities

Features

  • Theming
    • Generate Material Design themes from source colors or images.
  • Image Processing
    • Extract prominent colors from images.
  • Contrast Ratio
    • Calculate contrast ratios between colors.

Usage

Complete API documentation here: API docs.

Importing the Library

from material_color_utilities import (
    CustomColor,
    Theme,
    Variant,
    argb_from_hex,
    hex_from_argb,
    prominent_colors_from_image,
    theme_from_color,
    theme_from_image,
    get_contrast_ratio
)

Generate a Theme

From a Source Color

theme = theme_from_color("#FC03A3", 3.0, Variant.EXPRESSIVE)
# now apply the theme somewhere
# Example, assuming dark theme:
button.color = theme.schemes.dark.primary
button.text_color = theme.schemes.dark.on_primary
background.color = theme.schemes.dark.surface_container
text_paragraph.color = theme.schemes.dark.on_surface

From an Image

This package will handle converting to RGBA and resizing for performance, so any PIL image can be passed.

from PIL import Image

image = Image.open("path/to/image.jpg")
# You can *optionally* pass a list of custom colors to generate palettes that harmonize with the source color.
custom_colors = [CustomColor("#4285F4", "Google Blue", True)]
theme = theme_from_image(image, 4.0, Variant.CONTENT, custom_colors)

Theme to dict

A Theme object can be converted to a dict, an example theme dict can be found here.

theme = theme_from_color("#FF0000")
theme_dict = theme.dict()

Extract Prominent Colors from an Image

This package will handle converting to RGBA and resizing for performance, so any PIL image can be passed.

from PIL import Image

image = Image.open("path/to/image.jpg")
colors = prominent_colors_from_image(image, 5)
print(colors)  # Outputs a list of up to 5 prominent colors

Calculate Contrast Ratio

ratio = get_contrast_ratio("#000000", "#FFFFFF")
print(ratio)  # Outputs: 21.0

Convert Colors

ARGB from HEX

argb = argb_from_hex("#4285f4")
print(argb)  # Outputs: 4286017588 (0xFF4285F4)

HEX from ARGB

hex_color = hex_from_argb(0xFF4285F4)
print(hex_color)  # Outputs: "#4285f4"

Testing

To run the tests, install uv, and execute:

uv sync --dev # install packages
uv run pytest tests

License

This project is "forked" from material-foundation/material-color-utilities/.

This project is licensed under the Apache License 2.0. See the LICENSE file for details.


Links

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

material_color_utilities-0.1.1.tar.gz (5.4 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

material_color_utilities-0.1.1-pp310-pypy310_pp73-win_amd64.whl (237.6 kB view details)

Uploaded PyPyWindows x86-64

material_color_utilities-0.1.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl (258.4 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

material_color_utilities-0.1.1-cp313-cp313-win_amd64.whl (240.0 kB view details)

Uploaded CPython 3.13Windows x86-64

material_color_utilities-0.1.1-cp313-cp313-win32.whl (206.5 kB view details)

Uploaded CPython 3.13Windows x86

material_color_utilities-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

material_color_utilities-0.1.1-cp313-cp313-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

material_color_utilities-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (322.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

material_color_utilities-0.1.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (352.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

material_color_utilities-0.1.1-cp313-cp313-macosx_11_0_arm64.whl (260.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

material_color_utilities-0.1.1-cp312-cp312-win_amd64.whl (239.9 kB view details)

Uploaded CPython 3.12Windows x86-64

material_color_utilities-0.1.1-cp312-cp312-win32.whl (206.5 kB view details)

Uploaded CPython 3.12Windows x86

material_color_utilities-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

material_color_utilities-0.1.1-cp312-cp312-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

material_color_utilities-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (322.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

material_color_utilities-0.1.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (351.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

material_color_utilities-0.1.1-cp312-cp312-macosx_11_0_arm64.whl (260.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

material_color_utilities-0.1.1-cp311-cp311-win_amd64.whl (238.7 kB view details)

Uploaded CPython 3.11Windows x86-64

material_color_utilities-0.1.1-cp311-cp311-win32.whl (206.8 kB view details)

Uploaded CPython 3.11Windows x86

material_color_utilities-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

material_color_utilities-0.1.1-cp311-cp311-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

material_color_utilities-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (323.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

material_color_utilities-0.1.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (352.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

material_color_utilities-0.1.1-cp311-cp311-macosx_11_0_arm64.whl (259.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

material_color_utilities-0.1.1-cp310-cp310-win_amd64.whl (237.5 kB view details)

Uploaded CPython 3.10Windows x86-64

material_color_utilities-0.1.1-cp310-cp310-win32.whl (206.3 kB view details)

Uploaded CPython 3.10Windows x86

material_color_utilities-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

material_color_utilities-0.1.1-cp310-cp310-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

material_color_utilities-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (322.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

material_color_utilities-0.1.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (352.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

material_color_utilities-0.1.1-cp310-cp310-macosx_11_0_arm64.whl (258.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

Details for the file material_color_utilities-0.1.1.tar.gz.

File metadata

  • Download URL: material_color_utilities-0.1.1.tar.gz
  • Upload date:
  • Size: 5.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for material_color_utilities-0.1.1.tar.gz
Algorithm Hash digest
SHA256 8324a7d24985a685abab3171fdac4342673fb20018d1592b0105d45542fda490
MD5 f6eac28a6b2c9545639aa066a0f5be15
BLAKE2b-256 7c09132d8f89b5bc98de963f84b225f991fb752fedf906a04ee4bb51801280d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.1.1.tar.gz:

Publisher: build_wheels.yml on RuurdBijlsma/material-color-utilities

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file material_color_utilities-0.1.1-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.1.1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 0d842fc67af28f66f50ebec036a5f2e98021900a4eb0616e150c8180c06ce39c
MD5 6392da5397cbd482becffd32e07523af
BLAKE2b-256 c8588e3a5f223327759786d3c3b7b239395ef857cbd5ef0ecbc641946762208a

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.1.1-pp310-pypy310_pp73-win_amd64.whl:

Publisher: build_wheels.yml on RuurdBijlsma/material-color-utilities

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file material_color_utilities-0.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a43b607c566ce12c05b3d5419834673675800ea7eb8b93a7ac8be93686a68efe
MD5 4d31f3319114c84d7e7e9b58fa0ad81a
BLAKE2b-256 0c698452e133fadb9fe6f01a59271756621a2302dcb314fddb5ea072c605f10f

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on RuurdBijlsma/material-color-utilities

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file material_color_utilities-0.1.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.1.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0e87593e50d489a27ab140e7fca928f0b2fb43f5e27c07f8543a2d52a4e8545c
MD5 c6b8076ba3a643342ac705e3e8a6f6dd
BLAKE2b-256 1a6e350821deb2a406f6668912dc32dbd031268ce15b4ee975d35557c42515b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.1.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build_wheels.yml on RuurdBijlsma/material-color-utilities

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file material_color_utilities-0.1.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.1.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f35ce31d21d849437fb5c0984a3de74b936ac4f9fea39b269d07c06bf40712eb
MD5 148edeb57b262a3a16ceb1e5134df91c
BLAKE2b-256 94607fd0bca8509eef67633f29ec9ce5571df856ae78d18047d62df2385d09c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.1.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on RuurdBijlsma/material-color-utilities

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file material_color_utilities-0.1.1-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.1.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 86beb29dfaf536928427046aaa088bb98fcd4a3180521e4c2902733e99e4245e
MD5 fa648fb67c6a57e53f98f2495f75a3cb
BLAKE2b-256 98a75e7097b5c097234313a79ea737c1003d00d9edcc50d1daf73c4282a96f1c

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.1.1-cp313-cp313-win_amd64.whl:

Publisher: build_wheels.yml on RuurdBijlsma/material-color-utilities

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file material_color_utilities-0.1.1-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.1.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 872a02f78da57da041c90fb52822c75647f38eda1b18aae1bc47a79956aee2ed
MD5 37a3b89c021a1cd26bcecfc67aa9a32b
BLAKE2b-256 0b61933290b003a3f93a39e57cfd0e4ecee4acf6ff009b96eb2bf7ce074c4206

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.1.1-cp313-cp313-win32.whl:

Publisher: build_wheels.yml on RuurdBijlsma/material-color-utilities

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file material_color_utilities-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 77eacd1ed687eaa07aa0eb7474ec2d312f69ec9fe38f0027f913f8a3e0851540
MD5 1a4b6e40aeed8278da64bfcd88c23121
BLAKE2b-256 4ad693b04dc220f39b41acc91c483469a2c9235347bed38dfcf71e86d50a89ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on RuurdBijlsma/material-color-utilities

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file material_color_utilities-0.1.1-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.1.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 55a5baa010795da3037cf8ccaa0f9697c060d95a45b57805913d3c976b634c46
MD5 0304307ab84446c86491a64c90465e75
BLAKE2b-256 1565d766f5c5271d9850f8d150133d3d4cd1e691b9ec6da389d28456331bf5f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.1.1-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: build_wheels.yml on RuurdBijlsma/material-color-utilities

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file material_color_utilities-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5b65de558f67e8302e7f262f254bdd3dfcbde728d0186adecafe831ddc0cb905
MD5 80d874ead86168fb01b726b45b3419ea
BLAKE2b-256 6a5833126d893f7e5341fa586d00c9f37b9b7c86053c8f27f71839e65884ffd1

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on RuurdBijlsma/material-color-utilities

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file material_color_utilities-0.1.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.1.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3fe4ec0bb35cb15f7042aa9f09134bdc986208864ff74f4360513a97150a4089
MD5 110c9ceec5959eca4ab3071a1e946dbd
BLAKE2b-256 7342a32ff289d10f253b36b91515ae3a2e6131b493b3bcf8e6d0a166520bebc5

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.1.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build_wheels.yml on RuurdBijlsma/material-color-utilities

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file material_color_utilities-0.1.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.1.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5b4ee135b0157f6f06ca8f7346dddbaa6e8a2b400dc847060b1990f5e7365d85
MD5 d55861f92603a89a749574deebdb6c2e
BLAKE2b-256 18dcbed7a85466308fa87d021258f1467fda6d509d3f3cf93f967d6aa4c4eadb

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.1.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on RuurdBijlsma/material-color-utilities

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file material_color_utilities-0.1.1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.1.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 837578b510cec914e8137dff7a986529d17b50c1e5d069764c5240f8df742fad
MD5 f2e9e9ed532d0c3c4ca9a6d36e2b4b8c
BLAKE2b-256 1ffeba5d74983054e41f80736417abc1b029f22a1789c4b30ee4c0b78f6942cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.1.1-cp312-cp312-win_amd64.whl:

Publisher: build_wheels.yml on RuurdBijlsma/material-color-utilities

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file material_color_utilities-0.1.1-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.1.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 afeee65b77e86c7b08d4a47d374de4be58730afb0df01a11d4e3c2bc221a8c53
MD5 2766186ef7098297e6ecf987cb4a80e8
BLAKE2b-256 aa048f7cec6d5877d257a6c3e3025df51b7066e641c82f78592c983c8df4f504

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.1.1-cp312-cp312-win32.whl:

Publisher: build_wheels.yml on RuurdBijlsma/material-color-utilities

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file material_color_utilities-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 38397b45ccdb7e9d829660d3ad676602500d0a9443b2a625c5a6bb56593ac48a
MD5 211db7ec278c32995ce35506269e7fc7
BLAKE2b-256 9bd08acc3380e7c2aad843eed8b1037592957ddfd5a416870458bc79e448a30b

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on RuurdBijlsma/material-color-utilities

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file material_color_utilities-0.1.1-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.1.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 11703cccb8e2099a4a86ef4ddb9e4d04e3821b9aecd569570159f86d3a1a71cd
MD5 0c100cabb8d0b2a82723b21727177976
BLAKE2b-256 43427e33e22e9766a03c7c65ec884c3b125a14a1150e6f7ba946304db9dc6e91

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.1.1-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: build_wheels.yml on RuurdBijlsma/material-color-utilities

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file material_color_utilities-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 92be38ebc967ed036d67787021e46b2d65a6819b7dbb8262d059dd135c301450
MD5 bf0c2ae37192ae1c96b052697c6b49bc
BLAKE2b-256 a9cc12cc3103bb453d9ec67cd9c11e1f6c59aced529148e73439d8f91843e9ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on RuurdBijlsma/material-color-utilities

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file material_color_utilities-0.1.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.1.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 05656bccb02e60032955c2707dec2c7ef2c865ec30a61b256b923680c81b660e
MD5 bc609f5efc942defeaef1c12591f393a
BLAKE2b-256 fdca60b4dcd8a97aeb63aca31d1b1c14d05ef9648596279c5ff8d1ade77cd933

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.1.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build_wheels.yml on RuurdBijlsma/material-color-utilities

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file material_color_utilities-0.1.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 96ad987517e4baabccd523d46eda4efc3a1a151ce52b8c83a2bfd213f863c2b5
MD5 b541d435c0ee617f4be6f9704d48809c
BLAKE2b-256 789897feb907c59ed561fcf58384fc0f6fa5e46206482c487c8b4772054bffe0

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.1.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on RuurdBijlsma/material-color-utilities

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file material_color_utilities-0.1.1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.1.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3dae945cc7d5072d85d10beac712b47b0f0056a8ea82ff33e517fa18fa320072
MD5 f736651fc1503b48b0b50dac65df5d24
BLAKE2b-256 a86010fba6390175d4dc2a96306d0b157e51d6eb8e661ecd0c8381f1c809b20a

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.1.1-cp311-cp311-win_amd64.whl:

Publisher: build_wheels.yml on RuurdBijlsma/material-color-utilities

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file material_color_utilities-0.1.1-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.1.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 1c8f4747014da418b7344a06de4afb2e27c82625fab2f808eaba0b71e74f757f
MD5 b99ba9ca6ce622446accd1daff63d9b3
BLAKE2b-256 14eab9e380e51833ae8dbee41cb888de47d9a662ce7f42cacd34556f3c25b71d

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.1.1-cp311-cp311-win32.whl:

Publisher: build_wheels.yml on RuurdBijlsma/material-color-utilities

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file material_color_utilities-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ec4e2d62861cb423d743a5cd829ebcec1e5f700bb4e89c575b20a71be7e49d2f
MD5 d2035db49fdfe1dc2a0b2cf035669b07
BLAKE2b-256 922f796c912629b6aa9311224e85b31e0bcd4c8355d26428b85e867769c09a7d

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on RuurdBijlsma/material-color-utilities

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file material_color_utilities-0.1.1-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.1.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e2e15994a1ff6b94ae89cd8ef09c8e9990b64d080809949537138d5e65a3bdb4
MD5 25744fbd6bdb9dd986bf34896169eebb
BLAKE2b-256 9db66eb8ea44ebe73a17ef2b5b7ced85e5ab3d37272d6836d7f1945a6167ae65

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.1.1-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: build_wheels.yml on RuurdBijlsma/material-color-utilities

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file material_color_utilities-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3abcca6a6fee02dba1864bb12d449fe4792d72b80490b0ce8466aac9ae9223d1
MD5 1eaf49d5d2d1981186db66d9fc5ee80e
BLAKE2b-256 5b366114d5899bdc260ff0d7291fe2fdd02d3c4fc275a07a1a3dcdf5c4c9e3ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on RuurdBijlsma/material-color-utilities

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file material_color_utilities-0.1.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.1.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 17e927a1ab2d26475f3ef7330e1350b840aba61ec9f621d780de2e1d7e02f6bb
MD5 c4b0201d3aa989d91efbf8575c13b7ba
BLAKE2b-256 21ffc817c6d4678a480404dda0d5001f766e5a5ea7d7a8273fc2a70291b2fcf9

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.1.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build_wheels.yml on RuurdBijlsma/material-color-utilities

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file material_color_utilities-0.1.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 18da476dc3f306428a701833e05743e7f568c1240d4d45aa2c1149e6f67b9ea6
MD5 67e40dec070247952caddf03ad314f5c
BLAKE2b-256 e03ad8b608e50a824b04876dd621599a5fc9649cb89e98b96ad6a8c12ea7d411

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.1.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on RuurdBijlsma/material-color-utilities

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file material_color_utilities-0.1.1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.1.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c3179982e144533b905d919575536e8cd7f3c1e2cb5dfb8e1260cd5d2562b01e
MD5 294baf39f3c6c49f434245c018280f4f
BLAKE2b-256 1262d90e7f0f6c80458233704113149eae10def6432c7b53cbffccd892d72884

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.1.1-cp310-cp310-win_amd64.whl:

Publisher: build_wheels.yml on RuurdBijlsma/material-color-utilities

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file material_color_utilities-0.1.1-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.1.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 fbead50139bea080e869001f351b5f92b8d6aa78c19d5ce802c4d8bffa170043
MD5 04fd5c1bf3c54dfb45ddabc939cc801a
BLAKE2b-256 5ba879487ebaddb278aa090304cdd98986132dc3e4b1ad3ba2de4e81f67b3426

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.1.1-cp310-cp310-win32.whl:

Publisher: build_wheels.yml on RuurdBijlsma/material-color-utilities

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file material_color_utilities-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a503fce3fdfaaf8bd3d165c892aedda80959d72986a96800066e7aea847fc3ea
MD5 e63e6ad3bdcffcc1f14b6164639c3f0b
BLAKE2b-256 15323de4dc76c46e51fa279de97aab73a23c5ebed0d1a91dd12f0d7e34c1c3e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on RuurdBijlsma/material-color-utilities

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file material_color_utilities-0.1.1-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.1.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bc075bf03d9704f4a83ac7be5792e121f152785ccd02432dfbc38d0b1b64d9ea
MD5 587812d40430d1a9572398ad09d534f6
BLAKE2b-256 cd6f1f5724dc2e9edd06122e039daf70ff86d5b92f498d3c4da46fec925ae48a

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.1.1-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: build_wheels.yml on RuurdBijlsma/material-color-utilities

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file material_color_utilities-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c01fa99c6214e384fac2a8a4d71e66aedb1b3393ae096bc7273a16fd88507e96
MD5 75ee35b69577afd8a77c5585ef71cd84
BLAKE2b-256 c7002ff7d50dd73b068e2a15ad9f974a39db5cd3c92de175721a93d06e41036e

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on RuurdBijlsma/material-color-utilities

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file material_color_utilities-0.1.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.1.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 db46302d63636b6527c916525fa610dc2a1a6f02a76bcd45d54444a06d782edc
MD5 6e36e3880c6254e40ee622777a6dbb19
BLAKE2b-256 93d60dfeb61539113aaeec3457b426f256b851f02ee01ffe9d38ef7136a497ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.1.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build_wheels.yml on RuurdBijlsma/material-color-utilities

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file material_color_utilities-0.1.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.1.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f6e82fac70e52b76783b375b2845df1b3210750f8c05d3e9d5c0d33ed909a894
MD5 6fe0b87660acf075d71a7c0c21c00f56
BLAKE2b-256 a0f47412aa5f63385c92403640b73ab715c8e69313fd5a12eed121a5ece03dcf

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.1.1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on RuurdBijlsma/material-color-utilities

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page