freshbrewedweb/colored-words

PHP utility to convert colors to their closest CSS color name.

Installs: 33

Dependents: 0

Suggesters: 0

Security: 0

Stars: 3

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/freshbrewedweb/colored-words

dev-master 2017-05-26 18:58 UTC

This package is auto-updated.

Last update: 2025-09-21 22:17:58 UTC


README

PHP utility to convert colors to their closest CSS color name.

Usage

$word = "Blue-pastel";
$color = new ColoredWords( $word );

echo $color->convert()->name();

Results in lightblue

Demo

View the demo

API

  • get gets the resulting matches.
  • exactMatch matches exact names.
  • match loosely matches names.
  • sortByRelevance adds a score to matches and sorts the array.
  • convert sets the best match by relevance.
  • name gets the converted name;
  • hex gets the hex code of the converted name.