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

Uploaded PyPyWindows x86-64

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

material_color_utilities-0.1.3-cp313-cp313-win32.whl (206.6 kB view details)

Uploaded CPython 3.13Windows x86

material_color_utilities-0.1.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.1.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.1.3-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.3-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (352.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

material_color_utilities-0.1.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.1.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.1.3-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.3-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.3-cp312-cp312-macosx_11_0_arm64.whl (260.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

material_color_utilities-0.1.3-cp311-cp311-win32.whl (206.9 kB view details)

Uploaded CPython 3.11Windows x86

material_color_utilities-0.1.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.1.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.1.3-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.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (352.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

material_color_utilities-0.1.3-cp310-cp310-win32.whl (206.4 kB view details)

Uploaded CPython 3.10Windows x86

material_color_utilities-0.1.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.1.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.1.3-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.3-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.3-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.3.tar.gz.

File metadata

  • Download URL: material_color_utilities-0.1.3.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.3.tar.gz
Algorithm Hash digest
SHA256 b8c2eeabb371316f8a90c833b8ad32c140996972db0d410cf90382aafe3adcdd
MD5 03a5419ad5cad0824739310544581319
BLAKE2b-256 f42ab5b2a3f8c7211e9d4c2e464654eb3f09abb5178972db6015543145750fc9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.3-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 718d6b98444de14fbfbef0daa87fe9666798ca0932fb05759a5f1b4667e551f8
MD5 2ca734a83ee097d639aba6ced04377c2
BLAKE2b-256 6889eb93d71123dde5a53d0fa8d8691a258693219beba1fb636639de909c9488

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 edb06f131e6cb0471b2b8bbd8bf2d8241ff0a7050f4c71862ff4ae851e302ce3
MD5 965243eabe1afd8636252a24971e62a7
BLAKE2b-256 a7bd20bfe632dd0df8f1e8aba5b2d8bbb2e1f89a4f432deea86b75172d2b4a73

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.3-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ea7d7be0a9d292eec44b79c5c9250348ad015626e5537b9b9489d26fa07722d6
MD5 32bcb88db01fe65714732d14dfe65c75
BLAKE2b-256 8cc3ac22d26789d7d483ec636a070079c20534b9297e187b2b50194af7bbe5f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 02971370956e7641755cb1f1feed41aa3dbc2d91d682f52be181679ed47779cc
MD5 4f6f0765d4029b9573256fe61c770404
BLAKE2b-256 487f3f2fc2569f69409d85e969cf00ff715f6badb18addf5c60fbdb88ff38e94

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 aab010872e7027f224e877a5f7c3b55875e4db8e7f433cc293cbc921ddf5aba2
MD5 90973a20e2040e101cbfd6d776dde5fe
BLAKE2b-256 bf59cf2e86aef7dbb2f0a5c8a72deeb881f6168b7e83de183bfeff1dc8d3094a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 a1189de213f080b0117746324ae8622ba66d5db43b85a98b6c5ff26a91db9e12
MD5 e4f2387c3bcda80da8e388df6b7ed9a1
BLAKE2b-256 1409e135e42f38ad71b241f6699d395d34ad011e26f73e307d8a5eed18065d7f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 be921d12d27f3fe81437256d963ad8078f1af58a3678f2c63ff59ce8b6186b63
MD5 eb72887f6148f11f53afd045f6dd7da7
BLAKE2b-256 bd1bfc43586d4d539e3208a1c1625de7573aa619eba578abc7d3220fd193d9e1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.3-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 846b312a0b5fb5d7abb630a59a7cd41ccc2e5fc28f8b372a509cb24ed7d6db06
MD5 bc6aa568d1340a9ad6a4e2901fe070d4
BLAKE2b-256 352ec6505b7ea2a8e312b79005ab5cc9b1aa2c48762e89439ebda604a6f1eb03

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 71a93dc8a60bc0a77ea04de62a3efc93ef08c386948aa12de6fd969def19869d
MD5 61ac5a763e02b0cddf766e5120c7f1bc
BLAKE2b-256 ce445db2a368ddf6143c93ef7b9a599037151e18ca01c59481baa5d1454f8288

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.3-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8d77f8c5ac48e86054795fe150fd632a7ffd559227f7d1080917477b414cd89b
MD5 feabf8088e2a6d97e47dd83e21e28372
BLAKE2b-256 900849c089a567bca9ccbca9425f39bc800da16c6ae7ee0adafd27b989c885ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ba781952ee9e8c9b798e72c80c3ac19de02bc09bfcbf7a37c9c7cfac80bfe9c4
MD5 3566663870611cbf95f7107f81bbbacf
BLAKE2b-256 9044d387f3e2fcd066978f6ea212c40bb2bbeaac82a84d203238bed74fae1feb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ea455e3d2519c09a275959df19f58cd3ac3ae76b6025abc36a6cd36281634df4
MD5 3e3083888a404b21bb34bfdf26ceda60
BLAKE2b-256 46fc83005be408dcb3b8fe8bf380bb45e3b6d5a5e811d629c2a14abc783b2864

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 f7ef97a8f8745ed67482b55f75bad578dfbc80e13c507231c0c1ee6fc7421fed
MD5 66349dfba13358c6411f9387f5796d52
BLAKE2b-256 51af15129563306a4a8d229fa312744566ad8da89fe9b66f5e20c0f254956a17

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b8f49b7b315b189db82d679b89a3651aad6fb4325675235be6adbb4fe713bd84
MD5 a52d418429b5d092ed322191b83f503a
BLAKE2b-256 18688e6a28e84a4bd761172c392be5060b60932ddc4ec5d680cef7b8c3f2f71d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 91fd84d9b7ae9cf8a0d96dd036f5fd9922cc1296c7bbe0a2e9be7ca1821df459
MD5 96c7256dab65fd0c40effa8b8eeb7df3
BLAKE2b-256 660223caa96f24349684aac1a1a8f63ce38e1647423215baada034fc1f0d2782

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a6e33cf3de9b163bd746f09bdd4549a292c7ddc5fc4f339fd12b5a15c345dee7
MD5 70d365697929683561dcf17a74fb46b4
BLAKE2b-256 8e1bd6dffd6da2c65613f3114e59b04526677d9e6d7cbdaa985514d0ded9f748

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a83bcde3a90687e997267ff52eedb6d128f32b7b338de30f40c50e3a95bb8959
MD5 741f2cb18d093149a5c843e56447f885
BLAKE2b-256 7e8d956f80b85b3af6689b2c84a8efc30bbaa997eab02b649091742d02e6e8e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d939ffd6007c286034ac80de2f5e85fd4a18e4234c99bb47ff00171d5b201cf1
MD5 33b156a460810be8a70f7be3ed1d4078
BLAKE2b-256 bc24d7d3407c9be4961ee56fa77c106b2754f982134f701e1b57b6d0cf768739

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 46a6a84cd2a5b444f5e56acbaeb1fee294b8b93df0d6a080646271b02e0254bf
MD5 22f1d7413a8d4bf7c0458dc06bbba3aa
BLAKE2b-256 2316155c12e23ead2744357eeb838c3729e880a6ebe4b9b7131e70f76a27ba89

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 abf52850bb0fee9943b88efaddbbe493a54931d6183bd09da842b54396aae696
MD5 7d1a364ed9ab1839c4e32c81763957cf
BLAKE2b-256 d91cccb3e0ca4bdc520ed37cbae912cc82c1ff981143208482a2a418225f4c80

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c8718272094b18eb0492834e6fe96d64fbe403c37d6bc642c020e57ac1b2b56e
MD5 306b8e4c65b4e149fed13f24e7a6b05f
BLAKE2b-256 2ce2e25021245ccd1c93f66ed1ffc662c2c7c37cbf7f9a6958a59db8c853c3da

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2ab49d8d40b2bf0565c4f4dcecb1e2251bb2cfabbd59db4fdd46a0b00b6bf35f
MD5 bd09381152aed853f666cb6be8f9908e
BLAKE2b-256 ba111f8d0685234a79ada0a36926ad9174355a3131fa2b812798b1d270885b92

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2ae638c2844123ffe00be95a5156171dc55333f258de6a09cd65897d235da22f
MD5 e282cd4bab293da5dfdda1cf89a562b2
BLAKE2b-256 5db1dfb954429853aaa462f146f4185901f62882271f76c3df13f8b8e15b2391

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 161206d009aa9935d7598658e652477c982fcbf14a545012005d7686e534ebf8
MD5 ea07e47e105f6877769046f83e928380
BLAKE2b-256 048acfd6b3f6b4b8ab5c791c45cc55fefe4fbcc937252b51ae0602e5bcb7b843

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b0064735a212982fcf436531976090d0569500b65f03b4c92cd76208094baf3b
MD5 a10b79a1a5b445b294464bbcf0968f35
BLAKE2b-256 eed189769e10e7a56632fe65d075bd401eb35f1de30b8bb269632f7cee36a827

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f776874f111b5fadf8a27b45fec3e33b9a01deaeed6a987b774faa8ffecebe62
MD5 4919031800fba514b858ec25bd1e1ea4
BLAKE2b-256 42a382961317c0475ea42daa7dddb2159de9fa671fc2278edb911c2ef6d72750

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 234e0d225fb6b3efb0dcb09dd5eb12de9305b5abd0c64acc437a57165c5ef973
MD5 02f4efe09149385d6d95c26d7d6257af
BLAKE2b-256 45d91b656d2bb146ebb3af510729da10642ae5e8efbf199a4b5e7b16ad5b6657

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 57f7db56dcf3dc9d2f7bd29ccc51a60b9f2a6e39c0244a9e44faa9715219e262
MD5 50103130c6cf4e8ce62eecfc74990db4
BLAKE2b-256 2531defeb0b54b6603d8d1ad7265e8f8876833d28d3a9890024c44976cf0ce0f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.3-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 193842676919328ee829b6d01db8b9bc5be111473e122591b91c76b78057d7cf
MD5 114e758cf4f5ef70dea13bb96725243e
BLAKE2b-256 819dbb9fa055d4e460832fc762da67116aa066223c8f89f47de809a07f3ebba4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5d95fe370269f24f49219e5a3d7bfa476ea6edcf9220540e24c006d7c1f5a393
MD5 f5c9167fc1850b2ec44f3628687fc878
BLAKE2b-256 6aa0cfd224f00673452b78d14c944d017a9a47b70ace789528f99b8a308e6682

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cf9e2721e5dd37e3b621ea1ead9d200cce6b60bbaff26ab6770d4b28ae16a16e
MD5 d264ba0bac5777b20a55e734173ea233
BLAKE2b-256 cfafc00664029f33064edd3a4c874efe65344388585a0ceaf91d36f5f52697e1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for material_color_utilities-0.1.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f6bc520715b32468807048297699d596a0681de848ba95839ee2602635efacba
MD5 b405c95ab87f181a3cd5fe391aedb73c
BLAKE2b-256 5b2a522185c4602d6e7881ee308b604df02ed2f13b25cd8dfc008c33deef5ee6

See more details on using hashes here.

Provenance

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