Rose Gold

Soft rose pinks warming into champagne gold.

Mood
Warm
Colors
6
Space
OKLCH

Rose Gold, color by color

Soft rose pinks warming into champagne gold.

#ffe4df L 0.94 · C 0.03 · H 30
#fdc9c4 L 0.88 · C 0.06 · H 25
#f9adac L 0.82 · C 0.09 · H 20
#eda382 L 0.78 · C 0.1 · H 45
#cf976a L 0.72 · C 0.09 · H 60
#b47e60 L 0.64 · C 0.08 · H 50

Create Rose Gold 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.03 30)',
    'oklch(0.88 0.06 25)',
    'oklch(0.82 0.09 20)',
    'oklch(0.78 0.10 45)',
    'oklch(0.72 0.09 60)',
    'oklch(0.64 0.08 50)',
]);
use PhpColor\Color\Palette\ColorPalette; $palette = ColorPalette::parse([ 'oklch(0.94 0.03 30)', 'oklch(0.88 0.06 25)', 'oklch(0.82 0.09 20)', 'oklch(0.78 0.10 45)', 'oklch(0.72 0.09 60)', 'oklch(0.64 0.08 50)', ]);

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