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
Requires
- php: >=5.6
This package is auto-updated.
Last update: 2025-10-21 22:34:30 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
API
getgets the resulting matches.exactMatchmatches exact names.matchloosely matches names.sortByRelevanceadds a score to matches and sorts the array.convertsets the best match by relevance.namegets the converted name;hexgets the hex code of the converted name.