#e8f3ff
L 0.96 · C 0.02 · H 250
Corporate Blue
Professional and trustworthy blues for enterprise applications.
- Mood
- Cool
- Colors
- 5
- Space
- OKLCH
Corporate Blue, color by color
The default-safe enterprise blue, done with perceptual spacing so the ramp never bands. Light stops make surfaces, the mid blues handle primary actions, and the darkest carries text on light backgrounds. Reliable for finance, SaaS, and admin tooling.
#b4d0f5
L 0.85 · C 0.06 · H 255
#5a8ee4
L 0.65 · C 0.14 · H 260
#1740cc
L 0.45 · C 0.22 · H 265
#100075
L 0.25 · C 0.18 · H 270
Create Corporate Blue 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.96 0.02 250)',
'oklch(0.85 0.06 255)',
'oklch(0.65 0.14 260)',
'oklch(0.45 0.22 265)',
'oklch(0.25 0.18 270)',
]);
use PhpColor\Color\Palette\ColorPalette;
$palette = ColorPalette::parse([
'oklch(0.96 0.02 250)',
'oklch(0.85 0.06 255)',
'oklch(0.65 0.14 260)',
'oklch(0.45 0.22 265)',
'oklch(0.25 0.18 270)',
]);
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 Corporate Blue 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();