Neon Lime

Highly synthetic green for extreme energy.

Mood
Vivid
Colors
5
Space
OKLCH

Neon Lime, color by color

Highly synthetic green for extreme energy.

#88ff00 L 0.92 · C 0.28 · H 135
#95eb00 L 0.85 · C 0.25 · H 130
#86b900 L 0.72 · C 0.22 · H 125
#6e8700 L 0.58 · C 0.18 · H 120
#4c5300 L 0.42 · C 0.12 · H 115

Create Neon Lime 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.92 0.28 135)',
    'oklch(0.85 0.25 130)',
    'oklch(0.72 0.22 125)',
    'oklch(0.58 0.18 120)',
    'oklch(0.42 0.12 115)',
]);
use PhpColor\Color\Palette\ColorPalette; $palette = ColorPalette::parse([ 'oklch(0.92 0.28 135)', 'oklch(0.85 0.25 130)', 'oklch(0.72 0.22 125)', 'oklch(0.58 0.18 120)', 'oklch(0.42 0.12 115)', ]);

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 Neon Lime 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();