Bisque

A pastel, warm yellow with the energy of a warm sky.

Hex
#ffe4c4
sRGB
rgb(255 228 196)
OKLCH
oklch(0.9329 0.0514 71.8)

Bisque is a standard CSS named color with the canonical value #ffe4c4.

Create Bisque in PHP

Parse the catalog’s canonical value once, then keep the resulting color object throughout the rest of your code.

<?php

use PhpColor\Color\Color;

$bisque = Color::parse('#FFE4C4');
use PhpColor\Color\Color; $bisque = Color::parse('#FFE4C4');

ColorInterface

$bisque

#ffe4c4 · oklch(0.9329 0.0514 71.8)

Build a Bisque harmony

tetradic() keeps Bisque and adds three partners at equal quarter-turns around the OKLCH hue wheel.

<?php

$harmony = $bisque->tetradic();

foreach ($harmony as $color) {
    echo $color->toHex().PHP_EOL;
}
$harmony = $bisque->tetradic(); foreach ($harmony as $color) { echo $color->toHex().PHP_EOL; }
  1. 0#ffe4c4
  2. 1#cbf4de
  3. 2#d1ecff
  4. 3#ffdcf3
Bisque and its three generated partners

Generate a Bisque scale

Keep the original hue and chroma, then vary OKLCH lightness to produce perceptually ordered steps.

<?php

$oklch = $bisque->to('oklch');

foreach ([0.97, 0.92, 0.84, 0.74, 0.66, 0.58, 0.48, 0.40, 0.32, 0.24, 0.16] as $lightness) {
    $step = $oklch->withChannel('l', $lightness);
}
$oklch = $bisque->to('oklch'); foreach ([0.97, 0.92, 0.84, 0.74, 0.66, 0.58, 0.48, 0.40, 0.32, 0.24, 0.16] as $lightness) { $step = $oklch->withChannel('l', $lightness); }
50
100
200
300
400
500
600
700
800
900
950
Explore named color scales →

Format Bisque for the web

The same object can emit a compact Hex value, an sRGB CSS function, or its perceptual OKLCH coordinates.

<?php

$hex   = $bisque->toHex();
$rgb   = $bisque->toCss('srgb');
$oklch = $bisque->to('oklch')->toCss();
$hex = $bisque->toHex(); $rgb = $bisque->toCss('srgb'); $oklch = $bisque->to('oklch')->toCss();
hex
#ffe4c4
rgb
rgb(255 228 196)
oklch
oklch(0.932856 0.0514454 71.8493)

Keep exploring

Continue from Bisque