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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

material_color_utilities-0.2.6-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.6-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.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (356.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

material_color_utilities-0.2.6-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.6-cp313-cp313-macosx_11_0_arm64.whl (283.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

material_color_utilities-0.2.6-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.6-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.6-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.6-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.6-cp312-cp312-macosx_11_0_arm64.whl (283.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

material_color_utilities-0.2.6-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.6-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.6-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.6-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.6-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.6.tar.gz.

File metadata

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

File hashes

Hashes for material_color_utilities-0.2.6.tar.gz
Algorithm Hash digest
SHA256 40840387817eea3ac3a5f5fb9928583ff5bcfd070c83097efe5e77b62e098102
MD5 8114cd0001078240473fcd230c51fbd9
BLAKE2b-256 05bb751057cca6b6aee5162dda3ab0be55c69c703281d750765170c3ebab17ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.2.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 335ad4255bbb1972f724f1afbcc203a7db06215c956bf3fa30f3d6f0415daa31
MD5 a171cd87ba388e463dde749012c8feef
BLAKE2b-256 fc750dd1b7f93d49ba84909ba8d726094811b52a65dc0ca2175122f9d1f08956

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.2.6-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 8cfd68f7ffa713103df107a06bf8f65d385b03f92b6b4e42c286dfa860d0ad32
MD5 ab0273c2c3bd18d0122298e68a46cd9e
BLAKE2b-256 e6a1f8c46cd9fbd02529acd15b12d1e91aa845144d42a063f9a578028cc68dd3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.2.6-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9526b77b8c4fd590fcb40dca9a0339c43b6f60073a840f41a3b932b348364569
MD5 9f00fcd93d14009905944cc7217b51b6
BLAKE2b-256 990e4188a19c60c78b14b0ff845a71cc4e4e02ea3225f6bac0914d3c65b3ba41

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.2.6-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9083134f17214eb76bacfcdd8ecbd22abe68cd5693a92fb31b7dc3adbe700cde
MD5 84e25bb1494aecdd20414267a730b7d2
BLAKE2b-256 e27959717d80ce24661045fea2dda9f1f0d6574b972208f5b75bbb07bbad9e00

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.2.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 15a1d35ad2fc8b362f2d3cd6ea0454344f9aa921320b364571b59e53325e53b2
MD5 a72ca40bd9f9135ee4010ec9cc5b663d
BLAKE2b-256 68d26a6568b8e40681b55db68dd95a0bd4070b225f4ad5678c111600afaf49fa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.2.6-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 60fbb05e78c15375b2de03b19aee6d1b0d4f3454a50328682a165a2ce89f675b
MD5 b9ba8fc6acfd145848667e5c164ef791
BLAKE2b-256 f266afe5f4684c62f3817665a4c1f443ccdaa73a465f989b37e9b97313771be4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.2.6-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6f703d6515b873d5fba53361473fec62c6c558866f3f8707986d65494cfa0133
MD5 d35249da4876cbb9f3c655e20273099f
BLAKE2b-256 b6eea23e63afd38aa0fdf1ae5723760b2e1e7c61a678c270e0aaa9b3f783b810

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.2.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 954ec2440f98663530594eb4361cf211b0ece0ded07b7e077aa96bf23243d7a0
MD5 8020f4434d8712ed0e1626b44228fd66
BLAKE2b-256 906997abefea9091b8e71f953be7145b6464d9d881ff13178439a3217a0947c5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.2.6-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 7089e948da1cdb5026e64a66e521837375435080ffaf97329c3506e6a28fbfef
MD5 a6daf1944cd64058facb462c9301597f
BLAKE2b-256 600b7bb73a73dc060dc4272737e8d30d13082f693ad1b2d8d943c045d9f7d42c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.2.6-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dd39ad7f393a87b7baea7edc7f4ddf236a2d09b15b1fc69cf07726f476b0199a
MD5 15f808494c70e689c6beac892b48851a
BLAKE2b-256 5594a3670cd198f00626af609049cdd0f26c78a12060e10bf1822852939b0d3a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.2.6-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6d9b74e15adacf4f7eace53dbde034ab32084dc8135eace13013cff50e2e92db
MD5 1efdcc50f3958fdaffdfab5f35677105
BLAKE2b-256 cc879a6159898074eddaa6ab7ae6e55e1a506257a1ee1b2008bffc952347eab5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.2.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a1fae999e644a84a3c33d00a87318a8b2aaf8a2d7c16231966ea1270e904ff9e
MD5 9efc4cb729b3957d80254ed17a34b839
BLAKE2b-256 bd577dab44b3df79982ac968b6d5ba08a05697b0134fd8e944ea5966e3d59b30

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.2.6-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 070f43d4339f2ea36c52c8b271840e84143c257ae06384faf209e7790a6a9933
MD5 197c5089ad792109b6096f3ea68146d8
BLAKE2b-256 4fe85af9c470439c6fa9783463be89e9e7675c9526648cd658c8b3baa285e814

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.2.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1b3179a7616808c4916b728a754d9d4eb8f9d60ebf4f5cdec0acd6c34bc13fdb
MD5 55c627142cde640a9fd9f52cc90d3ea9
BLAKE2b-256 b84908bd2e4bdf3f15ae2861bed571a1e7560f8fd5d2726dc9e9ecc4fee57f4a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.2.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 817762894d43532c0a3505ffdfc52ee766d3aaad53d1e08fa167a084d375fd60
MD5 959a151c26082b7577885bd4e96210aa
BLAKE2b-256 0a7c8d69ff4ef6ef68a8593b4110939f98e7fbb40c4cf7424f35359559a45d08

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.2.6-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 80b7da993f7bd8d91f0a93813471def77e96dea6c38737c3d861510359f0ee84
MD5 96de6089f267e3929e0e3abbd272b868
BLAKE2b-256 6fa7059ba7a1e1b71192adb53cfbd47339e3c58dda637aa55c388e66a780bb61

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.2.6-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bc80ac96b5e7bb94b4cc10959a25dc4481743e94ffd4de64ab1145e6706be6aa
MD5 a116670e00ba0696875630325fd3a6cd
BLAKE2b-256 151fc3928360674eb777b2dc8c6f1e55cb7311d167127bad84e885250886a3ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.2.6-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e1c1fa2eefe7c29d7cf01d8df11d5807e268481477772bcd39c29d335c7e567e
MD5 b9328d4c4fcc16c30551d2eec07d2d7f
BLAKE2b-256 715b360840eb5b530caa02c29ed985061744c5e5093a3de1dc98f3099ce938f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.2.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 df538bb35d38bcf8b5d38ee47a058abc944e98a8e710d658a0c7f6844c413d84
MD5 7d039eb176431684b10536476dfabf82
BLAKE2b-256 f931638649b1821d294964c81ce735c2f783c41f58b8f36725962c65841a7cec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.2.6-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8ae157fea1dc14b1effe03e34666487a13d642b207724bb6577e0862d379434b
MD5 99309a1bee8a3f5ac66dc764f1ebd2fd
BLAKE2b-256 98b7c9bd2ffff5cfa8032ae391a6bd48464ecec236e3a214bb79a35939e2ad0d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.2.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 093d196b55f10c65d718bae46c10545b16e300b9d5c0da2d83d7eefbe0b87217
MD5 0d5f7775a2acc5ba98f07b2a0afb0c09
BLAKE2b-256 f37afa9541a3cd1676d80919a852b6e971813a769d148c0ee318010e364c5352

See more details on using hashes here.

Provenance

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