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", 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, 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.5.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.5-cp313-cp313-win_amd64.whl (258.5 kB view details)

Uploaded CPython 3.13Windows x86-64

material_color_utilities-0.2.5-cp313-cp313-win32.whl (232.7 kB view details)

Uploaded CPython 3.13Windows x86

material_color_utilities-0.2.5-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.5-cp313-cp313-musllinux_1_2_i686.whl (1.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

material_color_utilities-0.2.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (356.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

material_color_utilities-0.2.5-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (390.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

material_color_utilities-0.2.5-cp313-cp313-macosx_11_0_arm64.whl (283.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

material_color_utilities-0.2.5-cp312-cp312-win_amd64.whl (258.5 kB view details)

Uploaded CPython 3.12Windows x86-64

material_color_utilities-0.2.5-cp312-cp312-win32.whl (232.6 kB view details)

Uploaded CPython 3.12Windows x86

material_color_utilities-0.2.5-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.5-cp312-cp312-musllinux_1_2_i686.whl (1.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

material_color_utilities-0.2.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (356.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

material_color_utilities-0.2.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (390.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

material_color_utilities-0.2.5-cp312-cp312-macosx_11_0_arm64.whl (283.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

material_color_utilities-0.2.5-cp311-cp311-win_amd64.whl (256.6 kB view details)

Uploaded CPython 3.11Windows x86-64

material_color_utilities-0.2.5-cp311-cp311-win32.whl (233.1 kB view details)

Uploaded CPython 3.11Windows x86

material_color_utilities-0.2.5-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.5-cp311-cp311-musllinux_1_2_i686.whl (1.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

material_color_utilities-0.2.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (357.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

material_color_utilities-0.2.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (391.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

material_color_utilities-0.2.5-cp311-cp311-macosx_11_0_arm64.whl (282.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

File details

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

File metadata

File hashes

Hashes for material_color_utilities-0.2.5.tar.gz
Algorithm Hash digest
SHA256 ddebcde4254d613fb766970da226d36bbd1e4c97962d9c0e0df312d0ebcd52eb
MD5 70700bf0cc449b562eb4e426f5d825f9
BLAKE2b-256 d079dc79f01980fd78e814e3330e31b1d0c9a6d61bf372f3ce6b0cc0af6a851a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.2.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8e31c0e7a6fd15874489ef42e75f0f54fa5a68c0ef6a0d4fbc479ac1942787a7
MD5 c28e6e9ec4c3d381cee3617e92e35b05
BLAKE2b-256 c52ac14822717b83e076f758c020f6c02d45a26afa1ffe1a07261aa9c2dde12b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.2.5-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 6c4d861781e5d1ddded019cce8d1308551bd91b45ca07b6d44708d7cec0fca23
MD5 32efa2d52cbcec824db0ffefbae551c0
BLAKE2b-256 b5288c0b05b4e9809215645c56d71d07e64a0357c99f8409b4f4286de1eef23c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.2.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 39779ff653613326c40d28e2c71bc66ad3404b4eda19339220c47b2f7b577582
MD5 6a0fddf8e9e4c8ab7f49b8379c3d60d8
BLAKE2b-256 d183655aaeda2210b9b5407d8ce79d01d3e2a311028ba5aa209a6d9907e1c78a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.2.5-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 03ddfa51462dd9b90ebf9c2605cdd5430a221ba20eca5775bf385566af6d85d5
MD5 898e5d26a646fc25120a08a5afb6643f
BLAKE2b-256 23d0c93814aad3dfec6910cdf8db9c29b588b6a82d698db4726138b69bff666b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.2.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a912017ceb582b73c2afd7b37ceca26d72c6263701206083d50d84927233c5ca
MD5 26e64642862ad5ee01567594ae2104ff
BLAKE2b-256 5db444d7663a07b9cd701a55270fc249cd9ba3237ff27e76c33e11b45f279c13

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.2.5-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 167f07a619083d8c82a4d58f6272c4a3076fab2046bdd5af359d9e9710c7a858
MD5 28640f66ffa1133806c5ca56728c29cd
BLAKE2b-256 8e5ef988ea366470883d4a651e897e14bb41558a35caa0af7ce63d79addd636a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.2.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0b189eeddd455958ac8dfa8c9a071208ee442b0b540c13ccc5093e9ed56ea803
MD5 be5ffddac725a4db63215e73b8238ef8
BLAKE2b-256 3b7500fcbf5c42ffb83d021379126fb78b117bd6b668b0802825e372540b5cd6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.2.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 80194f181cd34268fb2116af7ac586c457640c2dda00d7b057f8d60e4d2b3aa3
MD5 cd9341485d03fde09f446a6fbc41e1d0
BLAKE2b-256 13442a1cd173c79292738d1fbbe16eab065705272c376a8137e873958b4c164f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.2.5-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 f9285fffd533d05b30f77799082433d1346d2ae3cb0f9450535a1c182c434603
MD5 5f1703bef25cac95f455b8d57708ea2d
BLAKE2b-256 d1adf9650dec5d64698f7d76bfd58eaa144ff256636bb3ff1fa960b567cb22f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.2.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a5e298c0f437fa2b292c1e1641a798b396f1f74e7438cd2bda7d012902f7597b
MD5 748788fd1bb5e576b6bf42fbd729d60f
BLAKE2b-256 07c5e0ece9675b13cf734753e0c5abb6aac81a8f73fbe6decfc53e3392666c5d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.2.5-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1a7331f0228e239305dc509ffa5492c8795a4179a262908501189e850c663158
MD5 67f0c7d6fccb80211ee773680bf61f5a
BLAKE2b-256 1ffaf895bb55614c0abc26944cd4b5c1f30a732af1579cd9d719f1f78533d93c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.2.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 697b892c371f6f16874e11200332e1ab60cbeb61fcbd995485910bfc039e1999
MD5 cd2781929963bbfb7c8e588851f3563d
BLAKE2b-256 1a91e8c6874b56859f0eb0a2ee1bf7c8fdf37a16d5dac3f2d2c37f81596b75f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.2.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 379bd70cb75af66f048648fe12fc7ac738b0098d261ce432fee9479bbfe3f155
MD5 eba010f7d12be1c190db42a641bd082f
BLAKE2b-256 04463f964c6f9c4fb0bf0d524ee1563018ce30289f222cf00148734c226fe0e5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.2.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b3d7fa0c737c6423f620a677d5e17342c6bd6721c2c87e0dd25bf522e75fe696
MD5 7cadf96f021c63403b373bd088a89512
BLAKE2b-256 b1aa57c5e0dc49b77256c5dc4948e53a55395ddae5408c307280baf62beeb744

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.2.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 05cde435d453365eb7033ff600661965f853dcafea37706b33b7b9c62df23184
MD5 921b8b26db8631ba8d69c9bbe9de25b1
BLAKE2b-256 e34ee6973d3b3d6e5a08a8640d73222f757d83f1e50ea27ea6719fb3fa5f070d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.2.5-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 8d44bf5494af78d1e8fd75b8e8d247344fd2d1e1bf165feef97c2f6ae65dbd46
MD5 a86c23b804eefdff47513edf5e02e03f
BLAKE2b-256 1a07b0b61ef3cf7cbbf4dd0a7a9038768f8d22299aac87075cfb5409e3b2791f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.2.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9cd4294cb1aacceabcbcfb8a51bae76145882a8296fe06afebc507c8b9dd0079
MD5 64bd8ff1e08b3b71f08fe2ad060f60ad
BLAKE2b-256 8755929975dcc7cac84e723ad187e918166c5bc3b84565d2a3ce1c55ad8086e5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.2.5-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7712315d43c33a64da92e3f245b27d6bfc029890508eeeb55767b9c1631f39a7
MD5 9cf03fa9e9ea6a975258b7a3a036d26c
BLAKE2b-256 de7ba4f9643711896120d14f36a5bbb36289cea0279f13c5344716321143d2c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.2.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8ad8e5ea3cffc2dae0e856ac9db44167816c43eef9f425851454c0052a72c72f
MD5 1a7f5437a04aa70570d1e3340147740f
BLAKE2b-256 4dcd06d7c0fff4629d34f4817ba64fcfe09cf6a239cbffefe66e8df8d4f0893a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.2.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2ff0377c034e073a92c9a4d025d45c825673d169ed16c750fbcf05611f438f70
MD5 8f42d6bd353fe68dff298873127d2897
BLAKE2b-256 da9d36c375a2ded1c9dcafee6644dd104dc3e4169067fe7cdd19fea6f86b09ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.2.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1264c88bfb11822cba3d71802a4b47f6f31a65419b1b9475fd368302ae98c1a2
MD5 454abd4e7b83821750ba70a53b6ef3f2
BLAKE2b-256 34c5ee50b10631abbe21a631b2e2c3976446991d8a6c5ea40fdfceb96bd62f9f

See more details on using hashes here.

Provenance

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

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