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,
    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.2.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.2-pp310-pypy310_pp73-win_amd64.whl (237.6 kB view details)

Uploaded PyPyWindows x86-64

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

material_color_utilities-0.1.2-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.2-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.2-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.2-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.2-cp313-cp313-macosx_11_0_arm64.whl (260.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

material_color_utilities-0.1.2-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.2-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.2-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.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (351.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

material_color_utilities-0.1.2-cp312-cp312-macosx_11_0_arm64.whl (260.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

material_color_utilities-0.1.2-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.2-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.2-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.2-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.2-cp311-cp311-macosx_11_0_arm64.whl (259.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

material_color_utilities-0.1.2-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.2-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.2-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.2-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.2-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.2.tar.gz.

File metadata

  • Download URL: material_color_utilities-0.1.2.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.2.tar.gz
Algorithm Hash digest
SHA256 92dbed3aec4c84c8d89991d06a7e1a1b6fa4fe62f07769d001df4c70e08faa9b
MD5 f7a3eb7eb53f45e009e4b81d5a4a7ec0
BLAKE2b-256 3da129bb6c97c6d5d2e18a74effdd52006aaccdf95ddf285c3f47d8757f9c651

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.2-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 40f9423b36ec0c17adceab92892e004d13040617efd0c154642bf37917170d63
MD5 0fabdd71b0e2c00c5934c64371bc3fc8
BLAKE2b-256 3abb883f1f53384656c41129de6216630142cd9dff96289a1fad2d9799cb525f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f6f07362d2c37c188088269b0d60c20cfe5cfc25e51280afaff097ba0affbf68
MD5 58d77ea0a8e624040fdeae9902321ed0
BLAKE2b-256 fc76a58ee0b94811f2f3c787b58fea374c6063bb67dcd0387121ebf4c8ecad5f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3c14c7849a6a11844774ae8b9622fb450c7629a3db9c1a0a79dbd5775a456e70
MD5 b8619460da00863cdecb87478dba1a26
BLAKE2b-256 3bdf4f43275a564e5164a49db6ac3c9cda8758fcc49cfef5c1a6efadf24f7ae3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 367b5d6b5f912284f0f132552df8855d4e520adf2aa0dd262a6d83c0bfd86433
MD5 9ffff9a2cafcf994e99383d427b80b83
BLAKE2b-256 125e38f60d7505b4014d9c1bcc65ce92d1fd54b176e2b6f4d79e1d3d87c61153

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4561b405031b2f12d95c68da6d96fe6ba64c18eac7ac09c28550763bf798ddc4
MD5 8927b61c892ee5deeb5a91de7a24c666
BLAKE2b-256 fb3df3b01139145ea1edd36fad5f4d295a994b8f4da501fb45c5ca10b7b8398b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 4a068ed3f23f2ad07d60448ecc2114490dcee0f7e537bec1146c5f05659119af
MD5 162e06a6032a603aff98552254659bb2
BLAKE2b-256 10522d6dcc6a5261ac122f1435845e1ecf5b0ed173739bb7d9b136027776b1c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2647543a709954634e63c0802151ed54f444ba0f839ef879b7d17ce683c5031a
MD5 70c819690310168d661f76faa354213f
BLAKE2b-256 515506ef85509509fd47bf5300edfa99f51abd6f47a4629a1d35e82663ee6fa5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8fc4e90328517931eaa56b9b2356f3ef81ec82178d68215b6e1236e728bd0735
MD5 888c14b5142c07237f917746cc2e0db4
BLAKE2b-256 205bedf5c88f8bb709d64d40703ff9e17d519da74a648a099383ac423f636938

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4799c4d160c8812a12253eec5da3ba18e26052ac1ec49cb0413d7953ffbe54a8
MD5 bae24c02270997a0acf854d56fc5dcdf
BLAKE2b-256 51a708e2be531523168eddd63d43f8f928f583413801879777507a50fc0a7eb5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9f368513449ae58ec7307c9f40884b33dd26e40b5c9d03858d0e862398ca3c78
MD5 b3897889e1e6e9b4bd05403de5275c1c
BLAKE2b-256 91e580ed00eaeb4119b1807e58c1f86ee6978e91f7197f4c45793f7e71b7d93d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 02fc7441ead40fea4236ff571c9dd5116b9fbc36c375247cbe1be59a5a5b2243
MD5 c597d5849e44badbee2a1a0908a47dce
BLAKE2b-256 b25575b64753e5ac4080b03fa2236e111a9ba7026f5ab9ff3c9a07c0f6290d62

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 dd26ff6e020352b03f9f57e42be8396a1e70c164987bee80397890f78d192d5d
MD5 cd91e39c7596af90c873b7dd2509ed8b
BLAKE2b-256 730431cc0b42c87d07924f0003b376efa466c9896dbb708a457f875e0ffffdd5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 6426d5d76cbe2a9adb72c1271797ca0560fff2cdaa28a3a9f9d019aa9fe65125
MD5 f6ca4c2bd8a7d55981bc730923867724
BLAKE2b-256 b47a086566536a627508e85b9887e464bf52b7a7c64fe3a6afbe337036197755

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d5a1ca3943189df42d8252d2252a0222fd06881e87d3f42de80ce739240b72cd
MD5 c697a27db07decbbfe28bb2d84f9a24f
BLAKE2b-256 615317ff05d1fafb382d00c7314e6933135c1e7502b2f7e33302f739fb7c25a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 599dfefc75821b1f08bf5127a207d4764ae10ccbf5428580030ed73628ed8d27
MD5 23030c7f8d3af9c2f45badeb9e13d011
BLAKE2b-256 e47abfb625d9eeec4300b45c4c6aaa243623633689f6126a539d40793b7e5f60

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9a04df2a8516aa5777a9149507aedb3637ee36a4f54a6510e3d195dbe432ec62
MD5 84b63b4e600b1fc1299ab9e4278e4aa9
BLAKE2b-256 dc2fb9e19786307cdb19c2c8378640bb3d417c1f93dec3bf6a7847dcb9882a5e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7ee0b5deb69f1325eb8f45a2bfe43b89b2ec883097f87f6e2383beac821f5908
MD5 cc6812c77d67a8ec708a2a8b565afb8d
BLAKE2b-256 5d06cc19009396e9084f84d80dc65f78f7d7f585228a1af2aeb3d9a3bb9857e4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b803c1ec564793da0b726978d71b3f88b03dd468932e87de9ea1fd72f76f2688
MD5 45996b94623182dfb695a738f7d31003
BLAKE2b-256 c8c4681c435b674f0475256824e616cb3c7ffe8209f7814fcd9ec2ac77407804

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 00ee1273d5bdae26e58a53843f5b8f2dfedc7d42dc67cc082dd1d4c631e06700
MD5 25147a44db3ed202d5f6cbdbb8cf67b6
BLAKE2b-256 68536e8f8e4169d4f34cbe79c19e6aabbe393c29ad6f186828092b478718b075

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 b2633c5c28691ead4419fe61de4de68e2d9a673f2326eaf0acbe5144226fea8f
MD5 5e5387613acc9a577ba6168c1438b185
BLAKE2b-256 e67194c47681b26d0f77a2e7c4d05c69c0c70da819f0e5c4eeb038ce57ff3f5c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5de0fe9f79a09768123090877dba9934f5709710e4abbede444b297fb966c573
MD5 dacdb3ef0030a2dbf12699a7379895cd
BLAKE2b-256 bffa41cced04bb4585be66f89c37cb0a0f43cb222e8d0a0356a4011773c32f6f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 664119f4970d49363bdaa51dec93246b2bbf9d8161752e6377e1dda54dd99aaf
MD5 00c2b1843a8187e6df03aa23532b0457
BLAKE2b-256 0e515433bc32aff2ec3b28ed0bf610c0828f762c9fe70d3e26f5c5d6a2c6ecd5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dbbcd0e4d7b37a561b3c10ab9055a4066c417c2a2771d10a2dd984af7645551e
MD5 50f7b0e8bfe823d744c586293ee251dd
BLAKE2b-256 7dcb9c99c21a9df4bce65561da07ac1863b380815e44e26a2dfde50f80b22813

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5c7e9d96e4f2f94192b68e87cb31b4590df30cce23883d47b826e75c0e965116
MD5 9f71b917eb1824ab9fb8289a907227c6
BLAKE2b-256 e7e1c351fe05082290bf2d2fcb70a0ba996cd14712b785b70ab511a29cecf1f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1e4d16a66d4c778d10db0fba5d3855e66e15e4bab810eaefcc5991a386e9f41d
MD5 ecb0257e2c35ee416543a2b8771a8a75
BLAKE2b-256 42bd602d7c01182cd1134119fd802565566e9005be12952d477bd3f0129b5110

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 33e123f023c445d5b6d9de8ab13ef2ef678d32c5e5f8ce5cc1a9b84657c0118a
MD5 d384d30eefb20ab9a8354cd390fb2309
BLAKE2b-256 fd79583368991bae4438eec1cb4e21a132a4706c724c0899389220be89b4f1ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 087d4727c2db26df4e6d3f83b6576fcde462bbb29556c82b238de7ad7b3dc766
MD5 ca0c06e970fd172a09c3e17cce8b399b
BLAKE2b-256 a8aadb26fd01968581ee7fb53149d1c237482f23cc5f04128687c918f615e71c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c10d8e19dc5a69dd2dbd01fdf683f676bb9ae02194586342bf355eafaf9c5503
MD5 e7b81e31eecac63acdc45dc5285933af
BLAKE2b-256 fd0c31c8bb45fe49064c9ce8912a957343c542c7dd37769fef9a09204ff7fc94

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9bcc80211db68d07c102fb9dfea50afa543f7208d30aff004a162b7b1a1ef0d3
MD5 fe62c39cd0a988943e1645c191325f2d
BLAKE2b-256 2e23680571407ea68263fc53eeb55453e1c37133f0262e42ab9535f7007e50b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 89ad8512c520738245a15e1e2621de75dae3d5705c720832c839fdd80d644618
MD5 9fae26b893e61e8a95552d595e4daede
BLAKE2b-256 3e30b6a995504f6d5fd4a5ca4a1a59fb18c2f040bb09695c30d09a84d4ad36a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6950b8a2f15f07e921c10f74eab1050a689699b720abac00755a11536a7f658d
MD5 40be56f9d7a532e75796c3f3b979ca81
BLAKE2b-256 00f5d076ab9e2f9e446bf0ec85dae17703b54bb0280728c796e3d797239aa26b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f2fa33d574b8090a05ebd319264851cd4b29dec77965fe6c2c792e075ef72c7a
MD5 76f05892169a335c9fa03d38b2650960
BLAKE2b-256 e8462300ff378802257163f5fc80c77d8d456973e51181932a29884fdc7f1e62

See more details on using hashes here.

Provenance

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