#f5feff
L 0.99 · C 0.01 · H 220
Nordic White
Clean, airy neutrals with a hint of arctic frost.
- Mood
- Cool
- Colors
- 5
- Space
- OKLCH
Nordic White, color by color
Clean, airy neutrals with a hint of arctic frost.
#e1f2f9
L 0.95 · C 0.02 · H 225
#c4dce8
L 0.88 · C 0.03 · H 230
#96b3c4
L 0.75 · C 0.04 · H 235
#65859b
L 0.6 · C 0.05 · H 240
Create Nordic White 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.99 0.01 220)',
'oklch(0.95 0.02 225)',
'oklch(0.88 0.03 230)',
'oklch(0.75 0.04 235)',
'oklch(0.60 0.05 240)',
]);
use PhpColor\Color\Palette\ColorPalette;
$palette = ColorPalette::parse([
'oklch(0.99 0.01 220)',
'oklch(0.95 0.02 225)',
'oklch(0.88 0.03 230)',
'oklch(0.75 0.04 235)',
'oklch(0.60 0.05 240)',
]);
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 Nordic White 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();