Dusty Rose

Romantic and muted pinks with a timeless, vintage feel.

Mood
Warm
Colors
5
Space
OKLCH

Dusty Rose, color by color

Romantic and muted pinks with a timeless, vintage feel.

#ffe1e3 L 0.94 · C 0.04 · H 15
#fdb9c2 L 0.85 · C 0.08 · H 10
#e3839a L 0.72 · C 0.12 · H 5
#aa6078 L 0.58 · C 0.1 · H 0
#6a3c52 L 0.42 · C 0.07 · H 350

Create Dusty Rose 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 15)',
    'oklch(0.85 0.08 10)',
    'oklch(0.72 0.12 5)',
    'oklch(0.58 0.10 0)',
    'oklch(0.42 0.07 350)',
]);
use PhpColor\Color\Palette\ColorPalette; $palette = ColorPalette::parse([ 'oklch(0.94 0.04 15)', 'oklch(0.85 0.08 10)', 'oklch(0.72 0.12 5)', 'oklch(0.58 0.10 0)', 'oklch(0.42 0.07 350)', ]);

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 Dusty Rose 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();