Skip to main content

Theme color library for Material You.

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,
    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

How to publish a release

  • Push to main
  • Create release on GitHub
  • Wait 30 minutes

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.2.3.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.2.3-pp310-pypy310_pp73-win_amd64.whl (247.4 kB view details)

Uploaded PyPyWindows x86-64

material_color_utilities-0.2.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl (265.4 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

material_color_utilities-0.2.3-cp313-cp313-win_amd64.whl (250.0 kB view details)

Uploaded CPython 3.13Windows x86-64

material_color_utilities-0.2.3-cp313-cp313-win32.whl (217.5 kB view details)

Uploaded CPython 3.13Windows x86

material_color_utilities-0.2.3-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.2.3-cp313-cp313-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

material_color_utilities-0.2.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (329.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

material_color_utilities-0.2.3-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (359.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

material_color_utilities-0.2.3-cp313-cp313-macosx_11_0_arm64.whl (267.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

material_color_utilities-0.2.3-cp312-cp312-win_amd64.whl (250.0 kB view details)

Uploaded CPython 3.12Windows x86-64

material_color_utilities-0.2.3-cp312-cp312-win32.whl (217.5 kB view details)

Uploaded CPython 3.12Windows x86

material_color_utilities-0.2.3-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.2.3-cp312-cp312-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

material_color_utilities-0.2.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (329.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

material_color_utilities-0.2.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (358.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

material_color_utilities-0.2.3-cp312-cp312-macosx_11_0_arm64.whl (267.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

material_color_utilities-0.2.3-cp311-cp311-win_amd64.whl (247.2 kB view details)

Uploaded CPython 3.11Windows x86-64

material_color_utilities-0.2.3-cp311-cp311-win32.whl (217.6 kB view details)

Uploaded CPython 3.11Windows x86

material_color_utilities-0.2.3-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.2.3-cp311-cp311-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

material_color_utilities-0.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (330.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

material_color_utilities-0.2.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (359.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

material_color_utilities-0.2.3-cp311-cp311-macosx_11_0_arm64.whl (266.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

material_color_utilities-0.2.3-cp310-cp310-win_amd64.whl (247.3 kB view details)

Uploaded CPython 3.10Windows x86-64

material_color_utilities-0.2.3-cp310-cp310-win32.whl (217.1 kB view details)

Uploaded CPython 3.10Windows x86

material_color_utilities-0.2.3-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.2.3-cp310-cp310-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

material_color_utilities-0.2.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (329.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

material_color_utilities-0.2.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (358.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

material_color_utilities-0.2.3-cp310-cp310-macosx_11_0_arm64.whl (265.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for material_color_utilities-0.2.3.tar.gz
Algorithm Hash digest
SHA256 7430854e6459ac08dfa8d93fcf497352971bc3a39ecae076be8c956ae160012e
MD5 d20bfa599c5d1bc5577dda5889feee3e
BLAKE2b-256 ada152eb6208e28a484c0997cc753788a4ae2520ac30e14b3a62542179437005

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.3.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.2.3-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.3-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 8dad26679304e0d1d64979b58421ae8f0b29e0da89fd6a5e0a77d859ca11c39f
MD5 ed72eff2344f56ca53bfad60b9981346
BLAKE2b-256 c0c62dd1351e4a861f4603a598d2dedd79e2bda6ab29964d03b0832e952d52ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.3-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.2.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c4cc70405ad2d3107c3568b3c5a9ef15e37e50947d34f7bc14f8ba66a55c3036
MD5 7ab0fe0fd02da2077e57bac9ab211312
BLAKE2b-256 e225f9b10fef15084976116edd863cefbdefe1ec6bf8bbb64a7b9749267cc363

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.3-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.2.3-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.3-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 38013c710a24e7961a44a5eab3217c6846397153a8982ecd5ce740a6c653491c
MD5 8227c1ad25e3099a8eac85456141716f
BLAKE2b-256 9c161bf71990d988c1003101246fe6906f21192ca1a86135b44527a191594ea6

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.3-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.2.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ba60c180c189be5e9244e2920c49f7cb79e687822e41f9c81e7a50bc71a6e1c6
MD5 850920f59eb116e3e352c796c2ff7eb7
BLAKE2b-256 073c8bab1c0189ff8ccdf067c0d02a4117b88da610e0ee5b8321565c0feaa3ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.3-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.2.3-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 119a951949ad1cafa7eafbfdbe262eb90e1dcc788bc8bf9506b75450d3424990
MD5 f741b7886d33728336fc9e4480246bf6
BLAKE2b-256 7d0930ae47a083b313a42ad5488afc3fba1c34fd94acaf1b89c14e605b6e94cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.3-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.2.3-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 13f0c48fa140565ef538d722e07719aa2003e9359efab05defba744ea5f2cb7a
MD5 20fd55e4e0a56910983a8aba8a43c673
BLAKE2b-256 9db47387a3982f74e95dc330bb5d5f8e3cfa0a937796ccbe7de6682f36944c49

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.3-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.2.3-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 48f85fbeee6c91f705b9a2010255ef87decd645ce72dd270195b1faf08b8f872
MD5 35dc40a105461ed3633cb639dcdbd1e2
BLAKE2b-256 174b7adac2790f562b873a7b2acc4f0e80dedfc67b65a03b3b701701ddf2625e

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.3-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.2.3-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.3-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fc1836fe68b2afa7e6d5005c91c91608871884638072b6afef099408220e223a
MD5 7d4f094d35df215c09ba769ba199c6ce
BLAKE2b-256 e51562927ded6f8a8b3125add2fc0027b5fe3e9fde3fc378f1d16c58047fed66

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.3-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.2.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ad68e0d773621b31f4cfd84a51489d48775aab322e5993f55ebd3e9655820ce7
MD5 647d972cdc1cf48b8cd759db58044014
BLAKE2b-256 ea8e903e41e68cbbb5f289a202dd3efdeeddd8eb86223103fc40dc6a67aa1f81

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.3-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.2.3-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.3-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 666124e675a32f44d2bf83cdddc92e8506cf0108f57bb0627febd7d6960a513a
MD5 8bd2d41af3480fdab031361d4623f9a0
BLAKE2b-256 3da437854e6a6df8a46311fd51f004a961316ae28e75960f83a82f4989a16548

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.3-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.2.3-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d7068299ff3e3cfaee09a607a9a0ff20637a0f8d4f1813a3a8f65e8bd34c6382
MD5 6a9619eac438ac1980fd3e3dab7282a4
BLAKE2b-256 65ed6c4817c12581bdda3176a2828a5060b53610281b90c0bac01a21fc332bd6

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.3-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.2.3-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e7f49b7a9974c06c733bde169fb55e7e9525502974359a3297c0ef9686b8d8b2
MD5 855afecde8b3bf41080565f79e06935b
BLAKE2b-256 dc2a0731da3700ee6b007fc7c7f518593c328645f6e44a71213ba20bc4cc4a0d

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.3-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.2.3-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 8a1abaa84a98f0c2922b74f8148a1e232232cdcf33b3edf63d51fcd3952b5512
MD5 4ab87ee2e51c161e1ba930ac3445e298
BLAKE2b-256 5c00a865e7b0e278eb730ae722eb4b03581aebf5ca5ebb5be5b29ba5e5c322fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.3-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.2.3-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8cd37817e9554f2b443935c5c69b0e49de2f01bb8d6f3ac4e5b84e71d91ab6a2
MD5 14772a0a8767885c5c4a776fb0eff966
BLAKE2b-256 97f9975766d9386e724912a193e7291e14d43285112660d89d0f3b1abb5f1fae

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.3-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.2.3-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1c096c4b3a6892bb2ce57fb13d6d161e04d5c9a2d5ccdadeb2e16c2db7c33482
MD5 1822cb4588aa0acd9c9463a665d82cda
BLAKE2b-256 01f9cb4d54e4c8a0f71be06994e9d69605163b639e574893fd072ccf5a8cbf47

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.3-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.2.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fc3da71d93eaac1d7c0461724a6f6ec3180fdde36da2ee24047f75d2b162cf54
MD5 4a2a30f8a3523bb622d0c6dc74ea2b29
BLAKE2b-256 d103ae8def048230af4749ee3df3be507ed014a63a5c46d7b91758055402dce1

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.3-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.2.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 16bc0c63e9268fd9761e928c94d3b34bf07e172e7f7a746ea75a6cad6b4c2310
MD5 184658f3843d5f4a889631c43ac05a22
BLAKE2b-256 b811d09c4c9a2badd3a51d171240523017ec66378be0a4484773dda3952995b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.3-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.2.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 98771449ae75b154e7da400b1702ef17a6607f7f7714d92df5f466dfa0d315e0
MD5 c428917dd676339de79fcca111d23074
BLAKE2b-256 722a19f16a92afd140dedf42858b5af05d7d9d831ce00b383158dfd0d4f0feaa

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.3-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.2.3-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 fd533b17a9deaf68b4db6edd87692557793c30ceb4f10d3d11180fc65df757a1
MD5 9f60eef2adc5c686a1284e2984082d34
BLAKE2b-256 ad9902e2558850bbb2f41fb845317efbee069ff33eb2269744a45e6fbdfc8f74

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.3-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.2.3-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 79f4003173466253431f36a221bc89506f154c7b120f03030fa39cf5f190dd4f
MD5 90b0513e30b0d25486b01b5054716d76
BLAKE2b-256 49e69f917cba0d53d9dd5a3b2a6effd1d22d4c1e115a54d5545dc5349e621150

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.3-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.2.3-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 649c7f0f22e178285cd9231f5697fe5a9d3b25d4e1ac19501cd9901db90a0c8d
MD5 f56fffa3076f59491d4d14640626074b
BLAKE2b-256 a2a5cac79bf43f67518e0d717f6b9944cdceaea08727e70f10cfe8484cd39191

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.3-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.2.3-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 870aadfc6f4b172c7a6ae7e04f8eac777a9ecf6a06ba77554888fafa0047cd70
MD5 c95d606f8493b814e6a5f0bf7f266bd8
BLAKE2b-256 0b6f4ac50ef52c33d7bc46c08109f73851f2fbb59da5de579115ad21f43ff4be

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.3-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.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bc5652ae8ef46cf56c1c6f2260108737ec0cd443892cd0ef0dcd02c0c6628a6f
MD5 9fda97b03270799aa83e252fdbc563f5
BLAKE2b-256 8443ec0a47f9d1edab9c50499b37714a3100c82f9f31a340b33955f0b8f1f74e

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.3-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.2.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 862e61f7a45fc9013863976478a09f386e650dc60367e2bb790d5fd6985d557e
MD5 e9f39f56bc5cbfcbfddce6c7b6a0319c
BLAKE2b-256 62fd884f095ac1b790fca9926bc11e23857177a6852b587b5b872fb61d458966

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.3-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.2.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4b1aec359a7aa9785b395f30d03de6e4835db9a3f604b86391d17e205cafed92
MD5 c9ddb8089e0c3065cdced4c1bc5889c9
BLAKE2b-256 5cd89e7005614de3b7d5feb16954760354af99478558015cdf8c92e2eba4868e

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.3-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.2.3-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 efd148b6ee7fc76c3f057cc4c406e4c41391db8741cd92432858c225b75bafd0
MD5 7897fedf9f66d4aead7a8e0882def584
BLAKE2b-256 8de7467d15b9a2f18fc421c9f5e7295ae957f13af80109e268fde5a97d00d08b

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.3-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.2.3-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 a3e66d832af2854cb790ce694b1f84c73e42a89617917858b75cf96cfaacb801
MD5 e0967c1c6d6a14cff1d534b8e0526950
BLAKE2b-256 4b3e24decbfe3eb774af0c4ab7fd3e2ac16e4de4b5f1eb1a45b0766e37a8d301

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.3-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.2.3-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 59531a54e87fc3c7d4c997026e769954e5912c0a4a11aba688191c11838c1ac1
MD5 0d4ee4c9cb036cc0e6792cda4e7d98bf
BLAKE2b-256 cafc18d1768907f9644a9b686b5e91a00177bc70c6063a8376a700e2f7ece5cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.3-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.2.3-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.3-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1f00bdb4d798660390fd683b88482f64cadf517de3f3fdb087b510c59f24a3b7
MD5 de2a63cb50969d9e6a592c2f3731cb32
BLAKE2b-256 7a6e1e51cc5644bc510349cf607e09e76ca2013270a50c2a669eb0a3008af45a

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.3-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.2.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ff0253aeaa8bea688f5ba655c5b534ee69f30d4943cdd9a73a708dc7622fd3b1
MD5 4626ae4ea6fa19eaa86a84bbceb93c39
BLAKE2b-256 7f54c57d44920ba4cf0d2c2a850710728de8455584499c490be9fda47b9172cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.3-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.2.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6e07502ba28da0b5b62f71705effae60009d5dc3808da12ff3f827f927f48542
MD5 14dc09acc5431fcd0ed62280846299b3
BLAKE2b-256 c421928a2ab2eefc951bf4a48069b6f5f1975e41f012c5044ce8e9d1702c041e

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.3-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.2.3-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for material_color_utilities-0.2.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0686c13ea2335cfe6d31596e8df713626e9f618f0ee221f66369e4f26605b84b
MD5 6f54ddc67784da4bc6a6a6f7f4c08593
BLAKE2b-256 4dcb8e6a0917b8b4225499e91f9011bd9e573ec06c7172415dcf85e8654836f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for material_color_utilities-0.2.3-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