marcovo / shade-blend-convert
Utility class for shading, blending and converting colors
Installs: 31 810
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Forks: 0
pkg:composer/marcovo/shade-blend-convert
This package is not auto-updated.
Last update: 2025-10-20 20:22:32 UTC
README
This is a small PHP library for shading, blending and converting colors. It is based on the javascript library that was created by PimpTrizkit following his answer and question on StackOverflow.
This library provides the SBC class containing 5 static methods:
SBC::parse(string $s_color) : arrayparses a colorSBC::ShadeBlendConvert(float $f_ratio, string $s_from, ?string $s_to = null) : ?stringshades, blends or converts the color(s) based on what parameters you passSBC::Shade(float $f_ratio, string $s_from) : ?stringshades a colorSBC::Blend(float $f_ratio, string $s_from, string $s_to) : ?stringblends two colorsSBC::Convert(string $s_color) : ?stringconverts between color notations
See the docblocks in SBC.php for detailed explanations
Installation
You can find this library on packagist, so you can install it using composer using this command:
composer require marcovo/shade-blend-convert