Burnt Umber

Earth pigments, warm and reliable.

Mood
Earthy
Colors
5
Space
OKLCH

Burnt Umber, color by color

Earth pigments, warm and reliable.

#ffe6d1 L 0.94 · C 0.04 · H 60
#edb793 L 0.82 · C 0.08 · H 55
#c97847 L 0.65 · C 0.12 · H 50
#9e3800 L 0.48 · C 0.15 · H 45
#5a1b00 L 0.32 · C 0.1 · H 40

Create Burnt Umber in PHP

Parse the catalog values as one ordered scale. The input remains readable while PHPColor normalizes every color.

<?php

use PhpColor\Color\Palette\ColorPalette;

$palette = ColorPalette::parse([
    'oklch(0.94 0.04 60)',
    'oklch(0.82 0.08 55)',
    'oklch(0.65 0.12 50)',
    'oklch(0.48 0.15 45)',
    'oklch(0.32 0.10 40)',
]);
use PhpColor\Color\Palette\ColorPalette; $palette = ColorPalette::parse([ 'oklch(0.94 0.04 60)', 'oklch(0.82 0.08 55)', 'oklch(0.65 0.12 50)', 'oklch(0.48 0.15 45)', 'oklch(0.32 0.10 40)', ]);

Inspect every palette color

Palette operations preserve order, so iteration and conversion produce values in the same visual sequence.

<?php

foreach ($palette->to('oklch') as $color) {
    echo $color->toCss().PHP_EOL;
}
foreach ($palette->to('oklch') as $color) { echo $color->toCss().PHP_EOL; }

Format Burnt Umber for CSS

Export hexadecimal values for compact tokens or convert the full palette to perceptual CSS notation.

<?php

$hex = $palette->toHex();
$css = $palette->to('oklch')->toCss();
$hex = $palette->toHex(); $css = $palette->to('oklch')->toCss();

Keep exploring

Build on Burnt Umber