Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

Large list of handpicked color names 🌈

License

NotificationsYou must be signed in to change notification settings

meodai/color-names

Repository files navigation

Color Names

Actions StatusGitHub releasenpm versionnpmname countgithub sponsor count

A handpicked list of30282 unique color names fromvarious sources and thousands of curated user submissions.

The names of color function like a thread attached to a frightfully slenderneedle, capable of stitching together our most delicate emotions and memories.When the needle hits the target, we feel either pleasure or empathy.Kenya Hara – White

Explore / Find Names |Name distribution in different models |Usage |CDN |Public Rest API |Usage JS/Java/Kotlin/C# |Name Sources |Latest Color Names |Sponsors

About 📋

The aim of this project is to create a list of color names as large as possible,while keeping a good name quality. We've merged variouslists,modified the names when there were duplicates with different hex values, andshifted the colors a bit when there were identical colors with different names.

Explore 🌍

Color Name Submission 💌

via form 🌈/ ortwitter 🐦

Make sure to read thenaming rules before you contribute!

Color Count:30282 🎉

~0.18% of the RGB color space

3d representation of color distribution in RGB Space (Preview image of link above)

When coming up with new color names, it is vital to know what spots in acertain color-space are crowded and where there is still room for new colors.For example: Our API returns the closestRGB color to a givenHEX value.To avoid too many colors snapping to the same name, we aim to distribute thecolors evenly in the color space:Visualization

Usage 📖

Node.js Installation 📦

Size Warning (1.15 MB): If you are doing this in the browser,consider using thepublic rest API

npm install color-name-list --save

oryarn add color-name-list

CDN 🌍

All Names 📚

JSON/JSON.min/CSV/YML/JS/XML/HTML/SCSS

Best of Names subset 🏆

JSON/JSON.min/CSV/YML/JS/XML/HTML/SCSS/CSS

API 🃏

To make it easier to access the names, we offer a free and public Rest API thatallows you to access all the color names and names from other publicly availablename lists. You can find the full API code and documentationin this repository.

API Example Call Usage

https://api.color.pizza/v1/?values=00f,f00,f00&list=bestOf

API Disclaimer

The API is free to use and has no limitations. But if your app/site is commercialand causes excessive traffic, I might contact you to become a sponsor.

Feel free to deploy it yourself, it is very easy to host/deploy on heroku andhas no dependenciesColor-Name-API

Usage JS ⌨

Size Warning (1.15 MB): If you are doing this in the browser,consider using thepublic rest API

Exact Color

import{colornames}from'color-name-list';letsomeColor=colornames.find(color=>color.hex==='#ffffff');console.log(someColor.name);// => whiteletsomeNamedColor=colornames.find(color=>color.name==='Eigengrau')console.log(someColor.hex);// => #16161d

Closest Named Color

Since there are 16777216 possible RGB colors, you might use a library such asnearest-color orClosestVector to help you find the the closest named color.

importnearestColorfrom'nearest-color';import{colornames}from'color-name-list';// nearestColor need objects {name => hex} as inputconstcolors=colornames.reduce((o,{ name, hex})=>Object.assign(o,{[name]:hex}),{});constnearest=nearestColor.from(colors);// get closest named colornearest('#f1c1d1');// => Fairy Tale

Note: If you are looking for something visually more accurate, you coulduseDeltaE or use the above snippet, but usingciecam02 instead of RGB.

Building 🔨

npm install&& npm run build

Seepackage.json for more.

Usage Java/Kotlin ⌨

Java/Kotlin usage is maintained through this library:UwUAroze/Color-Names.Additional info can be found there, but basic usage is outlined below:

Importing - Gradle.kts

repositories {      maven("https://jitpack.io")}dependencies {      implementation("me.aroze:color-names:1.0.2")}

Importing - Maven

<repository>  <id>jitpack.io</id>  <url>https://jitpack.io</url></repository><dependency>  <groupId>me.aroze</groupId>  <artifactId>color-names</artifactId>  <version>1.0.2</version></dependency>

Closest named color - Java

publicColorNamescolorNames =newColorNameBuilder()  .loadDefaults()  .build();StringfromHex =colorNames.getName("#facfea");// "Classic Rose"StringfromRGB =colorNames.getName(224,224,255);// "Stoic White"StringfromColor =colorNames.getName(newColor(255,219,240));// "Silky Pink"

Closest named color - Kotlin

val colorNames=ColorNameBuilder()  .loadDefaults()  .build()val fromHex= colorNames.getName("#facfea")// "Classic Rose"val fromRGB= colorNames.getName(224,224,255)// "Stoic White"val fromColor= colorNames.getName(Color(255,219,240))// "Silky Pink"

Usage C# ⌨

C# usage is maintained through this library:vycdev/ColorNamesSharpAdditional info can be found there, but basic usage is outlined below:

The library is available as anuget package

Creating the instance

ColorNamescolorNames=newColorNamesBuilder().Add("Best Blue","#3299fe")// Add your own custom colors.LoadDefault()// Load the default color list.AddFromCsv("path/to/your/colorlist.csv")// Add a custom color list from a csv file.Build();// Get a new ColorNames instance that includes all the colors you've added

Getting a fitting color name

NamedColorcustomNamedColor=new("Custom Named Color",50,153,254);// You can directly get the name of the color as a stringstringcolorNameFromHex=colorNames.FindClosestColorName("#facfea");// Classic RosestringcolorNameFromRgb=colorNames.FindClosestColorName(224,224,255);// Stoic WhitestringcolorNameFromNamedColor=colorNames.FindClosestColorName(customNamedColor);// Best Blue// Or similarly you can get the NamedColor objectNamedColornamedColorFromHex=colorNames.FindClosestColorName("#facfea");// Classic RoseNamedColornamedColorFromRgb=colorNames.FindClosestColorName(224,224,255);// Stoic WhiteNamedColornamedColorFromNamedColor=colorNames.FindClosestColorName(customNamedColor);// Best Blue// Or a random colorNamedColorrandomColor=colorNames.GetRandomNamedColor();

Sources 🗒

Sources: Names 📇

Contributors 🦑

Costs & Sponsors

Sponsors

Past Sponsors

Project Costs USD

One-Time

ItemExpenditure
Logo by Metafizzy800

Periodic

ItemExpenditure
Color Name API Server264.60/year
color.pizza domain name36.16/year
Cloudflare PRO Plan240/year

Color Namers

Verena the naming overlord,Jess the name wizard,Syl,Stephanie Stutz,Simbiasamba,Jason Wilson,Inês João,Nick Niles,Qwhex,Ichatdelune,basgys, Shelina S., Trevor Elia,cheesits456,Sandhya Subram,BerylBucket,Jimmy Fitzback,TLZ,DarthTorus,Carrion,BlueChaos,nachtfunke, Sean Gibbons, Brantley Sibo

Disclaimer 👮🏾‍

In an effort to create a more inclusive and respectful environment, we strive toremove all offensive and racist names, as well as protected brand names,from our list. While we do our best to screen out such names, some may stillslip through. If you come across any such names, pleaselet us knowso that we can remove them promptly.

Latest Color Names 🔖

New colors


[8]ページ先頭

©2009-2025 Movatter.jp