Color Playground

Experiment with Color Palette PHP’s color manipulation features in this interactive playground. Try out different color spaces, manipulations, and see the results in real-time.

Color Input

Color Information

Hex: #2563eb
RGB: rgb(37, 99, 235)
HSL: hsl(220, 83%, 53%)
CMYK: cmyk(84%, 58%, 0%, 8%)

Color Manipulation

Color Variations

Code Example


use Farzai\ColorPalette\Color;

$color = Color::fromHex('#2563eb');
$lightened = $color->lighten(20);
$saturated = $color->saturate(20);
$rotated = $color->rotate(45);