├── .gitignore ├── README.md ├── build.js ├── dist └── colorlists.json ├── lib ├── colors │ ├── basic.json │ ├── chinese-traditional.json │ ├── html.json │ ├── japanese-traditional.json │ ├── le-corbusier.json │ ├── nbs-iscc.json │ ├── ntc.json │ ├── osxcrayons.json │ ├── ral.json │ ├── sanzo-wada-I.json │ ├── thesaurus.json │ ├── werner.json │ ├── windows.json │ ├── x11.json │ └── xkcd.json └── descriptions.json ├── package-lock.json ├── package.json ├── src └── index.js └── tea.yaml /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | lib/descriptions-prop.json 3 | lib/colors/_proprietary/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Color-Name-Lists 📚 2 | 3 | [![github sponsor count](https://img.shields.io/github/sponsors/meodai)](https://github.com/sponsors/meodai) 4 | [![npm version](https://img.shields.io/npm/v/color-name-lists.svg)](https://www.npmjs.com/package/color-name-lists) 5 | 6 | A collection of color name lists. 7 | 8 | ## Usage 9 | 10 | ```shell 11 | $ npm install color-name-lists 12 | ``` 13 | 14 | ### Node 15 | 16 | ```js 17 | import {colorNameLists} from 'color-name-lists'; 18 | 19 | colorNameLists.lists // object of lists 20 | colorNameLists.meta // description of all the lists 21 | ``` 22 | 23 | ## Lists 24 | 25 | ### Basic 26 | 27 | A set of basic colors. Red, Green, Blue... 28 | source: https://github.com/colorjs/color-namer/tree/master/lib/colors 29 | 30 | ### HTML Colors 31 | 32 | HTML/CSS color names. These can be used as keywords in CSS, SVG's or HTML. 33 | source: https://github.com/colorjs/color-namer/tree/master/lib/colors 34 | 35 | ### Traditional Colors of Japan 36 | 37 | The traditional colors of Japan are a collection of colors traditionally used in Japanese art, literature, textiles such as kimono, and other Japanese arts and crafts. 38 | source: https://en.wikipedia.org/wiki/Traditional_colors_of_Japan 39 | 40 | ### Le Corbusier 41 | 42 | Architectural colours in Le Corbusier's colour system. 43 | source: https://www.lescouleurs.ch/en/the-colours/63-colours 44 | 45 | ### The Universal Color Language 46 | 47 | ISCC–NBS System of Color Designation: Naming system for colors based on a set of 12 basic color terms and a small set of adjective modifiers. 48 | source: https://web.archive.org/web/20121103030619/http://tx4.us/nbs-iscc.htm 49 | 50 | ### NTC.js 51 | 52 | NTC.js color matching library names released in 2007. The names were collected from various sources like Wikipedia, X11, Crayola etc. 53 | source: https://github.com/colorjs/color-namer/tree/master/lib/colors 54 | 55 | ### OS X Crayons 56 | 57 | OS X Crayons color names mostly used in the OS X color-picker GUI. 58 | source: http://www.randomactsofsentience.com/2013/06/os-x-crayon-color-hex-table.html 59 | 60 | ### RAL Color 61 | 62 | RAL color matching color names 63 | source: https://jpederson.com/colornerd/ 64 | 65 | ### Robert Ridgway's Color Standards and Color Nomenclature 66 | 67 | Color Nomenclature by Robert Ridgway (1850-1929) was published in Washignton, DC in 1912, it's part of the public domain in the USA. In August 31, 2020 was added to the Gutenberg Project. 68 | source: https://github.com/davo/Color-Standards-and-Color-Nomenclature 69 | 70 | ### Wada Sanzō Japanese Color Dictionary Volume I 71 | 72 | Names from Wada Sanzō 和田 三造 Colors Dictionary volume I 73 | source: https://sanzo-wada.dmbk.io/ 74 | 75 | ### The Color Thesaurus 76 | 77 | The Color Thesaurus by Ingrid Sundberg. As a writer she collected color names to dig into the emotion of a scene and create variety in her writing. 78 | source: https://ingridsnotes.wordpress.com/2014/02/04/the-color-thesaurus/ 79 | 80 | ### Werner's Nomenclature of Colours 81 | 82 | All colors from the book Werner's Nomenclature of Colours collected and described in the late 18th century 83 | source: https://www.c82.net/werner/ 84 | 85 | ### Microsoft Windows Color Names 86 | 87 | List of colors used in legacy microsoft windows systems 88 | source: https://docs.microsoft.com/en-us/dotnet/api/system.windows.media.colors?view=windowsdesktop-6.0 89 | 90 | ### Wikipedia Color Names 91 | 92 | List color names from wikipedia 93 | source: https://github.com/meodai/wikipedia-color-names 94 | 95 | ### X11 Color Names 96 | 97 | Standard Xlib or the X11 protocol color names. 98 | source: https://en.wikipedia.org/wiki/X11_color_names 99 | 100 | ### XKCD Colors 101 | 102 | The 954 most common RGB monitor colors, as defined by several hundred thousand participants in the xkcd color name survey. 103 | source: https://xkcd.com/color/rgb/ 104 | 105 | ### Risograph Colors 106 | 107 | A list of popular colors for Risograph printers. Only includes colors with HEX, Pantone and Z-Type codes. 108 | source: https://github.com/mattdesl/riso-colors 109 | 110 | ### Traditional Colors of China 111 | 112 | Traditional Colors of China: Color Aesthetics in the Forbidden City (中国传统色:故宫里的色彩美学) colors and their transliterations 113 | source: https://github.com/ItMarki/files/blob/main/newcolorsandnames.csv 114 | -------------------------------------------------------------------------------- /build.js: -------------------------------------------------------------------------------- 1 | const path = require('path'); 2 | const lists = require('./src/index'); 3 | const fs = require('fs'); 4 | const distPath = path.join(__dirname, 'dist/'); 5 | 6 | // create a JSON file containing all the lists 7 | const output = JSON.stringify(lists, null, 2); 8 | fs.writeFileSync(distPath + 'colorlists.json', output); 9 | -------------------------------------------------------------------------------- /lib/colors/basic.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "black", 4 | "hex": "#000000" 5 | }, 6 | { 7 | "name": "blue", 8 | "hex": "#0000ff" 9 | }, 10 | { 11 | "name": "cyan", 12 | "hex": "#00ffff" 13 | }, 14 | { 15 | "name": "green", 16 | "hex": "#008000" 17 | }, 18 | { 19 | "name": "teal", 20 | "hex": "#008080" 21 | }, 22 | { 23 | "name": "turquoise", 24 | "hex": "#40e0d0" 25 | }, 26 | { 27 | "name": "indigo", 28 | "hex": "#4b0082" 29 | }, 30 | { 31 | "name": "gray", 32 | "hex": "#808080" 33 | }, 34 | { 35 | "name": "purple", 36 | "hex": "#800080" 37 | }, 38 | { 39 | "name": "brown", 40 | "hex": "#a52a2a" 41 | }, 42 | { 43 | "name": "tan", 44 | "hex": "#d2b48c" 45 | }, 46 | { 47 | "name": "violet", 48 | "hex": "#ee82ee" 49 | }, 50 | { 51 | "name": "beige", 52 | "hex": "#f5f5dc" 53 | }, 54 | { 55 | "name": "fuchsia", 56 | "hex": "#ff00ff" 57 | }, 58 | { 59 | "name": "gold", 60 | "hex": "#ffd700" 61 | }, 62 | { 63 | "name": "magenta", 64 | "hex": "#ff00ff" 65 | }, 66 | { 67 | "name": "orange", 68 | "hex": "#ffa500" 69 | }, 70 | { 71 | "name": "pink", 72 | "hex": "#ffc0cb" 73 | }, 74 | { 75 | "name": "red", 76 | "hex": "#ff0000" 77 | }, 78 | { 79 | "name": "white", 80 | "hex": "#ffffff" 81 | }, 82 | { 83 | "name": "yellow", 84 | "hex": "#ffff00" 85 | } 86 | ] -------------------------------------------------------------------------------- /lib/colors/chinese-traditional.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "transliteration": "Biǎnqīng", 4 | "hex": "#509196", 5 | "name": "扁青" 6 | }, 7 | { 8 | "transliteration": "Bànjiàn", 9 | "hex": "#fffbc7", 10 | "name": "半見" 11 | }, 12 | { 13 | "transliteration": "Báiqīng", 14 | "hex": "#98b6c2", 15 | "name": "白青" 16 | }, 17 | { 18 | "transliteration": "Bìchéng", 19 | "hex": "#12507b", 20 | "name": "碧城" 21 | }, 22 | { 23 | "transliteration": "Bìluò", 24 | "hex": "#aed0ee", 25 | "name": "碧羅" 26 | }, 27 | { 28 | "transliteration": "Bìshān", 29 | "hex": "#779649", 30 | "name": "碧山" 31 | }, 32 | { 33 | "transliteration": "Bìzī", 34 | "hex": "#90a07d", 35 | "name": "碧滋" 36 | }, 37 | { 38 | "transliteration": "Bùzào", 39 | "hex": "#a7aaa1", 40 | "name": "不皂" 41 | }, 42 | { 43 | "transliteration": "Bīngtái", 44 | "hex": "#becab7", 45 | "name": "冰台" 46 | }, 47 | { 48 | "transliteration": "Chángchūn", 49 | "hex": "#dc6b82", 50 | "name": "長春" 51 | }, 52 | { 53 | "transliteration": "Chásè", 54 | "hex": "#887657", 55 | "name": "茶色" 56 | }, 57 | { 58 | "transliteration": "Chénxiāng", 59 | "hex": "#99806c", 60 | "name": "沉香" 61 | }, 62 | { 63 | "transliteration": "Chìlíng", 64 | "hex": "#954024", 65 | "name": "赤靈" 66 | }, 67 | { 68 | "transliteration": "Chìtí", 69 | "hex": "#ba5b49", 70 | "name": "赤緹" 71 | }, 72 | { 73 | "transliteration": "Chìzhāng", 74 | "hex": "#e1c199", 75 | "name": "赤璋" 76 | }, 77 | { 78 | "transliteration": "Chúnzhī", 79 | "hex": "#c25160", 80 | "name": "唇脂" 81 | }, 82 | { 83 | "transliteration": "Chāngróng", 84 | "hex": "#dcc7e1", 85 | "name": "昌榮" 86 | }, 87 | { 88 | "transliteration": "Chēngwěi", 89 | "hex": "#ef845d", 90 | "name": "赬尾" 91 | }, 92 | { 93 | "transliteration": "Chēngxiá", 94 | "hex": "#f18f60", 95 | "name": "赬霞" 96 | }, 97 | { 98 | "transliteration": "Chēngzǐ", 99 | "hex": "#8a1874", 100 | "name": "赬紫" 101 | }, 102 | { 103 | "transliteration": "Chīyóuqí", 104 | "hex": "#a85858", 105 | "name": "蚩尤旗" 106 | }, 107 | { 108 | "transliteration": "Chūnbì", 109 | "hex": "#9d9d82", 110 | "name": "春碧" 111 | }, 112 | { 113 | "transliteration": "Chūnchén", 114 | "hex": "#a9be7b", 115 | "name": "春晨" 116 | }, 117 | { 118 | "transliteration": "Chūxiù", 119 | "hex": "#a9a773", 120 | "name": "出岫" 121 | }, 122 | { 123 | "transliteration": "Cuìpiǎo", 124 | "hex": "#b7d332", 125 | "name": "翠縹" 126 | }, 127 | { 128 | "transliteration": "Cuìqiú", 129 | "hex": "#446a37", 130 | "name": "翠虯" 131 | }, 132 | { 133 | "transliteration": "Cuìtāo", 134 | "hex": "#819d8e", 135 | "name": "翠濤" 136 | }, 137 | { 138 | "transliteration": "Cuìwēi", 139 | "hex": "#4c8045", 140 | "name": "翠微" 141 | }, 142 | { 143 | "transliteration": "Cuìzūn", 144 | "hex": "#cdd171", 145 | "name": "翠樽" 146 | }, 147 | { 148 | "transliteration": "Cíhuáng", 149 | "hex": "#b4884d", 150 | "name": "雌黃" 151 | }, 152 | { 153 | "transliteration": "Címì", 154 | "hex": "#bfc096", 155 | "name": "瓷秘" 156 | }, 157 | { 158 | "transliteration": "Cíní", 159 | "hex": "#cf929e", 160 | "name": "雌霓" 161 | }, 162 | { 163 | "transliteration": "Cāng'ài", 164 | "hex": "#5a4b3b", 165 | "name": "蒼艾" 166 | }, 167 | { 168 | "transliteration": "Cāngcāng", 169 | "hex": "#5976ba", 170 | "name": "蒼蒼" 171 | }, 172 | { 173 | "transliteration": "Cānghuáng", 174 | "hex": "#b6a014", 175 | "name": "蒼黃" 176 | }, 177 | { 178 | "transliteration": "Cāngjiā", 179 | "hex": "#a8bf8f", 180 | "name": "蒼葭" 181 | }, 182 | { 183 | "transliteration": "Cānglàng", 184 | "hex": "#b1d5c8", 185 | "name": "滄浪" 186 | }, 187 | { 188 | "transliteration": "Cāngláng", 189 | "hex": "#99bcac", 190 | "name": "蒼筤" 191 | }, 192 | { 193 | "transliteration": "Cāngyānluòzhào", 194 | "hex": "#c8b5b3", 195 | "name": "蒼煙落照" 196 | }, 197 | { 198 | "transliteration": "Cōngjiè", 199 | "hex": "#88bfb8", 200 | "name": "蔥轄" 201 | }, 202 | { 203 | "transliteration": "Cōngqiàn", 204 | "hex": "#6c8650", 205 | "name": "蔥倩" 206 | }, 207 | { 208 | "transliteration": "Cōngqīng", 209 | "hex": "#edf1bb", 210 | "name": "蔥青" 211 | }, 212 | { 213 | "transliteration": "Cǎnzǐ", 214 | "hex": "#cc73a0", 215 | "name": "黲紫" 216 | }, 217 | { 218 | "transliteration": "Cǎobái", 219 | "hex": "#bfc1a9", 220 | "name": "草白" 221 | }, 222 | { 223 | "transliteration": "Duàncháng", 224 | "hex": "#ecebc2", 225 | "name": "斷腸" 226 | }, 227 | { 228 | "transliteration": "Dàchì", 229 | "hex": "#aa9649", 230 | "name": "大赤" 231 | }, 232 | { 233 | "transliteration": "Dàizhě", 234 | "hex": "#dd6b4f", 235 | "name": "岱赭" 236 | }, 237 | { 238 | "transliteration": "Dàkuài", 239 | "hex": "#bfa782", 240 | "name": "大塊" 241 | }, 242 | { 243 | "transliteration": "Dàosè", 244 | "hex": "#226b68", 245 | "name": "䌦色" 246 | }, 247 | { 248 | "transliteration": "Dàrán", 249 | "hex": "#822327", 250 | "name": "大繎" 251 | }, 252 | { 253 | "transliteration": "Dàyún", 254 | "hex": "#94784f", 255 | "name": "大雲" 256 | }, 257 | { 258 | "transliteration": "Dìlài", 259 | "hex": "#dfceb4", 260 | "name": "地籟" 261 | }, 262 | { 263 | "transliteration": "Dìshìqīng", 264 | "hex": "#003460", 265 | "name": "帝釋青" 266 | }, 267 | { 268 | "transliteration": "Dìxuè", 269 | "hex": "#814662", 270 | "name": "地血" 271 | }, 272 | { 273 | "transliteration": "Dòngpiǎo", 274 | "hex": "#bec2b3", 275 | "name": "凍縹" 276 | }, 277 | { 278 | "transliteration": "Dānjì", 279 | "hex": "#e60012", 280 | "name": "丹罽" 281 | }, 282 | { 283 | "transliteration": "Dānshú", 284 | "hex": "#873424", 285 | "name": "丹秫" 286 | }, 287 | { 288 | "transliteration": "Dānwò", 289 | "hex": "#c8161d", 290 | "name": "丹雘" 291 | }, 292 | { 293 | "transliteration": "Dīngxiāng", 294 | "hex": "#ce93bf", 295 | "name": "丁香" 296 | }, 297 | { 298 | "transliteration": "Dīngxiānghè", 299 | "hex": "#bd9683", 300 | "name": "丁香褐" 301 | }, 302 | { 303 | "transliteration": "Dōngfāngjìbái", 304 | "hex": "#8ba3c7", 305 | "name": "東方既白" 306 | }, 307 | { 308 | "transliteration": "Fóchì", 309 | "hex": "#8f3d2c", 310 | "name": "佛赤" 311 | }, 312 | { 313 | "transliteration": "Fótóuqīng", 314 | "hex": "#19325f", 315 | "name": "佛頭青" 316 | }, 317 | { 318 | "transliteration": "Fúguāng", 319 | "hex": "#f0c2a2", 320 | "name": "扶光" 321 | }, 322 | { 323 | "transliteration": "Fúkěnhóng", 324 | "hex": "#ecd9c7", 325 | "name": "弗肯紅" 326 | }, 327 | { 328 | "transliteration": "Fúsè", 329 | "hex": "#662b2f", 330 | "name": "福色" 331 | }, 332 | { 333 | "transliteration": "Fúzǐmián", 334 | "hex": "#7e527f", 335 | "name": "拂紫綿" 336 | }, 337 | { 338 | "transliteration": "Fēngrùsōng", 339 | "hex": "#868c4e", 340 | "name": "風入松" 341 | }, 342 | { 343 | "transliteration": "Fěnmǐ", 344 | "hex": "#efc4ce", 345 | "name": "粉米" 346 | }, 347 | { 348 | "transliteration": "Fǎcuì", 349 | "hex": "#108b96", 350 | "name": "法翠" 351 | }, 352 | { 353 | "transliteration": "Guāngmíngshā", 354 | "hex": "#cc5d20", 355 | "name": "光明砂" 356 | }, 357 | { 358 | "transliteration": "Guānlǜ", 359 | "hex": "#2a6e3f", 360 | "name": "官綠" 361 | }, 362 | { 363 | "transliteration": "Gàndié", 364 | "hex": "#2c2f3b", 365 | "name": "紺蝶" 366 | }, 367 | { 368 | "transliteration": "Gànyǔ", 369 | "hex": "#003d74", 370 | "name": "紺宇" 371 | }, 372 | { 373 | "transliteration": "Gānshí", 374 | "hex": "#bdb2b2", 375 | "name": "甘石" 376 | }, 377 | { 378 | "transliteration": "Gǎoyǔ", 379 | "hex": "#efefef", 380 | "name": "縞羽" 381 | }, 382 | { 383 | "transliteration": "Gǔpiǎo", 384 | "hex": "#ebe3c7", 385 | "name": "骨縹" 386 | }, 387 | { 388 | "transliteration": "Huángbáiyóu", 389 | "hex": "#fff799", 390 | "name": "黃白遊" 391 | }, 392 | { 393 | "transliteration": "Huángbùlǎo", 394 | "hex": "#db9b34", 395 | "name": "黃不老" 396 | }, 397 | { 398 | "transliteration": "Huángcóng", 399 | "hex": "#9e8c6b", 400 | "name": "黃琮" 401 | }, 402 | { 403 | "transliteration": "Huángdān", 404 | "hex": "#ea5514", 405 | "name": "黃丹" 406 | }, 407 | { 408 | "transliteration": "Huángfēng", 409 | "hex": "#cab272", 410 | "name": "黃封" 411 | }, 412 | { 413 | "transliteration": "Huánghéliúlí", 414 | "hex": "#e5a84b", 415 | "name": "黃河琉璃" 416 | }, 417 | { 418 | "transliteration": "Huángliáng", 419 | "hex": "#c4b798", 420 | "name": "黃粱" 421 | }, 422 | { 423 | "transliteration": "Huángliú", 424 | "hex": "#9f6027", 425 | "name": "黃流" 426 | }, 427 | { 428 | "transliteration": "Huángluó", 429 | "hex": "#b4a379", 430 | "name": "黃螺" 431 | }, 432 | { 433 | "transliteration": "Huánglìliú", 434 | "hex": "#fedc5e", 435 | "name": "黃栗留" 436 | }, 437 | { 438 | "transliteration": "Huángrùn", 439 | "hex": "#dfd6b8", 440 | "name": "黃潤" 441 | }, 442 | { 443 | "transliteration": "Huángāi", 444 | "hex": "#b49273", 445 | "name": "黃埃" 446 | }, 447 | { 448 | "transliteration": "Huāqīng", 449 | "hex": "#1a2847", 450 | "name": "花青" 451 | }, 452 | { 453 | "transliteration": "Hèdǐnghóng", 454 | "hex": "#d24735", 455 | "name": "鶴頂紅" 456 | }, 457 | { 458 | "transliteration": "Hóngténgzhàng", 459 | "hex": "#928187", 460 | "name": "紅藤杖" 461 | }, 462 | { 463 | "transliteration": "Hóngyǒu", 464 | "hex": "#d9883d", 465 | "name": "紅友" 466 | }, 467 | { 468 | "transliteration": "Hóngzhí", 469 | "hex": "#cd7372", 470 | "name": "紅䵂" 471 | }, 472 | { 473 | "transliteration": "Hóngzhízhú", 474 | "hex": "#b83570", 475 | "name": "紅躑躅" 476 | }, 477 | { 478 | "transliteration": "Hēizhū", 479 | "hex": "#70695d", 480 | "name": "黑朱" 481 | }, 482 | { 483 | "transliteration": "Hǎitiānxiá", 484 | "hex": "#f3a694", 485 | "name": "海天霞" 486 | }, 487 | { 488 | "transliteration": "Jiàngshā", 489 | "hex": "#b27777", 490 | "name": "絳紗" 491 | }, 492 | { 493 | "transliteration": "Jiàngzhēnxiāng", 494 | "hex": "#9e8358", 495 | "name": "降真香" 496 | }, 497 | { 498 | "transliteration": "Jièshízǐ", 499 | "hex": "#602641", 500 | "name": "芥拾紫" 501 | }, 502 | { 503 | "transliteration": "Jiélǜ", 504 | "hex": "#555f4d", 505 | "name": "結綠" 506 | }, 507 | { 508 | "transliteration": "Jiāhuī", 509 | "hex": "#beb1aa", 510 | "name": "葭灰" 511 | }, 512 | { 513 | "transliteration": "Jiāndé", 514 | "hex": "#6f94cd", 515 | "name": "監德" 516 | }, 517 | { 518 | "transliteration": "Jiānghuáng", 519 | "hex": "#d6c560", 520 | "name": "薑黃" 521 | }, 522 | { 523 | "transliteration": "Jiānxiāng", 524 | "hex": "#d5c8a0", 525 | "name": "縑緗" 526 | }, 527 | { 528 | "transliteration": "Jiāofáng", 529 | "hex": "#db9c5e", 530 | "name": "椒房" 531 | }, 532 | { 533 | "transliteration": "Jiāohè", 534 | "hex": "#72453a", 535 | "name": "椒褐" 536 | }, 537 | { 538 | "transliteration": "Jiāoyuè", 539 | "hex": "#86908a", 540 | "name": "蕉月" 541 | }, 542 | { 543 | "transliteration": "Jiātǎn", 544 | "hex": "#cad7c5", 545 | "name": "葭菼" 546 | }, 547 | { 548 | "transliteration": "Jiǎnsè", 549 | "hex": "#c6a268", 550 | "name": "繭色" 551 | }, 552 | { 553 | "transliteration": "Jiǎoyù", 554 | "hex": "#ebeee8", 555 | "name": "皦玉" 556 | }, 557 | { 558 | "transliteration": "Jiǎoyī", 559 | "hex": "#7f754c", 560 | "name": "絞衣" 561 | }, 562 | { 563 | "transliteration": "Jiǎshānnán", 564 | "hex": "#d4c1a6", 565 | "name": "假山南" 566 | }, 567 | { 568 | "transliteration": "Jiǔjīnhuáng", 569 | "hex": "#dd8078", 570 | "name": "九斤黃" 571 | }, 572 | { 573 | "transliteration": "Juànwán", 574 | "hex": "#ece093", 575 | "name": "絹紈" 576 | }, 577 | { 578 | "transliteration": "Juétóu", 579 | "hex": "#631216", 580 | "name": "爵頭" 581 | }, 582 | { 583 | "transliteration": "Jìhé", 584 | "hex": "#4f794a", 585 | "name": "芰荷" 586 | }, 587 | { 588 | "transliteration": "Jìhóng", 589 | "hex": "#7c4449", 590 | "name": "霽紅" 591 | }, 592 | { 593 | "transliteration": "Jìlán", 594 | "hex": "#3c4654", 595 | "name": "霽藍" 596 | }, 597 | { 598 | "transliteration": "Jìnqiè", 599 | "hex": "#877d52", 600 | "name": "藎篋" 601 | }, 602 | { 603 | "transliteration": "Jìnyún", 604 | "hex": "#ee7959", 605 | "name": "縉雲" 606 | }, 607 | { 608 | "transliteration": "Jíjīn", 609 | "hex": "#896d47", 610 | "name": "吉金" 611 | }, 612 | { 613 | "transliteration": "Jíliáng", 614 | "hex": "#ebeddf", 615 | "name": "吉量" 616 | }, 617 | { 618 | "transliteration": "Jùlǚ", 619 | "hex": "#aa8e59", 620 | "name": "巨呂" 621 | }, 622 | { 623 | "transliteration": "Jīnghè", 624 | "hex": "#906c4a", 625 | "name": "荊褐" 626 | }, 627 | { 628 | "transliteration": "Jīngyuán", 629 | "hex": "#31322c", 630 | "name": "京元" 631 | }, 632 | { 633 | "transliteration": "Jīnliè", 634 | "hex": "#be9457", 635 | "name": "金埒" 636 | }, 637 | { 638 | "transliteration": "Jūyī", 639 | "hex": "#d3a237", 640 | "name": "鞠衣" 641 | }, 642 | { 643 | "transliteration": "Jǐngtiān", 644 | "hex": "#a4c9cc", 645 | "name": "井天" 646 | }, 647 | { 648 | "transliteration": "Jǐnyú", 649 | "hex": "#1e2732", 650 | "name": "瑾瑜" 651 | }, 652 | { 653 | "transliteration": "Kùjīn", 654 | "hex": "#e18a3b", 655 | "name": "庫金" 656 | }, 657 | { 658 | "transliteration": "Kōngqīng", 659 | "hex": "#66889e", 660 | "name": "空青" 661 | }, 662 | { 663 | "transliteration": "Kǒngquèlán", 664 | "hex": "#4994c4", 665 | "name": "孔雀藍" 666 | }, 667 | { 668 | "transliteration": "Liánhóng", 669 | "hex": "#d9a0b3", 670 | "name": "蓮紅" 671 | }, 672 | { 673 | "transliteration": "Liúhuáng", 674 | "hex": "#8b7042", 675 | "name": "流黃" 676 | }, 677 | { 678 | "transliteration": "Luánhuá", 679 | "hex": "#c0ad5e", 680 | "name": "欒華" 681 | }, 682 | { 683 | "transliteration": "Luòshénzhū", 684 | "hex": "#d23918", 685 | "name": "洛神珠" 686 | }, 687 | { 688 | "transliteration": "Luóqīng", 689 | "hex": "#3f503b", 690 | "name": "螺青" 691 | }, 692 | { 693 | "transliteration": "Luózidài", 694 | "hex": "#13393e", 695 | "name": "螺子黛" 696 | }, 697 | { 698 | "transliteration": "Luǎnsè", 699 | "hex": "#d5e3d4", 700 | "name": "卵色" 701 | }, 702 | { 703 | "transliteration": "Láncǎihé", 704 | "hex": "#06536f", 705 | "name": "藍采和" 706 | }, 707 | { 708 | "transliteration": "Lánggānzǐ", 709 | "hex": "#cb5c83", 710 | "name": "瑯玕紫" 711 | }, 712 | { 713 | "transliteration": "Lántiáo", 714 | "hex": "#a8b78c", 715 | "name": "蘭苕" 716 | }, 717 | { 718 | "transliteration": "Léiyǔchuí", 719 | "hex": "#7a7b78", 720 | "name": "雷雨垂" 721 | }, 722 | { 723 | "transliteration": "Lìké", 724 | "hex": "#775039", 725 | "name": "栗殼" 726 | }, 727 | { 728 | "transliteration": "Lìshòu", 729 | "hex": "#756c4b", 730 | "name": "綟綬" 731 | }, 732 | { 733 | "transliteration": "Línglù", 734 | "hex": "#a6bab1", 735 | "name": "醽醁" 736 | }, 737 | { 738 | "transliteration": "Lónggāozhú", 739 | "hex": "#de82a7", 740 | "name": "龍膏燭" 741 | }, 742 | { 743 | "transliteration": "Lóngzhàn", 744 | "hex": "#5f4321", 745 | "name": "龍戰" 746 | }, 747 | { 748 | "transliteration": "Lùbō", 749 | "hex": "#9bb496", 750 | "name": "淥波" 751 | }, 752 | { 753 | "transliteration": "Lùhè", 754 | "hex": "#bd8253", 755 | "name": "露褐" 756 | }, 757 | { 758 | "transliteration": "Lùzhú", 759 | "hex": "#698e6a", 760 | "name": "菉竹" 761 | }, 762 | { 763 | "transliteration": "Lǎofúshén", 764 | "hex": "#aa8534", 765 | "name": "老茯神" 766 | }, 767 | { 768 | "transliteration": "Lǎosēngyī", 769 | "hex": "#a46244", 770 | "name": "老僧衣" 771 | }, 772 | { 773 | "transliteration": "Lǜdòuhè", 774 | "hex": "#92896b", 775 | "name": "綠豆褐" 776 | }, 777 | { 778 | "transliteration": "Lǜshěn", 779 | "hex": "#938f4c", 780 | "name": "綠沈" 781 | }, 782 | { 783 | "transliteration": "Lǜyún", 784 | "hex": "#45493d", 785 | "name": "綠雲" 786 | }, 787 | { 788 | "transliteration": "Mèidié", 789 | "hex": "#bc6e37", 790 | "name": "媚蝶" 791 | }, 792 | { 793 | "transliteration": "Mèigé", 794 | "hex": "#9f5221", 795 | "name": "韎韐" 796 | }, 797 | { 798 | "transliteration": "Méiméi", 799 | "hex": "#4e6548", 800 | "name": "莓莓" 801 | }, 802 | { 803 | "transliteration": "Mìhè", 804 | "hex": "#683632", 805 | "name": "蜜褐" 806 | }, 807 | { 808 | "transliteration": "Mìhé", 809 | "hex": "#dfd7c2", 810 | "name": "蜜合" 811 | }, 812 | { 813 | "transliteration": "Mìngqìng", 814 | "hex": "#454659", 815 | "name": "䒌靘" 816 | }, 817 | { 818 | "transliteration": "Mìtuósēng", 819 | "hex": "#b3934b", 820 | "name": "密陀僧" 821 | }, 822 | { 823 | "transliteration": "Mílóuhuī", 824 | "hex": "#91828f", 825 | "name": "迷樓灰" 826 | }, 827 | { 828 | "transliteration": "Míngcháhè", 829 | "hex": "#9e8368", 830 | "name": "明茶褐" 831 | }, 832 | { 833 | "transliteration": "Míngkē", 834 | "hex": "#b3b59c", 835 | "name": "鳴珂" 836 | }, 837 | { 838 | "transliteration": "Míngsè", 839 | "hex": "#665f4d", 840 | "name": "冥色" 841 | }, 842 | { 843 | "transliteration": "Míngyuèdāng", 844 | "hex": "#d4d3ca", 845 | "name": "明月璫" 846 | }, 847 | { 848 | "transliteration": "Mòcǎn", 849 | "hex": "#585248", 850 | "name": "墨黲" 851 | }, 852 | { 853 | "transliteration": "Mùjǐn", 854 | "hex": "#ba79b1", 855 | "name": "木槿" 856 | }, 857 | { 858 | "transliteration": "Mùlán", 859 | "hex": "#662b1f", 860 | "name": "木蘭" 861 | }, 862 | { 863 | "transliteration": "Mùshānzǐ", 864 | "hex": "#a4abd6", 865 | "name": "暮山紫" 866 | }, 867 | { 868 | "transliteration": "Mùtóngzǐ", 869 | "hex": "#5b3222", 870 | "name": "目童子" 871 | }, 872 | { 873 | "transliteration": "Měirénjì", 874 | "hex": "#c35c6a", 875 | "name": "美人祭" 876 | }, 877 | { 878 | "transliteration": "Mǐtāngjiāo", 879 | "hex": "#eeead9", 880 | "name": "米湯嬌" 881 | }, 882 | { 883 | "transliteration": "Nèn'éhuáng", 884 | "hex": "#f2c867", 885 | "name": "嫩鵝黃" 886 | }, 887 | { 888 | "transliteration": "Níngyèzǐ", 889 | "hex": "#422256", 890 | "name": "凝夜紫" 891 | }, 892 | { 893 | "transliteration": "Níngzhī", 894 | "hex": "#f5f2e9", 895 | "name": "凝脂" 896 | }, 897 | { 898 | "transliteration": "Nǚzhēnhuáng", 899 | "hex": "#f7eead", 900 | "name": "女貞黃" 901 | }, 902 | { 903 | "transliteration": "Piǎobì", 904 | "hex": "#80a492", 905 | "name": "縹碧" 906 | }, 907 | { 908 | "transliteration": "Pèijiǔ", 909 | "hex": "#ac9f8a", 910 | "name": "佩玖" 911 | }, 912 | { 913 | "transliteration": "Pútáohè", 914 | "hex": "#9e696d", 915 | "name": "葡萄褐" 916 | }, 917 | { 918 | "transliteration": "Pǐnyuè", 919 | "hex": "#8aabcc", 920 | "name": "品月" 921 | }, 922 | { 923 | "transliteration": "Qiànfá", 924 | "hex": "#9e2a22", 925 | "name": "綪茷" 926 | }, 927 | { 928 | "transliteration": "Qièlán", 929 | "hex": "#88abda", 930 | "name": "竊藍" 931 | }, 932 | { 933 | "transliteration": "Qiéluó", 934 | "hex": "#6d5c3d", 935 | "name": "伽羅" 936 | }, 937 | { 938 | "transliteration": "Qióngjū", 939 | "hex": "#d77f66", 940 | "name": "瓊琚" 941 | }, 942 | { 943 | "transliteration": "Qiúlín", 944 | "hex": "#343041", 945 | "name": "璆琳" 946 | }, 947 | { 948 | "transliteration": "Qiānshāncuì", 949 | "hex": "#6b7d73", 950 | "name": "千山翠" 951 | }, 952 | { 953 | "transliteration": "Qiūlán", 954 | "hex": "#7d929f", 955 | "name": "秋藍" 956 | }, 957 | { 958 | "transliteration": "Qiūxiāng", 959 | "hex": "#bf9c46", 960 | "name": "秋香" 961 | }, 962 | { 963 | "transliteration": "Qiǎnyún", 964 | "hex": "#eaeef1", 965 | "name": "淺雲" 966 | }, 967 | { 968 | "transliteration": "Quányuán", 969 | "hex": "#ce8892", 970 | "name": "縓緣" 971 | }, 972 | { 973 | "transliteration": "Quèméi", 974 | "hex": "#788a6f", 975 | "name": "雀梅" 976 | }, 977 | { 978 | "transliteration": "Qílín", 979 | "hex": "#12264f", 980 | "name": "騏驎" 981 | }, 982 | { 983 | "transliteration": "Qílínjié", 984 | "hex": "#4c1e1a", 985 | "name": "麒麟竭" 986 | }, 987 | { 988 | "transliteration": "Qíndān", 989 | "hex": "#e94829", 990 | "name": "檎丹" 991 | }, 992 | { 993 | "transliteration": "Qíngshān", 994 | "hex": "#a3bbdb", 995 | "name": "晴山" 996 | }, 997 | { 998 | "transliteration": "Qízǐ", 999 | "hex": "#6c216d", 1000 | "name": "齊紫" 1001 | }, 1002 | { 1003 | "transliteration": "Qúnqīng", 1004 | "hex": "#2e59a7", 1005 | "name": "群青" 1006 | }, 1007 | { 1008 | "transliteration": "Qīgū", 1009 | "hex": "#5d8351", 1010 | "name": "漆姑" 1011 | }, 1012 | { 1013 | "transliteration": "Qīngbáiyù", 1014 | "hex": "#cac5a0", 1015 | "name": "青白玉" 1016 | }, 1017 | { 1018 | "transliteration": "Qīngcàn", 1019 | "hex": "#c3d94e", 1020 | "name": "青粲" 1021 | }, 1022 | { 1023 | "transliteration": "Qīngdài", 1024 | "hex": "#45465e", 1025 | "name": "青黛" 1026 | }, 1027 | { 1028 | "transliteration": "Qīngguā", 1029 | "hex": "#284852", 1030 | "name": "青緺" 1031 | }, 1032 | { 1033 | "transliteration": "Qīngguī", 1034 | "hex": "#92905d", 1035 | "name": "青圭" 1036 | }, 1037 | { 1038 | "transliteration": "Qīnggǔ", 1039 | "hex": "#b3bda9", 1040 | "name": "青古" 1041 | }, 1042 | { 1043 | "transliteration": "Qīngluán", 1044 | "hex": "#9aa7b1", 1045 | "name": "青鸞" 1046 | }, 1047 | { 1048 | "transliteration": "Qīnglí", 1049 | "hex": "#422517", 1050 | "name": "青驪" 1051 | }, 1052 | { 1053 | "transliteration": "Qīngméi", 1054 | "hex": "#778a77", 1055 | "name": "青梅" 1056 | }, 1057 | { 1058 | "transliteration": "Qīngmíng", 1059 | "hex": "#3271ae", 1060 | "name": "青冥" 1061 | }, 1062 | { 1063 | "transliteration": "Qīngqiū", 1064 | "hex": "#81a380", 1065 | "name": "青楸" 1066 | }, 1067 | { 1068 | "transliteration": "Qīngquètóudài", 1069 | "hex": "#354e6b", 1070 | "name": "青雀頭黛" 1071 | }, 1072 | { 1073 | "transliteration": "Qīngqīng", 1074 | "hex": "#4f6f46", 1075 | "name": "青青" 1076 | }, 1077 | { 1078 | "transliteration": "Qīngwò", 1079 | "hex": "#007175", 1080 | "name": "青雘" 1081 | }, 1082 | { 1083 | "transliteration": "Qīngyù'àn", 1084 | "hex": "#a8b092", 1085 | "name": "青玉案" 1086 | }, 1087 | { 1088 | "transliteration": "Qūchén", 1089 | "hex": "#c0d09d", 1090 | "name": "麴塵" 1091 | }, 1092 | { 1093 | "transliteration": "Qǐqián", 1094 | "hex": "#d8de8a", 1095 | "name": "綺錢" 1096 | }, 1097 | { 1098 | "transliteration": "Ruólán", 1099 | "hex": "#6e9bc5", 1100 | "name": "挼藍" 1101 | }, 1102 | { 1103 | "transliteration": "Ruǎncuì", 1104 | "hex": "#006d87", 1105 | "name": "軟翠" 1106 | }, 1107 | { 1108 | "transliteration": "Rénlài", 1109 | "hex": "#9ebc19", 1110 | "name": "人籟" 1111 | }, 1112 | { 1113 | "transliteration": "Ròuhóng", 1114 | "hex": "#ddc5b8", 1115 | "name": "肉紅" 1116 | }, 1117 | { 1118 | "transliteration": "Róngróngyuè", 1119 | "hex": "#bec2bc", 1120 | "name": "溶溶月" 1121 | }, 1122 | { 1123 | "transliteration": "Róulán", 1124 | "hex": "#106898", 1125 | "name": "柔藍" 1126 | }, 1127 | { 1128 | "transliteration": "Rúlǜ", 1129 | "hex": "#a35f65", 1130 | "name": "茹藘" 1131 | }, 1132 | { 1133 | "transliteration": "Rúmènglíng", 1134 | "hex": "#ddbb99", 1135 | "name": "如夢令" 1136 | }, 1137 | { 1138 | "transliteration": "Shuāngdì", 1139 | "hex": "#c7c6b6", 1140 | "name": "霜地" 1141 | }, 1142 | { 1143 | "transliteration": "Shuǐhuázhū", 1144 | "hex": "#a72126", 1145 | "name": "水華朱" 1146 | }, 1147 | { 1148 | "transliteration": "Shuǐhóng", 1149 | "hex": "#ecb0c1", 1150 | "name": "水紅" 1151 | }, 1152 | { 1153 | "transliteration": "Shuǐlóngyín", 1154 | "hex": "#84a729", 1155 | "name": "水龍吟" 1156 | }, 1157 | { 1158 | "transliteration": "Shào'ài", 1159 | "hex": "#e3eb98", 1160 | "name": "少艾" 1161 | }, 1162 | { 1163 | "transliteration": "Shàoyī", 1164 | "hex": "#a8a19c", 1165 | "name": "紹衣" 1166 | }, 1167 | { 1168 | "transliteration": "Sháofěn", 1169 | "hex": "#e0e0d0", 1170 | "name": "韶粉" 1171 | }, 1172 | { 1173 | "transliteration": "Shèxiānghè", 1174 | "hex": "#694b3c", 1175 | "name": "麝香褐" 1176 | }, 1177 | { 1178 | "transliteration": "Shífà", 1179 | "hex": "#6a8d52", 1180 | "name": "石發" 1181 | }, 1182 | { 1183 | "transliteration": "Shíliánhè", 1184 | "hex": "#92897b", 1185 | "name": "石蓮褐" 1186 | }, 1187 | { 1188 | "transliteration": "Shíliúqún", 1189 | "hex": "#b13b2e", 1190 | "name": "石榴裙" 1191 | }, 1192 | { 1193 | "transliteration": "Shílǜ", 1194 | "hex": "#206864", 1195 | "name": "石綠" 1196 | }, 1197 | { 1198 | "transliteration": "Shímì", 1199 | "hex": "#d4bf89", 1200 | "name": "石蜜" 1201 | }, 1202 | { 1203 | "transliteration": "Shíniè", 1204 | "hex": "#686a67", 1205 | "name": "石涅" 1206 | }, 1207 | { 1208 | "transliteration": "Shíyàngjǐn", 1209 | "hex": "#f8c6b5", 1210 | "name": "十樣錦" 1211 | }, 1212 | { 1213 | "transliteration": "Shíyīng", 1214 | "hex": "#c8b6bb", 1215 | "name": "石英" 1216 | }, 1217 | { 1218 | "transliteration": "Shùnshèng", 1219 | "hex": "#7c191e", 1220 | "name": "順聖" 1221 | }, 1222 | { 1223 | "transliteration": "Shānfán", 1224 | "hex": "#f5f3f2", 1225 | "name": "山礬" 1226 | }, 1227 | { 1228 | "transliteration": "Shānhúhè", 1229 | "hex": "#c12c1f", 1230 | "name": "珊瑚赫" 1231 | }, 1232 | { 1233 | "transliteration": "Shānlán", 1234 | "hex": "#bed2bb", 1235 | "name": "山嵐" 1236 | }, 1237 | { 1238 | "transliteration": "Shāxíng", 1239 | "hex": "#bfa670", 1240 | "name": "沙餳" 1241 | }, 1242 | { 1243 | "transliteration": "Sùcǎi", 1244 | "hex": "#d4dde1", 1245 | "name": "素采" 1246 | }, 1247 | { 1248 | "transliteration": "Sùqí", 1249 | "hex": "#595333", 1250 | "name": "素綦" 1251 | }, 1252 | { 1253 | "transliteration": "Sānglěi", 1254 | "hex": "#ead89a", 1255 | "name": "桑蕾" 1256 | }, 1257 | { 1258 | "transliteration": "Sāngōngzǐ", 1259 | "hex": "#663d74", 1260 | "name": "三公子" 1261 | }, 1262 | { 1263 | "transliteration": "Sōnghuā", 1264 | "hex": "#ffee6f", 1265 | "name": "松花" 1266 | }, 1267 | { 1268 | "transliteration": "Sōnglán", 1269 | "hex": "#6b798e", 1270 | "name": "菘藍" 1271 | }, 1272 | { 1273 | "transliteration": "Sūfāng", 1274 | "hex": "#81474c", 1275 | "name": "蘇方" 1276 | }, 1277 | { 1278 | "transliteration": "Sūméi", 1279 | "hex": "#dd7694", 1280 | "name": "蘇梅" 1281 | }, 1282 | { 1283 | "transliteration": "Tiánchì", 1284 | "hex": "#e1d384", 1285 | "name": "田赤" 1286 | }, 1287 | { 1288 | "transliteration": "Tiáoróng", 1289 | "hex": "#ed6d3d", 1290 | "name": "苕榮" 1291 | }, 1292 | { 1293 | "transliteration": "Tiānpiǎo", 1294 | "hex": "#d5ebe1", 1295 | "name": "天縹" 1296 | }, 1297 | { 1298 | "transliteration": "Tiānqiú", 1299 | "hex": "#e0dfc6", 1300 | "name": "天球" 1301 | }, 1302 | { 1303 | "transliteration": "Tiānshuǐbì", 1304 | "hex": "#5aa4ae", 1305 | "name": "天水碧" 1306 | }, 1307 | { 1308 | "transliteration": "Tiělí", 1309 | "hex": "#46433b", 1310 | "name": "驖驪" 1311 | }, 1312 | { 1313 | "transliteration": "Tuìhóng", 1314 | "hex": "#f0cfe3", 1315 | "name": "退紅" 1316 | }, 1317 | { 1318 | "transliteration": "Tuóhè", 1319 | "hex": "#7c5b3e", 1320 | "name": "駝褐" 1321 | }, 1322 | { 1323 | "transliteration": "Tàishīqīng", 1324 | "hex": "#547689", 1325 | "name": "太師青" 1326 | }, 1327 | { 1328 | "transliteration": "Tàiyīyúliáng", 1329 | "hex": "#d5b45c", 1330 | "name": "太一餘糧" 1331 | }, 1332 | { 1333 | "transliteration": "Táigǔ", 1334 | "hex": "#79836c", 1335 | "name": "苔古" 1336 | }, 1337 | { 1338 | "transliteration": "Tánchún", 1339 | "hex": "#da9e8c", 1340 | "name": "檀唇" 1341 | }, 1342 | { 1343 | "transliteration": "Tánglí", 1344 | "hex": "#b15a43", 1345 | "name": "棠梨" 1346 | }, 1347 | { 1348 | "transliteration": "Tánglíhè", 1349 | "hex": "#955a42", 1350 | "name": "棠梨褐" 1351 | }, 1352 | { 1353 | "transliteration": "Tánhè", 1354 | "hex": "#945635", 1355 | "name": "檀褐" 1356 | }, 1357 | { 1358 | "transliteration": "Tánsè", 1359 | "hex": "#b26d5d", 1360 | "name": "檀色" 1361 | }, 1362 | { 1363 | "transliteration": "Táoyāo", 1364 | "hex": "#f6bec8", 1365 | "name": "桃夭" 1366 | }, 1367 | { 1368 | "transliteration": "Tíngwúlǜ", 1369 | "hex": "#68945c", 1370 | "name": "庭蕪綠" 1371 | }, 1372 | { 1373 | "transliteration": "Tóngguǎn", 1374 | "hex": "#e2a2ac", 1375 | "name": "彤管" 1376 | }, 1377 | { 1378 | "transliteration": "Tóngqīng", 1379 | "hex": "#3d8e86", 1380 | "name": "銅青" 1381 | }, 1382 | { 1383 | "transliteration": "Tīnghóng", 1384 | "hex": "#b04552", 1385 | "name": "鞓紅" 1386 | }, 1387 | { 1388 | "transliteration": "Tǎjiàn", 1389 | "hex": "#151d29", 1390 | "name": "獺見" 1391 | }, 1392 | { 1393 | "transliteration": "Tǔshòulán", 1394 | "hex": "#4182a4", 1395 | "name": "吐綬藍" 1396 | }, 1397 | { 1398 | "transliteration": "Wángchú", 1399 | "hex": "#a99f70", 1400 | "name": "王芻" 1401 | }, 1402 | { 1403 | "transliteration": "Wèihóng", 1404 | "hex": "#a73766", 1405 | "name": "魏紅" 1406 | }, 1407 | { 1408 | "transliteration": "Wèizǐ", 1409 | "hex": "#903754", 1410 | "name": "魏紫" 1411 | }, 1412 | { 1413 | "transliteration": "Wòzhě", 1414 | "hex": "#dd6b7b", 1415 | "name": "渥赭" 1416 | }, 1417 | { 1418 | "transliteration": "Wēnfú", 1419 | "hex": "#984f31", 1420 | "name": "縕韍" 1421 | }, 1422 | { 1423 | "transliteration": "Wǎnyǎn", 1424 | "hex": "#a9a886", 1425 | "name": "琬琰" 1426 | }, 1427 | { 1428 | "transliteration": "Xiàyuè", 1429 | "hex": "#d2af9d", 1430 | "name": "夏籥" 1431 | }, 1432 | { 1433 | "transliteration": "Xiánchí", 1434 | "hex": "#daa9a9", 1435 | "name": "咸池" 1436 | }, 1437 | { 1438 | "transliteration": "Xiānglúzǐyān", 1439 | "hex": "#d3ccd6", 1440 | "name": "香爐紫煙" 1441 | }, 1442 | { 1443 | "transliteration": "Xiāngpí", 1444 | "hex": "#d8d1c5", 1445 | "name": "香皮" 1446 | }, 1447 | { 1448 | "transliteration": "Xiāngyè", 1449 | "hex": "#ecd452", 1450 | "name": "緗葉" 1451 | }, 1452 | { 1453 | "transliteration": "Xiānmǐ", 1454 | "hex": "#d4c9aa", 1455 | "name": "仙米" 1456 | }, 1457 | { 1458 | "transliteration": "Xiāoyáoyóu", 1459 | "hex": "#b2bfc3", 1460 | "name": "逍遙遊" 1461 | }, 1462 | { 1463 | "transliteration": "Xiǎohóng", 1464 | "hex": "#e67762", 1465 | "name": "小紅" 1466 | }, 1467 | { 1468 | "transliteration": "Xuánjiǎo", 1469 | "hex": "#a9a082", 1470 | "name": "玄校" 1471 | }, 1472 | { 1473 | "transliteration": "Xuántiān", 1474 | "hex": "#6b5458", 1475 | "name": "玄天" 1476 | }, 1477 | { 1478 | "transliteration": "Xìchì", 1479 | "hex": "#cb523e", 1480 | "name": "赩熾" 1481 | }, 1482 | { 1483 | "transliteration": "Xìngzǐ", 1484 | "hex": "#da9233", 1485 | "name": "杏子" 1486 | }, 1487 | { 1488 | "transliteration": "Xíngxiāngzǐ", 1489 | "hex": "#bfb99c", 1490 | "name": "行香子" 1491 | }, 1492 | { 1493 | "transliteration": "Xīlán", 1494 | "hex": "#e3adb9", 1495 | "name": "夕嵐" 1496 | }, 1497 | { 1498 | "transliteration": "Xīnggāng", 1499 | "hex": "#f5b087", 1500 | "name": "騂剛" 1501 | }, 1502 | { 1503 | "transliteration": "Xīngláng", 1504 | "hex": "#bcd4e7", 1505 | "name": "星郎" 1506 | }, 1507 | { 1508 | "transliteration": "Xīxì", 1509 | "hex": "#5f766a", 1510 | "name": "翕赩" 1511 | }, 1512 | { 1513 | "transliteration": "Xīzǐ", 1514 | "hex": "#87c0ca", 1515 | "name": "西子" 1516 | }, 1517 | { 1518 | "transliteration": "Xūnhuáng", 1519 | "hex": "#ba5140", 1520 | "name": "纁黃" 1521 | }, 1522 | { 1523 | "transliteration": "Yuèbái", 1524 | "hex": "#d4e5ef", 1525 | "name": "月白" 1526 | }, 1527 | { 1528 | "transliteration": "Yuèpò", 1529 | "hex": "#b2b6b6", 1530 | "name": "月魄" 1531 | }, 1532 | { 1533 | "transliteration": "Yuǎnzhì", 1534 | "hex": "#81663b", 1535 | "name": "遠志" 1536 | }, 1537 | { 1538 | "transliteration": "Yáfēi", 1539 | "hex": "#c35c5d", 1540 | "name": "牙緋" 1541 | }, 1542 | { 1543 | "transliteration": "Yángfēi", 1544 | "hex": "#f091a0", 1545 | "name": "楊妃" 1546 | }, 1547 | { 1548 | "transliteration": "Yánwéi", 1549 | "hex": "#4a4b9d", 1550 | "name": "延維" 1551 | }, 1552 | { 1553 | "transliteration": "Yáohuáng", 1554 | "hex": "#d6bc46", 1555 | "name": "姚黃" 1556 | }, 1557 | { 1558 | "transliteration": "Yègān", 1559 | "hex": "#7c623f", 1560 | "name": "射干" 1561 | }, 1562 | { 1563 | "transliteration": "Yíngyíng", 1564 | "hex": "#f9d3e3", 1565 | "name": "盈盈" 1566 | }, 1567 | { 1568 | "transliteration": "Yínhè", 1569 | "hex": "#9c8d9b", 1570 | "name": "銀褐" 1571 | }, 1572 | { 1573 | "transliteration": "Yínhóng", 1574 | "hex": "#e7cad3", 1575 | "name": "銀紅" 1576 | }, 1577 | { 1578 | "transliteration": "Yínzhū", 1579 | "hex": "#d12920", 1580 | "name": "銀硃" 1581 | }, 1582 | { 1583 | "transliteration": "Yóuhúlú", 1584 | "hex": "#644d31", 1585 | "name": "油葫蘆" 1586 | }, 1587 | { 1588 | "transliteration": "Yóulǜ", 1589 | "hex": "#5d7259", 1590 | "name": "油綠" 1591 | }, 1592 | { 1593 | "transliteration": "Yóuzǐ", 1594 | "hex": "#420b2f", 1595 | "name": "油紫" 1596 | }, 1597 | { 1598 | "transliteration": "Yùjīnqún", 1599 | "hex": "#d08635", 1600 | "name": "鬱金裙" 1601 | }, 1602 | { 1603 | "transliteration": "Yùpīng", 1604 | "hex": "#eae5e3", 1605 | "name": "玉頩" 1606 | }, 1607 | { 1608 | "transliteration": "Yùsè", 1609 | "hex": "#eae4d1", 1610 | "name": "玉色" 1611 | }, 1612 | { 1613 | "transliteration": "Yùyángrǎn", 1614 | "hex": "#576470", 1615 | "name": "育陽染" 1616 | }, 1617 | { 1618 | "transliteration": "Yúbái", 1619 | "hex": "#c9cfc1", 1620 | "name": "餘白" 1621 | }, 1622 | { 1623 | "transliteration": "Yúnhuáng", 1624 | "hex": "#d2a36c", 1625 | "name": "芸黃" 1626 | }, 1627 | { 1628 | "transliteration": "Yúnmén", 1629 | "hex": "#a2d2e2", 1630 | "name": "雲門" 1631 | }, 1632 | { 1633 | "transliteration": "Yúnmǔ", 1634 | "hex": "#c6beb1", 1635 | "name": "雲母" 1636 | }, 1637 | { 1638 | "transliteration": "Yúnwù", 1639 | "hex": "#d5d1ae", 1640 | "name": "筠霧" 1641 | }, 1642 | { 1643 | "transliteration": "Yúshīqīng", 1644 | "hex": "#32788a", 1645 | "name": "魚師青" 1646 | }, 1647 | { 1648 | "transliteration": "Yāchú", 1649 | "hex": "#6a5b6d", 1650 | "name": "鴉維" 1651 | }, 1652 | { 1653 | "transliteration": "Yānhóng", 1654 | "hex": "#9d858f", 1655 | "name": "煙紅" 1656 | }, 1657 | { 1658 | "transliteration": "Yānmò", 1659 | "hex": "#5c4f55", 1660 | "name": "煙墨" 1661 | }, 1662 | { 1663 | "transliteration": "Yānzhīchóng", 1664 | "hex": "#ab1d22", 1665 | "name": "胭脂蟲" 1666 | }, 1667 | { 1668 | "transliteration": "Yānzhīshuǐ", 1669 | "hex": "#b95a89", 1670 | "name": "胭脂水" 1671 | }, 1672 | { 1673 | "transliteration": "Yānzhīzǐ", 1674 | "hex": "#b0436f", 1675 | "name": "胭脂紫" 1676 | }, 1677 | { 1678 | "transliteration": "Yīng'ér", 1679 | "hex": "#ebe1a9", 1680 | "name": "鶯兒" 1681 | }, 1682 | { 1683 | "transliteration": "Yīngbèihè", 1684 | "hex": "#8f6d5f", 1685 | "name": "鷹背褐" 1686 | }, 1687 | { 1688 | "transliteration": "Yīnghuā", 1689 | "hex": "#e4b8d5", 1690 | "name": "櫻花" 1691 | }, 1692 | { 1693 | "transliteration": "Yōutánruì", 1694 | "hex": "#615ea8", 1695 | "name": "優曇瑞" 1696 | }, 1697 | { 1698 | "transliteration": "Yǎngshēngzhǔ", 1699 | "hex": "#b49b7f", 1700 | "name": "養生主" 1701 | }, 1702 | { 1703 | "transliteration": "Yǐngqīng", 1704 | "hex": "#bdcbd2", 1705 | "name": "影青" 1706 | }, 1707 | { 1708 | "transliteration": "Yǔyúliáng", 1709 | "hex": "#e1d279", 1710 | "name": "禹餘糧" 1711 | }, 1712 | { 1713 | "transliteration": "Zhuójiàng", 1714 | "hex": "#796860", 1715 | "name": "濯絳" 1716 | }, 1717 | { 1718 | "transliteration": "Zhèhuáng", 1719 | "hex": "#c67915", 1720 | "name": "柘黃" 1721 | }, 1722 | { 1723 | "transliteration": "Zhèngqīng", 1724 | "hex": "#6ca8af", 1725 | "name": "正青" 1726 | }, 1727 | { 1728 | "transliteration": "Zhídàxiàng", 1729 | "hex": "#919177", 1730 | "name": "執大象" 1731 | }, 1732 | { 1733 | "transliteration": "Zhúyuè", 1734 | "hex": "#7f9faf", 1735 | "name": "竹月" 1736 | }, 1737 | { 1738 | "transliteration": "Zhēnglì", 1739 | "hex": "#a58a5f", 1740 | "name": "蒸栗" 1741 | }, 1742 | { 1743 | "transliteration": "Zhěluó", 1744 | "hex": "#9a6655", 1745 | "name": "赭羅" 1746 | }, 1747 | { 1748 | "transliteration": "Zhīzi", 1749 | "hex": "#fac03d", 1750 | "name": "梔子" 1751 | }, 1752 | { 1753 | "transliteration": "Zhūcǎo", 1754 | "hex": "#a64036", 1755 | "name": "朱草" 1756 | }, 1757 | { 1758 | "transliteration": "Zhūkǒngyáng", 1759 | "hex": "#b81a35", 1760 | "name": "朱孔陽" 1761 | }, 1762 | { 1763 | "transliteration": "Zhūshì", 1764 | "hex": "#ed6d46", 1765 | "name": "朱柿" 1766 | }, 1767 | { 1768 | "transliteration": "Zhūshílì", 1769 | "hex": "#81492c", 1770 | "name": "朱石栗" 1771 | }, 1772 | { 1773 | "transliteration": "Zhūyántuó", 1774 | "hex": "#f29a76", 1775 | "name": "朱顏酡" 1776 | }, 1777 | { 1778 | "transliteration": "Zhūyān", 1779 | "hex": "#b93a26", 1780 | "name": "朱殷" 1781 | }, 1782 | { 1783 | "transliteration": "Zhūyīng", 1784 | "hex": "#8f1d22", 1785 | "name": "朱櫻" 1786 | }, 1787 | { 1788 | "transliteration": "Zhūzhàn", 1789 | "hex": "#95302e", 1790 | "name": "朱湛" 1791 | }, 1792 | { 1793 | "transliteration": "Zhūzǐhè", 1794 | "hex": "#bea89d", 1795 | "name": "珠子褐" 1796 | }, 1797 | { 1798 | "transliteration": "Zànbái", 1799 | "hex": "#f6f9e4", 1800 | "name": "酇白" 1801 | }, 1802 | { 1803 | "transliteration": "Zēngqīng", 1804 | "hex": "#535164", 1805 | "name": "曾青" 1806 | }, 1807 | { 1808 | "transliteration": "Zōuchī", 1809 | "hex": "#804c2e", 1810 | "name": "緅絺" 1811 | }, 1812 | { 1813 | "transliteration": "Zǎohè", 1814 | "hex": "#68361a", 1815 | "name": "棗褐" 1816 | }, 1817 | { 1818 | "transliteration": "Zǐ'ōu", 1819 | "hex": "#7c461e", 1820 | "name": "紫甌" 1821 | }, 1822 | { 1823 | "transliteration": "Zǐbóhàn", 1824 | "hex": "#bba1cb", 1825 | "name": "紫薄汗" 1826 | }, 1827 | { 1828 | "transliteration": "Zǐdì", 1829 | "hex": "#9b8ea9", 1830 | "name": "紫菂" 1831 | }, 1832 | { 1833 | "transliteration": "Zǐfǔ", 1834 | "hex": "#995d7f", 1835 | "name": "紫府" 1836 | }, 1837 | { 1838 | "transliteration": "Zǐgào", 1839 | "hex": "#76555d", 1840 | "name": "紫誥" 1841 | }, 1842 | { 1843 | "transliteration": "Zǐhuābù", 1844 | "hex": "#bea78b", 1845 | "name": "紫花布" 1846 | }, 1847 | { 1848 | "transliteration": "Zǐjīngpíngfēng", 1849 | "hex": "#a76283", 1850 | "name": "紫莖屏風" 1851 | }, 1852 | { 1853 | "transliteration": "Zǐkuàng", 1854 | "hex": "#9e4e56", 1855 | "name": "紫礦" 1856 | }, 1857 | { 1858 | "transliteration": "Zǐméi", 1859 | "hex": "#bb7a8c", 1860 | "name": "紫梅" 1861 | }, 1862 | { 1863 | "transliteration": "Zǐmò", 1864 | "hex": "#a67eb7", 1865 | "name": "茈藐" 1866 | }, 1867 | { 1868 | "transliteration": "Zǐmójīn", 1869 | "hex": "#bc836b", 1870 | "name": "紫磨金" 1871 | }, 1872 | { 1873 | "transliteration": "Zǐpú", 1874 | "hex": "#a6559d", 1875 | "name": "紫蒲" 1876 | }, 1877 | { 1878 | "transliteration": "Zǐqū", 1879 | "hex": "#7d5284", 1880 | "name": "紫紶" 1881 | }, 1882 | { 1883 | "transliteration": "Zǐshǔ", 1884 | "hex": "#594c57", 1885 | "name": "紫鼠" 1886 | }, 1887 | { 1888 | "transliteration": "Zǐyuàn", 1889 | "hex": "#757cbb", 1890 | "name": "紫苑" 1891 | }, 1892 | { 1893 | "transliteration": "Èrlǜ", 1894 | "hex": "#5da39d", 1895 | "name": "二綠" 1896 | }, 1897 | { 1898 | "transliteration": "Èrmùyú", 1899 | "hex": "#dfe0d9", 1900 | "name": "二目魚" 1901 | }, 1902 | { 1903 | "transliteration": "Éhuáng", 1904 | "hex": "#be8a2f", 1905 | "name": "蛾黃" 1906 | }, 1907 | { 1908 | "transliteration": "Ōubì", 1909 | "hex": "#c0d695", 1910 | "name": "歐碧" 1911 | }, 1912 | { 1913 | "transliteration": "Ǒusīhè", 1914 | "hex": "#a88787", 1915 | "name": "藕絲褐" 1916 | }, 1917 | { 1918 | "transliteration": "Ǒusīqiūbàn", 1919 | "hex": "#d3cbc5", 1920 | "name": "藕絲秋半" 1921 | } 1922 | ] 1923 | -------------------------------------------------------------------------------- /lib/colors/html.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "aqua", 4 | "hex": "#00ffff" 5 | }, 6 | { 7 | "name": "aliceblue", 8 | "hex": "#f0f8ff" 9 | }, 10 | { 11 | "name": "antiquewhite", 12 | "hex": "#faebd7" 13 | }, 14 | { 15 | "name": "black", 16 | "hex": "#000000" 17 | }, 18 | { 19 | "name": "blue", 20 | "hex": "#0000ff" 21 | }, 22 | { 23 | "name": "cyan", 24 | "hex": "#00ffff" 25 | }, 26 | { 27 | "name": "darkblue", 28 | "hex": "#00008b" 29 | }, 30 | { 31 | "name": "darkcyan", 32 | "hex": "#008b8b" 33 | }, 34 | { 35 | "name": "darkgreen", 36 | "hex": "#006400" 37 | }, 38 | { 39 | "name": "darkturquoise", 40 | "hex": "#00ced1" 41 | }, 42 | { 43 | "name": "deepskyblue", 44 | "hex": "#00bfff" 45 | }, 46 | { 47 | "name": "green", 48 | "hex": "#008000" 49 | }, 50 | { 51 | "name": "lime", 52 | "hex": "#00ff00" 53 | }, 54 | { 55 | "name": "mediumblue", 56 | "hex": "#0000cd" 57 | }, 58 | { 59 | "name": "mediumspringgreen", 60 | "hex": "#00fa9a" 61 | }, 62 | { 63 | "name": "navy", 64 | "hex": "#000080" 65 | }, 66 | { 67 | "name": "springgreen", 68 | "hex": "#00ff7f" 69 | }, 70 | { 71 | "name": "teal", 72 | "hex": "#008080" 73 | }, 74 | { 75 | "name": "midnightblue", 76 | "hex": "#191970" 77 | }, 78 | { 79 | "name": "dodgerblue", 80 | "hex": "#1e90ff" 81 | }, 82 | { 83 | "name": "lightseagreen", 84 | "hex": "#20b2aa" 85 | }, 86 | { 87 | "name": "forestgreen", 88 | "hex": "#228b22" 89 | }, 90 | { 91 | "name": "seagreen", 92 | "hex": "#2e8b57" 93 | }, 94 | { 95 | "name": "darkslategray", 96 | "hex": "#2f4f4f" 97 | }, 98 | { 99 | "name": "darkslategrey", 100 | "hex": "#2f4f4f" 101 | }, 102 | { 103 | "name": "limegreen", 104 | "hex": "#32cd32" 105 | }, 106 | { 107 | "name": "mediumseagreen", 108 | "hex": "#3cb371" 109 | }, 110 | { 111 | "name": "turquoise", 112 | "hex": "#40e0d0" 113 | }, 114 | { 115 | "name": "royalblue", 116 | "hex": "#4169e1" 117 | }, 118 | { 119 | "name": "steelblue", 120 | "hex": "#4682b4" 121 | }, 122 | { 123 | "name": "darkslateblue", 124 | "hex": "#483d8b" 125 | }, 126 | { 127 | "name": "mediumturquoise", 128 | "hex": "#48d1cc" 129 | }, 130 | { 131 | "name": "indigo", 132 | "hex": "#4b0082" 133 | }, 134 | { 135 | "name": "darkolivegreen", 136 | "hex": "#556b2f" 137 | }, 138 | { 139 | "name": "cadetblue", 140 | "hex": "#5f9ea0" 141 | }, 142 | { 143 | "name": "cornflowerblue", 144 | "hex": "#6495ed" 145 | }, 146 | { 147 | "name": "mediumaquamarine", 148 | "hex": "#66cdaa" 149 | }, 150 | { 151 | "name": "dimgray", 152 | "hex": "#696969" 153 | }, 154 | { 155 | "name": "dimgrey", 156 | "hex": "#696969" 157 | }, 158 | { 159 | "name": "slateblue", 160 | "hex": "#6a5acd" 161 | }, 162 | { 163 | "name": "olivedrab", 164 | "hex": "#6b8e23" 165 | }, 166 | { 167 | "name": "slategray", 168 | "hex": "#708090" 169 | }, 170 | { 171 | "name": "slategrey", 172 | "hex": "#708090" 173 | }, 174 | { 175 | "name": "lightslategray", 176 | "hex": "#778899" 177 | }, 178 | { 179 | "name": "lightslategrey", 180 | "hex": "#778899" 181 | }, 182 | { 183 | "name": "mediumslateblue", 184 | "hex": "#7b68ee" 185 | }, 186 | { 187 | "name": "lawngreen", 188 | "hex": "#7cfc00" 189 | }, 190 | { 191 | "name": "aquamarine", 192 | "hex": "#7fffd4" 193 | }, 194 | { 195 | "name": "chartreuse", 196 | "hex": "#7fff00" 197 | }, 198 | { 199 | "name": "gray", 200 | "hex": "#808080" 201 | }, 202 | { 203 | "name": "grey", 204 | "hex": "#808080" 205 | }, 206 | { 207 | "name": "maroon", 208 | "hex": "#800000" 209 | }, 210 | { 211 | "name": "olive", 212 | "hex": "#808000" 213 | }, 214 | { 215 | "name": "purple", 216 | "hex": "#800080" 217 | }, 218 | { 219 | "name": "lightskyblue", 220 | "hex": "#87cefa" 221 | }, 222 | { 223 | "name": "skyblue", 224 | "hex": "#87ceeb" 225 | }, 226 | { 227 | "name": "blueviolet", 228 | "hex": "#8a2be2" 229 | }, 230 | { 231 | "name": "darkmagenta", 232 | "hex": "#8b008b" 233 | }, 234 | { 235 | "name": "darkred", 236 | "hex": "#8b0000" 237 | }, 238 | { 239 | "name": "saddlebrown", 240 | "hex": "#8b4513" 241 | }, 242 | { 243 | "name": "darkseagreen", 244 | "hex": "#8fbc8f" 245 | }, 246 | { 247 | "name": "lightgreen", 248 | "hex": "#90ee90" 249 | }, 250 | { 251 | "name": "mediumpurple", 252 | "hex": "#9370db" 253 | }, 254 | { 255 | "name": "darkviolet", 256 | "hex": "#9400d3" 257 | }, 258 | { 259 | "name": "palegreen", 260 | "hex": "#98fb98" 261 | }, 262 | { 263 | "name": "darkorchid", 264 | "hex": "#9932cc" 265 | }, 266 | { 267 | "name": "yellowgreen", 268 | "hex": "#9acd32" 269 | }, 270 | { 271 | "name": "sienna", 272 | "hex": "#a0522d" 273 | }, 274 | { 275 | "name": "brown", 276 | "hex": "#a52a2a" 277 | }, 278 | { 279 | "name": "darkgray", 280 | "hex": "#a9a9a9" 281 | }, 282 | { 283 | "name": "darkgrey", 284 | "hex": "#a9a9a9" 285 | }, 286 | { 287 | "name": "greenyellow", 288 | "hex": "#adff2f" 289 | }, 290 | { 291 | "name": "lightblue", 292 | "hex": "#add8e6" 293 | }, 294 | { 295 | "name": "paleturquoise", 296 | "hex": "#afeeee" 297 | }, 298 | { 299 | "name": "lightsteelblue", 300 | "hex": "#b0c4de" 301 | }, 302 | { 303 | "name": "powderblue", 304 | "hex": "#b0e0e6" 305 | }, 306 | { 307 | "name": "firebrick", 308 | "hex": "#b22222" 309 | }, 310 | { 311 | "name": "darkgoldenrod", 312 | "hex": "#b8860b" 313 | }, 314 | { 315 | "name": "mediumorchid", 316 | "hex": "#ba55d3" 317 | }, 318 | { 319 | "name": "rosybrown", 320 | "hex": "#bc8f8f" 321 | }, 322 | { 323 | "name": "darkkhaki", 324 | "hex": "#bdb76b" 325 | }, 326 | { 327 | "name": "silver", 328 | "hex": "#c0c0c0" 329 | }, 330 | { 331 | "name": "mediumvioletred", 332 | "hex": "#c71585" 333 | }, 334 | { 335 | "name": "indianred", 336 | "hex": "#cd5c5c" 337 | }, 338 | { 339 | "name": "peru", 340 | "hex": "#cd853f" 341 | }, 342 | { 343 | "name": "chocolate", 344 | "hex": "#d2691e" 345 | }, 346 | { 347 | "name": "tan", 348 | "hex": "#d2b48c" 349 | }, 350 | { 351 | "name": "lightgray", 352 | "hex": "#d3d3d3" 353 | }, 354 | { 355 | "name": "lightgrey", 356 | "hex": "#d3d3d3" 357 | }, 358 | { 359 | "name": "thistle", 360 | "hex": "#d8bfd8" 361 | }, 362 | { 363 | "name": "goldenrod", 364 | "hex": "#daa520" 365 | }, 366 | { 367 | "name": "orchid", 368 | "hex": "#da70d6" 369 | }, 370 | { 371 | "name": "palevioletred", 372 | "hex": "#db7093" 373 | }, 374 | { 375 | "name": "crimson", 376 | "hex": "#dc143c" 377 | }, 378 | { 379 | "name": "gainsboro", 380 | "hex": "#dcdcdc" 381 | }, 382 | { 383 | "name": "plum", 384 | "hex": "#dda0dd" 385 | }, 386 | { 387 | "name": "burlywood", 388 | "hex": "#deb887" 389 | }, 390 | { 391 | "name": "lightcyan", 392 | "hex": "#e0ffff" 393 | }, 394 | { 395 | "name": "lavender", 396 | "hex": "#e6e6fa" 397 | }, 398 | { 399 | "name": "darksalmon", 400 | "hex": "#e9967a" 401 | }, 402 | { 403 | "name": "palegoldenrod", 404 | "hex": "#eee8aa" 405 | }, 406 | { 407 | "name": "violet", 408 | "hex": "#ee82ee" 409 | }, 410 | { 411 | "name": "azure", 412 | "hex": "#f0ffff" 413 | }, 414 | { 415 | "name": "honeydew", 416 | "hex": "#f0fff0" 417 | }, 418 | { 419 | "name": "khaki", 420 | "hex": "#f0e68c" 421 | }, 422 | { 423 | "name": "lightcoral", 424 | "hex": "#f08080" 425 | }, 426 | { 427 | "name": "sandybrown", 428 | "hex": "#f4a460" 429 | }, 430 | { 431 | "name": "beige", 432 | "hex": "#f5f5dc" 433 | }, 434 | { 435 | "name": "mintcream", 436 | "hex": "#f5fffa" 437 | }, 438 | { 439 | "name": "wheat", 440 | "hex": "#f5deb3" 441 | }, 442 | { 443 | "name": "whitesmoke", 444 | "hex": "#f5f5f5" 445 | }, 446 | { 447 | "name": "ghostwhite", 448 | "hex": "#f8f8ff" 449 | }, 450 | { 451 | "name": "lightgoldenrodyellow", 452 | "hex": "#fafad2" 453 | }, 454 | { 455 | "name": "linen", 456 | "hex": "#faf0e6" 457 | }, 458 | { 459 | "name": "salmon", 460 | "hex": "#fa8072" 461 | }, 462 | { 463 | "name": "oldlace", 464 | "hex": "#fdf5e6" 465 | }, 466 | { 467 | "name": "bisque", 468 | "hex": "#ffe4c4" 469 | }, 470 | { 471 | "name": "blanchedalmond", 472 | "hex": "#ffebcd" 473 | }, 474 | { 475 | "name": "coral", 476 | "hex": "#ff7f50" 477 | }, 478 | { 479 | "name": "cornsilk", 480 | "hex": "#fff8dc" 481 | }, 482 | { 483 | "name": "darkorange", 484 | "hex": "#ff8c00" 485 | }, 486 | { 487 | "name": "deeppink", 488 | "hex": "#ff1493" 489 | }, 490 | { 491 | "name": "floralwhite", 492 | "hex": "#fffaf0" 493 | }, 494 | { 495 | "name": "fuchsia", 496 | "hex": "#ff00ff" 497 | }, 498 | { 499 | "name": "gold", 500 | "hex": "#ffd700" 501 | }, 502 | { 503 | "name": "hotpink", 504 | "hex": "#ff69b4" 505 | }, 506 | { 507 | "name": "ivory", 508 | "hex": "#fffff0" 509 | }, 510 | { 511 | "name": "lavenderblush", 512 | "hex": "#fff0f5" 513 | }, 514 | { 515 | "name": "lemonchiffon", 516 | "hex": "#fffacd" 517 | }, 518 | { 519 | "name": "lightpink", 520 | "hex": "#ffb6c1" 521 | }, 522 | { 523 | "name": "lightsalmon", 524 | "hex": "#ffa07a" 525 | }, 526 | { 527 | "name": "lightyellow", 528 | "hex": "#ffffe0" 529 | }, 530 | { 531 | "name": "magenta", 532 | "hex": "#ff00ff" 533 | }, 534 | { 535 | "name": "mistyrose", 536 | "hex": "#ffe4e1" 537 | }, 538 | { 539 | "name": "moccasin", 540 | "hex": "#ffe4b5" 541 | }, 542 | { 543 | "name": "navajowhite", 544 | "hex": "#ffdead" 545 | }, 546 | { 547 | "name": "orange", 548 | "hex": "#ffa500" 549 | }, 550 | { 551 | "name": "orangered", 552 | "hex": "#ff4500" 553 | }, 554 | { 555 | "name": "papayawhip", 556 | "hex": "#ffefd5" 557 | }, 558 | { 559 | "name": "peachpuff", 560 | "hex": "#ffdab9" 561 | }, 562 | { 563 | "name": "pink", 564 | "hex": "#ffc0cb" 565 | }, 566 | { 567 | "name": "red", 568 | "hex": "#ff0000" 569 | }, 570 | { 571 | "name": "seashell", 572 | "hex": "#fff5ee" 573 | }, 574 | { 575 | "name": "snow", 576 | "hex": "#fffafa" 577 | }, 578 | { 579 | "name": "tomato", 580 | "hex": "#ff6347" 581 | }, 582 | { 583 | "name": "white", 584 | "hex": "#ffffff" 585 | }, 586 | { 587 | "name": "yellow", 588 | "hex": "#ffff00" 589 | }, 590 | { 591 | "name": "rebeccapurple", 592 | "hex": "#663399" 593 | } 594 | ] -------------------------------------------------------------------------------- /lib/colors/japanese-traditional.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "一斤染", 4 | "romanized": "Ikkonzome", 5 | "english translation": "One kin (0.6 kg (1.3 lb)) dye", 6 | "hex": "#f08f90" 7 | }, 8 | { 9 | "name": "紅梅色", 10 | "romanized": "Kōbai-iro", 11 | "english translation": "Red plum colored", 12 | "hex": "#db5a6b" 13 | }, 14 | { 15 | "name": "桜色", 16 | "romanized": "Sakura-iro", 17 | "english translation": "Cherry blossom color", 18 | "hex": "#fcc9b9" 19 | }, 20 | { 21 | "name": "薄紅", 22 | "romanized": "Usubeni", 23 | "english translation": "Pale crimson (dye)", 24 | "hex": "#f2666c" 25 | }, 26 | { 27 | "name": "桃色", 28 | "romanized": "Momo-iro", 29 | "english translation": "Peach-colored", 30 | "hex": "#f47983" 31 | }, 32 | { 33 | "name": "中紅", 34 | "romanized": "Nakabeni", 35 | "english translation": "Medium crimson (dye)", 36 | "hex": "#c93756" 37 | }, 38 | { 39 | "name": "退紅", 40 | "romanized": "Arazome", 41 | "english translation": "Washed-out crimson (dye)", 42 | "hex": "#ffb3a7" 43 | }, 44 | { 45 | "name": "鴇羽色", 46 | "romanized": "Tokiha-iro", 47 | "english translation": "Ibis wing color", 48 | "hex": "#f58f84" 49 | }, 50 | { 51 | "name": "長春色", 52 | "romanized": "Chōshun-iro", 53 | "english translation": "Long spring (season) color", 54 | "hex": "#b95754" 55 | }, 56 | { 57 | "name": "臙脂色", 58 | "romanized": "Enji-iro", 59 | "english translation": "Cochineal red/rouge", 60 | "hex": "#9d2933" 61 | }, 62 | { 63 | "name": "甚三紅", 64 | "romanized": "Jinzamomi", 65 | "english translation": "Thrice-dyed crimson", 66 | "hex": "#f7665a" 67 | }, 68 | { 69 | "name": "梅鼠", 70 | "romanized": "Umenezumi", 71 | "english translation": "Plum-blossom mouse grey", 72 | "hex": "#97645a" 73 | }, 74 | { 75 | "name": "赤紅", 76 | "romanized": "Akabeni", 77 | "english translation": "Pure crimson (dye)", 78 | "hex": "#c3272b" 79 | }, 80 | { 81 | "name": "小豆色", 82 | "romanized": "Azuki-iro", 83 | "english translation": "Azuki bean color", 84 | "hex": "#672422" 85 | }, 86 | { 87 | "name": "海老茶", 88 | "romanized": "Ebicha", 89 | "english translation": "Maroon (shrimp brown)", 90 | "hex": "#5e2824" 91 | }, 92 | { 93 | "name": "曙色", 94 | "romanized": "Akebono-iro", 95 | "english translation": "Dawn-color", 96 | "hex": "#fa7b62" 97 | }, 98 | { 99 | "name": "猩々緋", 100 | "romanized": "Shōjōhi", 101 | "english translation": "Red-orange (lit. orangutan-colored)", 102 | "hex": "#dc3023" 103 | }, 104 | { 105 | "name": "柿渋色", 106 | "romanized": "Kakishibu-iro", 107 | "english translation": "Persimmon-juice color", 108 | "hex": "#934337" 109 | }, 110 | { 111 | "name": "紅鳶", 112 | "romanized": "Benitobi", 113 | "english translation": "Red kite (bird species)", 114 | "hex": "#913228" 115 | }, 116 | { 117 | "name": "黒鳶", 118 | "romanized": "Kurotobi", 119 | "english translation": "Black kite (bird species)", 120 | "hex": "#351e1c" 121 | }, 122 | { 123 | "name": "照柿", 124 | "romanized": "Terigaki", 125 | "english translation": "Glazed persimmon", 126 | "hex": "#d34e36" 127 | }, 128 | { 129 | "name": "江戸茶", 130 | "romanized": "Edocha", 131 | "english translation": "Red-brown (Edo brown)", 132 | "hex": "#a13d2d" 133 | }, 134 | { 135 | "name": "檜皮色", 136 | "romanized": "Hihada-iro", 137 | "english translation": "Cypress bark color", 138 | "hex": "#752e23" 139 | }, 140 | { 141 | "name": "洗朱", 142 | "romanized": "Araishu", 143 | "english translation": "Rinsed-out red", 144 | "hex": "#ff7952" 145 | }, 146 | { 147 | "name": "ときがら茶", 148 | "romanized": "Tokigaracha", 149 | "english translation": "Brewed mustard-brown", 150 | "hex": "#e68364" 151 | }, 152 | { 153 | "name": "蘇比", 154 | "romanized": "Sohi", 155 | "english translation": "Overdyed/refreshed red-brown", 156 | "hex": "#e35c38" 157 | }, 158 | { 159 | "name": "唐茶", 160 | "romanized": "Karacha", 161 | "english translation": "Spicy red-brown (Chinese tea brown)", 162 | "hex": "#b35c44" 163 | }, 164 | { 165 | "name": "宗傳唐茶", 166 | "romanized": "Sōdenkaracha", 167 | "english translation": "Faded spicy red-brown", 168 | "hex": "#9b533f" 169 | }, 170 | { 171 | "name": "栗皮茶", 172 | "romanized": "Kurikawacha", 173 | "english translation": "Chestnut-leather brown", 174 | "hex": "#60281e" 175 | }, 176 | { 177 | "name": "鳶色", 178 | "romanized": "Tobi-iro", 179 | "english translation": "Ibis-color", 180 | "hex": "#4c221b" 181 | }, 182 | { 183 | "name": "朱色", 184 | "romanized": "Shu-iro", 185 | "english translation": "Cinnabar-color", 186 | "hex": "#ff3500" 187 | }, 188 | { 189 | "name": "桜鼠", 190 | "romanized": "Sakuranezumi", 191 | "english translation": "Cherry blossom mouse grey", 192 | "hex": "#ac8181" 193 | }, 194 | { 195 | "name": "唐紅/韓紅", 196 | "romanized": "Karakurenai", 197 | "english translation": "Foreign crimson[a]", 198 | "hex": "#c91f37" 199 | }, 200 | { 201 | "name": "深緋", 202 | "romanized": "Kokiake", 203 | "english translation": "Deep scarlet", 204 | "hex": "#7b3b3a" 205 | }, 206 | { 207 | "name": "水がき", 208 | "romanized": "Mizugaki", 209 | "english translation": "Water persimmon", 210 | "hex": "#b56c60" 211 | }, 212 | { 213 | "name": "蘇芳香", 214 | "romanized": "Su'ōkō", 215 | "english translation": "Sappanwood incense", 216 | "hex": "#a24f46" 217 | }, 218 | { 219 | "name": "真朱", 220 | "romanized": "Shinshu", 221 | "english translation": "True red", 222 | "hex": "#8f1d21" 223 | }, 224 | { 225 | "name": "銀朱", 226 | "romanized": "Ginshu", 227 | "english translation": "Greyed red (lit. silvered red)", 228 | "hex": "#bc2d29" 229 | }, 230 | { 231 | "name": "栗梅", 232 | "romanized": "Kiriume", 233 | "english translation": "Red-brown (lit. chestnut-plum)", 234 | "hex": "#8b352d" 235 | }, 236 | { 237 | "name": "珊瑚色", 238 | "romanized": "Sango-iro", 239 | "english translation": "Coral color", 240 | "hex": "#f8674f" 241 | }, 242 | { 243 | "name": "芝翫茶", 244 | "romanized": "Shikancha", 245 | "english translation": "Wilted brown (lit. wilted lawn-clippings)", 246 | "hex": "#ab4c3d" 247 | }, 248 | { 249 | "name": "紅樺", 250 | "romanized": "Benikaba", 251 | "english translation": "Red birch", 252 | "hex": "#9d2b22" 253 | }, 254 | { 255 | "name": "紅檜皮", 256 | "romanized": "Benihibata", 257 | "english translation": "Cypress bark red", 258 | "hex": "#6f3028" 259 | }, 260 | { 261 | "name": "紅緋", 262 | "romanized": "Benihi", 263 | "english translation": "Blood red", 264 | "hex": "#f35336" 265 | }, 266 | { 267 | "name": "緋", 268 | "romanized": "Ake", 269 | "english translation": "Scarlet (blood)", 270 | "hex": "#cf3a24" 271 | }, 272 | { 273 | "name": "紅柄色", 274 | "romanized": "Bengara-iro", 275 | "english translation": "Dyestalk red (lit. the color from dying with the stalk of the beni (safflower) plant)", 276 | "hex": "#913225" 277 | }, 278 | { 279 | "name": "宍色", 280 | "romanized": "Shishi-iro", 281 | "english translation": "Meat-color", 282 | "hex": "#f9906f" 283 | }, 284 | { 285 | "name": "赤香色", 286 | "romanized": "Akakō-iro", 287 | "english translation": "Red incense-colored", 288 | "hex": "#f07f5e" 289 | }, 290 | { 291 | "name": "黄丹", 292 | "romanized": "Ōtan", 293 | "english translation": "Ochre (earthen yellow-red-brown)", 294 | "hex": "#ff4e20" 295 | }, 296 | { 297 | "name": "遠州茶", 298 | "romanized": "Enshūcha", 299 | "english translation": "Muddy brown (lit. the brown of a distant river)", 300 | "hex": "#cb6649" 301 | }, 302 | { 303 | "name": "樺茶", 304 | "romanized": "Kabacha", 305 | "english translation": "Birch brown", 306 | "hex": "#b14a30" 307 | }, 308 | { 309 | "name": "雀茶", 310 | "romanized": "Suzumecha", 311 | "english translation": "Sparrow-brown", 312 | "hex": "#8c4736" 313 | }, 314 | { 315 | "name": "百塩茶", 316 | "romanized": "Momoshiocha", 317 | "english translation": "Boiled red bean brown", 318 | "hex": "#542d24" 319 | }, 320 | { 321 | "name": "胡桃染", 322 | "romanized": "Kurumizome", 323 | "english translation": "Walnut-dyed", 324 | "hex": "#9f7462" 325 | }, 326 | { 327 | "name": "黄櫨染", 328 | "romanized": "Kōrozen", 329 | "english translation": "Sumac-dyed", 330 | "hex": "#592b1f" 331 | }, 332 | { 333 | "name": "深支子", 334 | "romanized": "Kokikuchinashi", 335 | "english translation": "Rich gardenia", 336 | "hex": "#f57f4f" 337 | }, 338 | { 339 | "name": "代赭色", 340 | "romanized": "Taisha-iro", 341 | "english translation": "Red ochre color", 342 | "hex": "#9f5233" 343 | }, 344 | { 345 | "name": "礪茶", 346 | "romanized": "Tonocha", 347 | "english translation": "Polished brown", 348 | "hex": "#985538" 349 | }, 350 | { 351 | "name": "洒落柿", 352 | "romanized": "Sharegaki", 353 | "english translation": "Stylish persimmon", 354 | "hex": "#ffa26b" 355 | }, 356 | { 357 | "name": "萱草色", 358 | "romanized": "Kanzō-iro", 359 | "english translation": "Daylily-colored", 360 | "hex": "#ff8936" 361 | }, 362 | { 363 | "name": "紅鬱金", 364 | "romanized": "Beni'ukon", 365 | "english translation": "Red-bronze (lit. red dye and turmeric)", 366 | "hex": "#fb8136" 367 | }, 368 | { 369 | "name": "憲法染", 370 | "romanized": "Kenpōzome", 371 | "english translation": "Legal dye (from when color use was regulated by class)", 372 | "hex": "#2e211b" 373 | }, 374 | { 375 | "name": "琥珀色", 376 | "romanized": "Kohaku-iro", 377 | "english translation": "Amber color", 378 | "hex": "#ca6924" 379 | }, 380 | { 381 | "name": "朽葉色", 382 | "romanized": "Kuchiba-iro", 383 | "english translation": "Decaying leaves color", 384 | "hex": "#d57835" 385 | }, 386 | { 387 | "name": "丁子染", 388 | "romanized": "Chōjizome", 389 | "english translation": "Clove-dyed", 390 | "hex": "#a96232" 391 | }, 392 | { 393 | "name": "柴染", 394 | "romanized": "Fushizome", 395 | "english translation": "Brushwood-dyed", 396 | "hex": "#8c5939" 397 | }, 398 | { 399 | "name": "煤竹色", 400 | "romanized": "Susutake-iro", 401 | "english translation": "Weathered bamboo (lit. \"sooty\")", 402 | "hex": "#593a27" 403 | }, 404 | { 405 | "name": "黄土色", 406 | "romanized": "Ōdo-iro", 407 | "english translation": "Ochre (lit. earthen yellow)", 408 | "hex": "#be7f51" 409 | }, 410 | { 411 | "name": "黄唐茶", 412 | "romanized": "Kigaracha", 413 | "english translation": "Chinese yellow tea-colored", 414 | "hex": "#b7702d" 415 | }, 416 | { 417 | "name": "赤朽葉", 418 | "romanized": "Akakuchiba", 419 | "english translation": "Red fallen leaves", 420 | "hex": "#db8449" 421 | }, 422 | { 423 | "name": "蒲色", 424 | "romanized": "Kaba-iro", 425 | "english translation": "Cattail color", 426 | "hex": "#b64925" 427 | }, 428 | { 429 | "name": "焦茶", 430 | "romanized": "Kogecha", 431 | "english translation": "Scorched brown", 432 | "hex": "#351f19" 433 | }, 434 | { 435 | "name": "洗柿", 436 | "romanized": "Araigaki", 437 | "english translation": "Washed-out persimmon", 438 | "hex": "#ec8254" 439 | }, 440 | { 441 | "name": "赤白橡", 442 | "romanized": "Akashirotsurubami", 443 | "english translation": "Sawtooth oak", 444 | "hex": "#ec956c" 445 | }, 446 | { 447 | "name": "煎茶色", 448 | "romanized": "Sencha-iro", 449 | "english translation": "Green tea-colored", 450 | "hex": "#824b35" 451 | }, 452 | { 453 | "name": "薄柿", 454 | "romanized": "Usugaki", 455 | "english translation": "Pale persimmon", 456 | "hex": "#fca474" 457 | }, 458 | { 459 | "name": "梅染", 460 | "romanized": "Umezome", 461 | "english translation": "Plum-dyed", 462 | "hex": "#fa9258" 463 | }, 464 | { 465 | "name": "丁子茶", 466 | "romanized": "Chōjicha", 467 | "english translation": "Clove-brown", 468 | "hex": "#8f583c" 469 | }, 470 | { 471 | "name": "枇杷茶", 472 | "romanized": "Biwacha", 473 | "english translation": "Loquat tree-brown", 474 | "hex": "#ab6134" 475 | }, 476 | { 477 | "name": "淡香", 478 | "romanized": "Usukō", 479 | "english translation": "Pale incense", 480 | "hex": "#ffa565" 481 | }, 482 | { 483 | "name": "金茶", 484 | "romanized": "Kincha", 485 | "english translation": "Golden brown", 486 | "hex": "#c66b27" 487 | }, 488 | { 489 | "name": "狐色", 490 | "romanized": "Kitsune-iro", 491 | "english translation": "Fox-color", 492 | "hex": "#985629" 493 | }, 494 | { 495 | "name": "伽羅色", 496 | "romanized": "Kyara-iro", 497 | "english translation": "Aloewood-color", 498 | "hex": "#6a432d" 499 | }, 500 | { 501 | "name": "白茶", 502 | "romanized": "Shiracha", 503 | "english translation": "White tea-colored", 504 | "hex": "#c48e69" 505 | }, 506 | { 507 | "name": "銀煤竹", 508 | "romanized": "Kinsusutake", 509 | "english translation": "Golden-grey bamboo (dried and weathered)", 510 | "hex": "#7d4e2d" 511 | }, 512 | { 513 | "name": "媚茶", 514 | "romanized": "Kobicha", 515 | "english translation": "Kobi tea", 516 | "hex": "#6b4423" 517 | }, 518 | { 519 | "name": "浅黄", 520 | "romanized": "Asagi", 521 | "english translation": "Light yellow", 522 | "hex": "#f7bb7d" 523 | }, 524 | { 525 | "name": "玉子色", 526 | "romanized": "Tamago-iro", 527 | "english translation": "Egg-colored", 528 | "hex": "#ffa631" 529 | }, 530 | { 531 | "name": "山吹茶", 532 | "romanized": "Yamabukicha", 533 | "english translation": "Gold-brown", 534 | "hex": "#cb7e1f" 535 | }, 536 | { 537 | "name": "生壁色", 538 | "romanized": "Namakabe-iro", 539 | "english translation": "The color of undried plaster", 540 | "hex": "#785e49" 541 | }, 542 | { 543 | "name": "玉蜀黍色", 544 | "romanized": "Tōmorokoshi-iro", 545 | "english translation": "Corn-colored", 546 | "hex": "#faa945" 547 | }, 548 | { 549 | "name": "黄橡", 550 | "romanized": "Kitsurubami", 551 | "english translation": "Golden oak", 552 | "hex": "#bb8141" 553 | }, 554 | { 555 | "name": "花葉色", 556 | "romanized": "Hanaba-iro or kayou-iro", 557 | "english translation": "Floral leaf-colored", 558 | "hex": "#ffb94e" 559 | }, 560 | { 561 | "name": "鬱金色", 562 | "romanized": "Ukon-iro", 563 | "english translation": "Turmeric-colored", 564 | "hex": "#e69b3a" 565 | }, 566 | { 567 | "name": "利休白茶", 568 | "romanized": "Rikyūshiracha", 569 | "english translation": "Faded Sen no Rikyū's tea", 570 | "hex": "#b0927a" 571 | }, 572 | { 573 | "name": "灰汁色", 574 | "romanized": "Aku-iro", 575 | "english translation": "Lye-colored", 576 | "hex": "#7f6b5d" 577 | }, 578 | { 579 | "name": "路考茶", 580 | "romanized": "Rokōcha", 581 | "english translation": "Contemplation in a tea garden", 582 | "hex": "#665343" 583 | }, 584 | { 585 | "name": "菜種油色", 586 | "romanized": "Nataneyu-iro", 587 | "english translation": "Rapeseed oil-colored", 588 | "hex": "#a17917" 589 | }, 590 | { 591 | "name": "鶯茶", 592 | "romanized": "Uguisucha", 593 | "english translation": "Nightingale-brown (greenish brown)", 594 | "hex": "#5c4827" 595 | }, 596 | { 597 | "name": "苅萱", 598 | "romanized": "Kariyasu", 599 | "english translation": "Japanese triandra grass (Themeda japonica)", 600 | "hex": "#e2b13c" 601 | }, 602 | { 603 | "name": "蒸栗色", 604 | "romanized": "Mushikuri-iro", 605 | "english translation": "Steamed chestnut color", 606 | "hex": "#d3b17d" 607 | }, 608 | { 609 | "name": "鶸茶", 610 | "romanized": "Hiwacha", 611 | "english translation": "Finch-brown (Cardueline finch)", 612 | "hex": "#957b38" 613 | }, 614 | { 615 | "name": "鶯色", 616 | "romanized": "Uguisu-iro", 617 | "english translation": "Nightingale-colored", 618 | "hex": "#645530" 619 | }, 620 | { 621 | "name": "山吹色", 622 | "romanized": "Yamabuki-iro", 623 | "english translation": "Golden yellow (a particular variety of rose)", 624 | "hex": "#ffa400" 625 | }, 626 | { 627 | "name": "櫨染", 628 | "romanized": "Hajizome", 629 | "english translation": "Sumac-dyed", 630 | "hex": "#e08a1e" 631 | }, 632 | { 633 | "name": "桑染", 634 | "romanized": "Kuwazome", 635 | "english translation": "Mulberry-dyed", 636 | "hex": "#c57f2e" 637 | }, 638 | { 639 | "name": "梔子", 640 | "romanized": "Kuchinashi", 641 | "english translation": "Cape jasmine or gardenia", 642 | "hex": "#ffb95a" 643 | }, 644 | { 645 | "name": "白橡", 646 | "romanized": "Shirotsurubami", 647 | "english translation": "White oak", 648 | "hex": "#ce9f6f" 649 | }, 650 | { 651 | "name": "藤黄", 652 | "romanized": "Tō'ō", 653 | "english translation": "Gamboge", 654 | "hex": "#ffb61e" 655 | }, 656 | { 657 | "name": "鳥の子色", 658 | "romanized": "Torinoko-iro", 659 | "english translation": "Eggshell paper-colored", 660 | "hex": "#e2be9f" 661 | }, 662 | { 663 | "name": "黄朽葉", 664 | "romanized": "Kikuchiba", 665 | "english translation": "Golden fallen leaves", 666 | "hex": "#e29c45" 667 | }, 668 | { 669 | "name": "利休茶", 670 | "romanized": "Rikyūcha", 671 | "english translation": "Sen no Rikyū's tea", 672 | "hex": "#826b58" 673 | }, 674 | { 675 | "name": "肥後煤竹", 676 | "romanized": "Higosusutake", 677 | "english translation": "Japanese iris and sooty bamboo", 678 | "hex": "#7f5d3b" 679 | }, 680 | { 681 | "name": "海松茶", 682 | "romanized": "Mirucha", 683 | "english translation": "Simmered seaweed", 684 | "hex": "#4c3d30" 685 | }, 686 | { 687 | "name": "黄海松茶", 688 | "romanized": "Kimirucha", 689 | "english translation": "Yellow Sea pine-brown", 690 | "hex": "#896c39" 691 | }, 692 | { 693 | "name": "菜の花色", 694 | "romanized": "Nanohanacha", 695 | "english translation": "Rape-blossom brown", 696 | "hex": "#e3b130" 697 | }, 698 | { 699 | "name": "黄蘗", 700 | "romanized": "Kihada", 701 | "english translation": "Amur cork tree (Phellodendron amurense)", 702 | "hex": "#f3c13a" 703 | }, 704 | { 705 | "name": "青朽葉", 706 | "romanized": "Aokuchiba", 707 | "english translation": "Pale fallen leaves", 708 | "hex": "#aa8736" 709 | }, 710 | { 711 | "name": "女郎花", 712 | "romanized": "Ominaeshi", 713 | "english translation": "Patrinia flowers (Patrinia scabiosaefolia)", 714 | "hex": "#d9b611" 715 | }, 716 | { 717 | "name": "鶸色", 718 | "romanized": "Hiwa-iro", 719 | "english translation": "Greenfinch color", 720 | "hex": "#bda928" 721 | }, 722 | { 723 | "name": "柳茶", 724 | "romanized": "Yanagicha", 725 | "english translation": "Willow tea", 726 | "hex": "#9c8a4d" 727 | }, 728 | { 729 | "name": "藍媚茶", 730 | "romanized": "Aikobicha", 731 | "english translation": "Indigo tea", 732 | "hex": "#473f2d" 733 | }, 734 | { 735 | "name": "海松色", 736 | "romanized": "Miru-iro", 737 | "english translation": "Codium fragile seaweed color", 738 | "hex": "#524b2a" 739 | }, 740 | { 741 | "name": "梅幸茶", 742 | "romanized": "Baikōcha", 743 | "english translation": "Baiko brown", 744 | "hex": "#857c55" 745 | }, 746 | { 747 | "name": "鶸萌黄", 748 | "romanized": "Hiwamo'egi", 749 | "english translation": "Siskin sprout yellow", 750 | "hex": "#7a942e" 751 | }, 752 | { 753 | "name": "裏柳", 754 | "romanized": "Urahayanagi", 755 | "english translation": "Underside of willow leaves", 756 | "hex": "#bcb58c" 757 | }, 758 | { 759 | "name": "柳染", 760 | "romanized": "Yanagizome", 761 | "english translation": "Willow-dyed", 762 | "hex": "#8c9e5e" 763 | }, 764 | { 765 | "name": "青丹", 766 | "romanized": "Aoni", 767 | "english translation": "Blue-black clay[3]", 768 | "hex": "#52593b" 769 | }, 770 | { 771 | "name": "青白橡", 772 | "romanized": "Aoshirotsurubami", 773 | "english translation": "Pale oak", 774 | "hex": "#bba46d" 775 | }, 776 | { 777 | "name": "璃寛茶", 778 | "romanized": "Rikancha", 779 | "english translation": "Rikan brown", 780 | "hex": "#534a32" 781 | }, 782 | { 783 | "name": "苔色", 784 | "romanized": "Koke-iro", 785 | "english translation": "Moss color", 786 | "hex": "#8b7d3a" 787 | }, 788 | { 789 | "name": "千歳茶", 790 | "romanized": "Sensaicha", 791 | "english translation": "Thousand year old brown", 792 | "hex": "#3b3429" 793 | }, 794 | { 795 | "name": "岩井茶", 796 | "romanized": "Iwaicha", 797 | "english translation": "Iwai brown[2]", 798 | "hex": "#5e5545" 799 | }, 800 | { 801 | "name": "柳煤竹", 802 | "romanized": "Yanagisusutake", 803 | "english translation": "Sooty willow bamboo", 804 | "hex": "#4d4b3a" 805 | }, 806 | { 807 | "name": "淡萌黄", 808 | "romanized": "Usumo'egi", 809 | "english translation": "Pale young green onion", 810 | "hex": "#8db255" 811 | }, 812 | { 813 | "name": "萌黄", 814 | "romanized": "Mo'egi", 815 | "english translation": "Fresh onion", 816 | "hex": "#5b8930" 817 | }, 818 | { 819 | "name": "松葉色", 820 | "romanized": "Matsuba-iro", 821 | "english translation": "Pine needle color", 822 | "hex": "#454d32" 823 | }, 824 | { 825 | "name": "薄青", 826 | "romanized": "Usu'ao", 827 | "english translation": "Pale blue", 828 | "hex": "#8c9c76" 829 | }, 830 | { 831 | "name": "柳鼠", 832 | "romanized": "Yanaginezumi", 833 | "english translation": "Willow grey", 834 | "hex": "#817b69" 835 | }, 836 | { 837 | "name": "千歳緑", 838 | "romanized": "Chitosemidori", 839 | "english translation": "Thousand year old green", 840 | "hex": "#374231" 841 | }, 842 | { 843 | "name": "白緑", 844 | "romanized": "Byakuroku", 845 | "english translation": "Whitish green", 846 | "hex": "#a5ba93" 847 | }, 848 | { 849 | "name": "緑青", 850 | "romanized": "Rokushō", 851 | "english translation": "Patina", 852 | "hex": "#407a52" 853 | }, 854 | { 855 | "name": "御納戸茶", 856 | "romanized": "Onandocha", 857 | "english translation": "Storeroom brown", 858 | "hex": "#3d4035" 859 | }, 860 | { 861 | "name": "利休鼠", 862 | "romanized": "Rikyūnezumi", 863 | "english translation": "Greyish dark green", 864 | "hex": "#656255" 865 | }, 866 | { 867 | "name": "虫襖", 868 | "romanized": "Mushi'ao", 869 | "english translation": "Insect screen", 870 | "hex": "#2d4436" 871 | }, 872 | { 873 | "name": "沈香茶", 874 | "romanized": "Tonocha", 875 | "english translation": "Aloeswood brown", 876 | "hex": "#5a6457" 877 | }, 878 | { 879 | "name": "青磁色", 880 | "romanized": "Seiji-iro", 881 | "english translation": "Celadon color", 882 | "hex": "#819c8b" 883 | }, 884 | { 885 | "name": "錆鉄御納戸", 886 | "romanized": "Sabitetsuonando", 887 | "english translation": "Rusty storeroom", 888 | "hex": "#3a403b" 889 | }, 890 | { 891 | "name": "御召茶", 892 | "romanized": "Omeshicha", 893 | "english translation": "Silk crepe brown", 894 | "hex": "#354e4b" 895 | }, 896 | { 897 | "name": "若竹色", 898 | "romanized": "Wakatake-iro", 899 | "english translation": "Young bamboo color", 900 | "hex": "#6b9362" 901 | }, 902 | { 903 | "name": "老竹色", 904 | "romanized": "Oitake-iro", 905 | "english translation": "Old bamboo color", 906 | "hex": "#5e644f" 907 | }, 908 | { 909 | "name": "緑", 910 | "romanized": "Midori", 911 | "english translation": "Green", 912 | "hex": "#2a603b" 913 | }, 914 | { 915 | "name": "錆青磁", 916 | "romanized": "Sabiseiji", 917 | "english translation": "Rusty celadon", 918 | "hex": "#898a74" 919 | }, 920 | { 921 | "name": "木賊色", 922 | "romanized": "Tokusa-iro", 923 | "english translation": "Horsetail color", 924 | "hex": "#3d5d42" 925 | }, 926 | { 927 | "name": "青竹色", 928 | "romanized": "Aotake-iro", 929 | "english translation": "Green bamboo color", 930 | "hex": "#006442" 931 | }, 932 | { 933 | "name": "びろうど", 934 | "romanized": "Birōdo", 935 | "english translation": "Velvet", 936 | "hex": "#224634" 937 | }, 938 | { 939 | "name": "藍海松茶", 940 | "romanized": "Aimirucha", 941 | "english translation": "Indigo Codium fragile seaweed brown", 942 | "hex": "#2e372e" 943 | }, 944 | { 945 | "name": "水浅葱", 946 | "romanized": "Mizu'asagi", 947 | "english translation": "Pale green onion", 948 | "hex": "#749f8d" 949 | }, 950 | { 951 | "name": "青碧", 952 | "romanized": "Seiheki", 953 | "english translation": "Blue-green", 954 | "hex": "#3a6960" 955 | }, 956 | { 957 | "name": "鉄色", 958 | "romanized": "Tetsu-iro", 959 | "english translation": "Iron color", 960 | "hex": "#2b3733" 961 | }, 962 | { 963 | "name": "高麗納戸", 964 | "romanized": "Kōrainando", 965 | "english translation": "Goryeo storeroom", 966 | "hex": "#203838" 967 | }, 968 | { 969 | "name": "湊鼠", 970 | "romanized": "Minatonezumi", 971 | "english translation": "Harbor rat", 972 | "hex": "#757d75" 973 | }, 974 | { 975 | "name": "鉄御納戸", 976 | "romanized": "Tetsuonando", 977 | "english translation": "Iron storage", 978 | "hex": "#2b3736" 979 | }, 980 | { 981 | "name": "錆浅葱", 982 | "romanized": "Sabi'asagi", 983 | "english translation": "Rusted light-blue", 984 | "hex": "#6a7f7a" 985 | }, 986 | { 987 | "name": "浅葱色", 988 | "romanized": "Asagi-iro", 989 | "english translation": "Light blue color", 990 | "hex": "#48929b" 991 | }, 992 | { 993 | "name": "錆御納戸", 994 | "romanized": "Sabi'onando", 995 | "english translation": "Rusty storage", 996 | "hex": "#455859" 997 | }, 998 | { 999 | "name": "藍色", 1000 | "romanized": "Ai-iro", 1001 | "english translation": "Indigo color", 1002 | "hex": "#264348" 1003 | }, 1004 | { 1005 | "name": "花浅葱", 1006 | "romanized": "Hana'asagi", 1007 | "english translation": "Light blue flower", 1008 | "hex": "#1d697c" 1009 | }, 1010 | { 1011 | "name": "舛花色", 1012 | "romanized": "Masuhana-iro", 1013 | "english translation": "Opposite flower color", 1014 | "hex": "#4d646c" 1015 | }, 1016 | { 1017 | "name": "熨斗目花色", 1018 | "romanized": "Noshimehana-iro", 1019 | "english translation": "Iron head flower color", 1020 | "hex": "#344d56" 1021 | }, 1022 | { 1023 | "name": "空色", 1024 | "romanized": "Sora-iro", 1025 | "english translation": "Sky Blue color", 1026 | "hex": "#4d8fac" 1027 | }, 1028 | { 1029 | "name": "群青色", 1030 | "romanized": "Gunjō-iro", 1031 | "english translation": "Ultramarine color", 1032 | "hex": "#5d8cae" 1033 | }, 1034 | { 1035 | "name": "褐色", 1036 | "romanized": "Kachi-iro", 1037 | "english translation": "Coarse wool color", 1038 | "hex": "#181b26" 1039 | }, 1040 | { 1041 | "name": "紺青色", 1042 | "romanized": "Konjō-iro", 1043 | "english translation": "Prussian blue color", 1044 | "hex": "#003171" 1045 | }, 1046 | { 1047 | "name": "紅碧", 1048 | "romanized": "Benimidori", 1049 | "english translation": "Stained red", 1050 | "hex": "#78779b" 1051 | }, 1052 | { 1053 | "name": "藤鼠", 1054 | "romanized": "Fujinezumi", 1055 | "english translation": "Mousy wisteria", 1056 | "hex": "#766980" 1057 | }, 1058 | { 1059 | "name": "藤色", 1060 | "romanized": "Fuji-iro", 1061 | "english translation": "Wisteria color", 1062 | "hex": "#89729e" 1063 | }, 1064 | { 1065 | "name": "青鈍", 1066 | "romanized": "Aonibi", 1067 | "english translation": "Dull blue", 1068 | "hex": "#4f4944" 1069 | }, 1070 | { 1071 | "name": "水色", 1072 | "romanized": "Mizu-iro", 1073 | "english translation": "Aqua Blue color", 1074 | "hex": "#86aba5" 1075 | }, 1076 | { 1077 | "name": "瓶覗", 1078 | "romanized": "Kamenozoki", 1079 | "english translation": "Inside of a bottle", 1080 | "hex": "#c6c2b6" 1081 | }, 1082 | { 1083 | "name": "新橋色", 1084 | "romanized": "Shinbashi-iro", 1085 | "english translation": "New Bridge\" color", 1086 | "hex": "#006c7f" 1087 | }, 1088 | { 1089 | "name": "藍鼠", 1090 | "romanized": "Ainezumi", 1091 | "english translation": "Mousy indigo", 1092 | "hex": "#5c544e" 1093 | }, 1094 | { 1095 | "name": "御納戸色", 1096 | "romanized": "Onando-iro", 1097 | "english translation": "Onando color", 1098 | "hex": "#364141" 1099 | }, 1100 | { 1101 | "name": "千草色", 1102 | "romanized": "Chigusa-iro", 1103 | "english translation": "Thousand herb color", 1104 | "hex": "#317589" 1105 | }, 1106 | { 1107 | "name": "縹", 1108 | "romanized": "Hanada", 1109 | "english translation": "Light blue silk", 1110 | "hex": "#044f67" 1111 | }, 1112 | { 1113 | "name": "御召御納戸", 1114 | "romanized": "Omeshi'onando", 1115 | "english translation": "Kimono storage", 1116 | "hex": "#3d4c51" 1117 | }, 1118 | { 1119 | "name": "黒橡", 1120 | "romanized": "Kurotsurubami", 1121 | "english translation": "Black chestnut oak", 1122 | "hex": "#252321" 1123 | }, 1124 | { 1125 | "name": "紺", 1126 | "romanized": "Kon", 1127 | "english translation": "Dark blue", 1128 | "hex": "#192236" 1129 | }, 1130 | { 1131 | "name": "瑠璃色", 1132 | "romanized": "Ruri-iro", 1133 | "english translation": "Lapis lazuli color", 1134 | "hex": "#1f4788" 1135 | }, 1136 | { 1137 | "name": "瑠璃紺", 1138 | "romanized": "Rurikon", 1139 | "english translation": "Dark blue lapis lazuli", 1140 | "hex": "#1b294b" 1141 | }, 1142 | { 1143 | "name": "紺桔梗", 1144 | "romanized": "Konkikyō", 1145 | "english translation": "Navy blue bellflower", 1146 | "hex": "#191f45" 1147 | }, 1148 | { 1149 | "name": "紅掛花色", 1150 | "romanized": "Benikakehana-iro", 1151 | "english translation": "Safflower color", 1152 | "hex": "#5a4f74" 1153 | }, 1154 | { 1155 | "name": "二藍", 1156 | "romanized": "Futa'ai", 1157 | "english translation": "Dark indigo", 1158 | "hex": "#614e6e" 1159 | }, 1160 | { 1161 | "name": "藤紫", 1162 | "romanized": "Fujimurasaki", 1163 | "english translation": "Wisteria purple", 1164 | "hex": "#875f9a" 1165 | }, 1166 | { 1167 | "name": "紫苑色", 1168 | "romanized": "Shi'on-iro", 1169 | "english translation": "Tatarian aster color", 1170 | "hex": "#976e9a" 1171 | }, 1172 | { 1173 | "name": "紫紺", 1174 | "romanized": "Shikon", 1175 | "english translation": "Blue-violet", 1176 | "hex": "#2b2028" 1177 | }, 1178 | { 1179 | "name": "薄色", 1180 | "romanized": "Usu-iro", 1181 | "english translation": "Thin color", 1182 | "hex": "#a87ca0" 1183 | }, 1184 | { 1185 | "name": "菫色", 1186 | "romanized": "Sumire-iro", 1187 | "english translation": "Violet color", 1188 | "hex": "#5b3256" 1189 | }, 1190 | { 1191 | "name": "黒紅", 1192 | "romanized": "Kurobeni", 1193 | "english translation": "Dark red", 1194 | "hex": "#23191e" 1195 | }, 1196 | { 1197 | "name": "紅藤", 1198 | "romanized": "Benifuji", 1199 | "english translation": "Red wisteria", 1200 | "hex": "#bb7796" 1201 | }, 1202 | { 1203 | "name": "鳩羽鼠", 1204 | "romanized": "Hatobanezumi", 1205 | "english translation": "Dove feather grey", 1206 | "hex": "#755d5b" 1207 | }, 1208 | { 1209 | "name": "蒲萄", 1210 | "romanized": "Ebizome", 1211 | "english translation": "Vine grape", 1212 | "hex": "#6d2b50" 1213 | }, 1214 | { 1215 | "name": "牡丹", 1216 | "romanized": "Bōtan", 1217 | "english translation": "Tree peony", 1218 | "hex": "#a4345d" 1219 | }, 1220 | { 1221 | "name": "似せ紫", 1222 | "romanized": "Nisemurasaki", 1223 | "english translation": "Fake purple", 1224 | "hex": "#43242a" 1225 | }, 1226 | { 1227 | "name": "蘇芳", 1228 | "romanized": "Su'ō", 1229 | "english translation": "Sappanwood", 1230 | "hex": "#7e2639" 1231 | }, 1232 | { 1233 | "name": "紅消鼠", 1234 | "romanized": "Benikeshinezumi", 1235 | "english translation": "Vanishing red mouse", 1236 | "hex": "#44312e" 1237 | }, 1238 | { 1239 | "name": "桔梗色", 1240 | "romanized": "Kikyō-iro", 1241 | "english translation": "Bellflower color", 1242 | "hex": "#5d3f6a" 1243 | }, 1244 | { 1245 | "name": "滅紫", 1246 | "romanized": "Messhi", 1247 | "english translation": "Disappearing purple", 1248 | "hex": "#3f313a" 1249 | }, 1250 | { 1251 | "name": "深紫", 1252 | "romanized": "Kokimurasaki", 1253 | "english translation": "Deep purple", 1254 | "hex": "#3a243b" 1255 | }, 1256 | { 1257 | "name": "半色", 1258 | "romanized": "Hashita-iro", 1259 | "english translation": "Half color", 1260 | "hex": "#8d608c" 1261 | }, 1262 | { 1263 | "name": "紫", 1264 | "romanized": "Murasaki", 1265 | "english translation": "Purple", 1266 | "hex": "#4f284b" 1267 | }, 1268 | { 1269 | "name": "菖蒲色", 1270 | "romanized": "Ayame-iro", 1271 | "english translation": "Iris color", 1272 | "hex": "#763568" 1273 | }, 1274 | { 1275 | "name": "杜若", 1276 | "romanized": "Kakitsubata", 1277 | "english translation": "Rabbit-ear iris", 1278 | "hex": "#491e3c" 1279 | }, 1280 | { 1281 | "name": "葡萄鼠", 1282 | "romanized": "Budōnezumi", 1283 | "english translation": "Grape mouse", 1284 | "hex": "#63424b" 1285 | }, 1286 | { 1287 | "name": "藤煤竹", 1288 | "romanized": "Fujisusutake", 1289 | "english translation": "Wisteria and burnt-bamboo", 1290 | "hex": "#4d3b3c" 1291 | }, 1292 | { 1293 | "name": "梅紫", 1294 | "romanized": "Umemurasaki", 1295 | "english translation": "Plum purple", 1296 | "hex": "#8f4155" 1297 | }, 1298 | { 1299 | "name": "紫鳶", 1300 | "romanized": "Murasakitobi", 1301 | "english translation": "Purple kite", 1302 | "hex": "#512c31" 1303 | }, 1304 | { 1305 | "name": "桑染", 1306 | "romanized": "Kuwazome", 1307 | "english translation": "Mulberry dye", 1308 | "hex": "#59292c" 1309 | }, 1310 | { 1311 | "name": "白練", 1312 | "romanized": "Shironeri", 1313 | "english translation": "Unbleached silk", 1314 | "hex": "#ffddca" 1315 | }, 1316 | { 1317 | "name": "銀鼠", 1318 | "romanized": "Ginnezumi", 1319 | "english translation": "Silver-grey", 1320 | "hex": "#97867c" 1321 | }, 1322 | { 1323 | "name": "丼鼠", 1324 | "romanized": "Dobunezumi", 1325 | "english translation": "Brown rat grey", 1326 | "hex": "#4b3c39" 1327 | }, 1328 | { 1329 | "name": "檳榔子染", 1330 | "romanized": "Binrōjizome", 1331 | "english translation": "Betel nut-dyed", 1332 | "hex": "#352925" 1333 | }, 1334 | { 1335 | "name": "黒色", 1336 | "romanized": "Kokushoku", 1337 | "english translation": "Black", 1338 | "hex": "#171412" 1339 | }, 1340 | { 1341 | "name": "白鼠", 1342 | "romanized": "Shironezumi", 1343 | "english translation": "White mouse", 1344 | "hex": "#b9a193" 1345 | }, 1346 | { 1347 | "name": "素鼠", 1348 | "romanized": "Sunezumi", 1349 | "english translation": "Plain mouse", 1350 | "hex": "#6e5f57" 1351 | }, 1352 | { 1353 | "name": "藍墨茶", 1354 | "romanized": "Aisumicha", 1355 | "english translation": "Indigo ink brown", 1356 | "hex": "#393432" 1357 | }, 1358 | { 1359 | "name": "墨色", 1360 | "romanized": "Sumi-iro", 1361 | "english translation": "Ink color", 1362 | "hex": "#27221f" 1363 | }, 1364 | { 1365 | "name": "藍白", 1366 | "romanized": "Aijiro", 1367 | "english translation": "Indigo white", 1368 | "hex": "#ebf6f7" 1369 | } 1370 | ] -------------------------------------------------------------------------------- /lib/colors/le-corbusier.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "blanc", 4 | "number-suffix": "", 5 | "color-number": "32001", 6 | "collection": "43 Colors of the 1931 collection", 7 | "shade": "White", 8 | "description": "The cream white. Balanced, with stable aesthetics. The first mural ‘Velvet’ shade. ", 9 | "hex": "#eadbc0" 10 | }, 11 | { 12 | "name": "gris foncé", 13 | "number-suffix": "31", 14 | "color-number": "32010", 15 | "collection": "43 Colors of the 1931 collection", 16 | "shade": "Grey & Black", 17 | "description": "The iron grey. Soft, warm, expressive. The darkest shade of 1931.", 18 | "hex": "#5e6061" 19 | }, 20 | { 21 | "name": "gris", 22 | "number-suffix": "31", 23 | "color-number": "32011", 24 | "collection": "43 Colors of the 1931 collection", 25 | "shade": "Grey & Black", 26 | "description": "The medium grey. Elegant and restrained. It can place the walls into shadow.", 27 | "hex": "#929494" 28 | }, 29 | { 30 | "name": "gris moyen", 31 | "number-suffix": "", 32 | "color-number": "32012", 33 | "collection": "43 Colors of the 1931 collection", 34 | "shade": "Grey & Black", 35 | "description": "The discreet grey. Natural, neutral, discreetly calm. The second ‘Velvet’ shade.", 36 | "hex": "#a7a8a5" 37 | }, 38 | { 39 | "name": "gris clair", 40 | "number-suffix": "31", 41 | "color-number": "32013", 42 | "collection": "43 Colors of the 1931 collection", 43 | "shade": "Grey & Black", 44 | "description": "The pearl grey. Weakly luminescent and airy. The third mural ‘Velvet’ shade.", 45 | "hex": "#bcbbb6" 46 | }, 47 | { 48 | "name": "bleu outremer", 49 | "number-suffix": "31", 50 | "color-number": "32020", 51 | "collection": "43 Colors of the 1931 collection", 52 | "shade": "Blue", 53 | "description": "The luminous ultramarin. Dynamic, imposing and much in demand.", 54 | "hex": "#4d6aa8" 55 | }, 56 | { 57 | "name": "outremer moyen", 58 | "number-suffix": "", 59 | "color-number": "32021", 60 | "collection": "43 Colors of the 1931 collection", 61 | "shade": "Blue", 62 | "description": "The lucent sky blue. Like the sky on a clear, sunny day in summer.", 63 | "hex": "#8fabc9" 64 | }, 65 | { 66 | "name": "outremer clair", 67 | "number-suffix": "", 68 | "color-number": "32022", 69 | "collection": "43 Colors of the 1931 collection", 70 | "shade": "Blue", 71 | "description": "The brightened ultramarine. A space atmosphere that loosens up. The first ‘Space’ shade.", 72 | "hex": "#abbdc8" 73 | }, 74 | { 75 | "name": "outremer pâle", 76 | "number-suffix": "", 77 | "color-number": "32023", 78 | "collection": "43 Colors of the 1931 collection", 79 | "shade": "Blue", 80 | "description": "The light ultramarine. An atmosphere that recedes gently. The second ‘Space’ shade.", 81 | "hex": "#b6c6ce" 82 | }, 83 | { 84 | "name": "outremer gris", 85 | "number-suffix": "", 86 | "color-number": "32024", 87 | "collection": "43 Colors of the 1931 collection", 88 | "shade": "Blue", 89 | "description": "The blue grey. The imagination. A restrained atmosphere. The third ‘Space’ shade.", 90 | "hex": "#d9e1dd" 91 | }, 92 | { 93 | "name": "bleu céruléen", 94 | "number-suffix": "31", 95 | "color-number": "32030", 96 | "collection": "43 Colors of the 1931 collection", 97 | "shade": "Blue", 98 | "description": "The powerful cerulean. Appears dynamic and attracts the attention.", 99 | "hex": "#3e6e90" 100 | }, 101 | { 102 | "name": "céruléen vif", 103 | "number-suffix": "", 104 | "color-number": "32031", 105 | "collection": "43 Colors of the 1931 collection", 106 | "shade": "Blue", 107 | "description": "The luminous cerulean. Warm, sensual, Mediterranean. The colour tends towards the observer.", 108 | "hex": "#679dae" 109 | }, 110 | { 111 | "name": "céruléen moyen", 112 | "number-suffix": "", 113 | "color-number": "32032", 114 | "collection": "43 Colors of the 1931 collection", 115 | "shade": "Blue", 116 | "description": "The summery sky. Static, does not come forward anymore. The first mural ‘Sky’ shade.", 117 | "hex": "#8ab5ba" 118 | }, 119 | { 120 | "name": "céruléen clair", 121 | "number-suffix": "", 122 | "color-number": "32033", 123 | "collection": "43 Colors of the 1931 collection", 124 | "shade": "Blue", 125 | "description": "The sky reflected in the water. Subordinates itself. The second mural ‘Sky’ shade.", 126 | "hex": "#a8c4c1" 127 | }, 128 | { 129 | "name": "céruléen pâle", 130 | "number-suffix": "", 131 | "color-number": "32034", 132 | "collection": "43 Colors of the 1931 collection", 133 | "shade": "Blue", 134 | "description": "The sky reflected in ocean waves. Somewhat greenish. The third mural ‘Sky’ colour shade.", 135 | "hex": "#c6d5cc" 136 | }, 137 | { 138 | "name": "vert anglais", 139 | "number-suffix": "", 140 | "color-number": "32040", 141 | "collection": "43 Colors of the 1931 collection", 142 | "shade": "Green", 143 | "description": "The english green. Reminds of aristocracy, also of freshness of the forest.", 144 | "hex": "#406e58" 145 | }, 146 | { 147 | "name": "vert anglais clair", 148 | "number-suffix": "", 149 | "color-number": "32041", 150 | "collection": "43 Colors of the 1931 collection", 151 | "shade": "Green", 152 | "description": "The slightly greyed english green. Like a discreet Verona green.", 153 | "hex": "#91afa1" 154 | }, 155 | { 156 | "name": "vert anglais pâle", 157 | "number-suffix": "", 158 | "color-number": "32042", 159 | "collection": "43 Colors of the 1931 collection", 160 | "shade": "Green", 161 | "description": "The mild grey green. The colour shade links retentively to the landscape.", 162 | "hex": "#becbb7" 163 | }, 164 | { 165 | "name": "vert foncé", 166 | "number-suffix": "", 167 | "color-number": "32050", 168 | "collection": "43 Colors of the 1931 collection", 169 | "shade": "Green", 170 | "description": "The rich brilliant green. A deep and very neutral green; expressing the summer.", 171 | "hex": "#3e6f42" 172 | }, 173 | { 174 | "name": "vert", 175 | "number-suffix": "31", 176 | "color-number": "32051", 177 | "collection": "43 Colors of the 1931 collection", 178 | "shade": "Green", 179 | "description": "The vernal green. Very expressive. The first tone of the ‘Scenery’ atmosphere.", 180 | "hex": "#7fa25a" 181 | }, 182 | { 183 | "name": "vert clair", 184 | "number-suffix": "", 185 | "color-number": "32052", 186 | "collection": "43 Colors of the 1931 collection", 187 | "shade": "Green", 188 | "description": "The green of spring. Natural and fruitful. The second shade representing ‘Scenery’.", 189 | "hex": "#abc17a" 190 | }, 191 | { 192 | "name": "vert jaune clair", 193 | "number-suffix": "", 194 | "color-number": "32053", 195 | "collection": "43 Colors of the 1931 collection", 196 | "shade": "Green", 197 | "description": "The pale green. Gentle, smooth and balanced. The third tone with the mural value of ‘Scenery’.", 198 | "hex": "#c4d39b" 199 | }, 200 | { 201 | "name": "ocre", 202 | "number-suffix": "", 203 | "color-number": "32060", 204 | "collection": "43 Colors of the 1931 collection", 205 | "shade": "Ochre & Yellow", 206 | "description": "The natural sand. Restrained and very elegant. The first tone with mural value of ‘Sand’.", 207 | "hex": "#eacfa6" 208 | }, 209 | { 210 | "name": "orange", 211 | "number-suffix": "", 212 | "color-number": "32080", 213 | "collection": "43 Colors of the 1931 collection", 214 | "shade": "Orange", 215 | "description": "The shiny orange. A dynamic, youthful and optimistic colour.", 216 | "hex": "#d46c40" 217 | }, 218 | { 219 | "name": "orange clair", 220 | "number-suffix": "", 221 | "color-number": "32081", 222 | "collection": "43 Colors of the 1931 collection", 223 | "shade": "Orange", 224 | "description": "The orange apricot. A dynamic, touching and consistently attractive ton.", 225 | "hex": "#dc8d67" 226 | }, 227 | { 228 | "name": "orange pâle", 229 | "number-suffix": "", 230 | "color-number": "32082", 231 | "collection": "43 Colors of the 1931 collection", 232 | "shade": "Orange", 233 | "description": "The sandy orange. Earthy, gentle and constructive. The second mural ‘Sand’ colour.", 234 | "hex": "#eacfb9" 235 | }, 236 | { 237 | "name": "rouge vermillon", 238 | "number-suffix": "31", 239 | "color-number": "32090", 240 | "collection": "43 Colors of the 1931 collection", 241 | "shade": "Red", 242 | "description": "The deep dynamic red. Or the luminescent vermilion red.", 243 | "hex": "#9b3738" 244 | }, 245 | { 246 | "name": "rose pâle", 247 | "number-suffix": "", 248 | "color-number": "32091", 249 | "collection": "43 Colors of the 1931 collection", 250 | "shade": "Red", 251 | "description": "The gentle pink. Earthy, warm and restrained. The first shade with ‘Masonry’ significance.", 252 | "hex": "#e6cdbf" 253 | }, 254 | { 255 | "name": "rouge carmin", 256 | "number-suffix": "", 257 | "color-number": "32100", 258 | "collection": "43 Colors of the 1931 collection", 259 | "shade": "Red", 260 | "description": "The noble carmine red. Steeped in history, dignified and brilliant. ", 261 | "hex": "#8f3a43" 262 | }, 263 | { 264 | "name": "rouge rubia", 265 | "number-suffix": "", 266 | "color-number": "32101", 267 | "collection": "43 Colors of the 1931 collection", 268 | "shade": "Red", 269 | "description": "The artistic red. The tradition-rich red of famous painters.", 270 | "hex": "#943a4d" 271 | }, 272 | { 273 | "name": "rose clair", 274 | "number-suffix": "", 275 | "color-number": "32102", 276 | "collection": "43 Colors of the 1931 collection", 277 | "shade": "Red", 278 | "description": "The bright pink. Or the medium dynamic rose.", 279 | "hex": "#d6afa6" 280 | }, 281 | { 282 | "name": "l'ocre rouge", 283 | "number-suffix": "", 284 | "color-number": "32110", 285 | "collection": "43 Colors of the 1931 collection", 286 | "shade": "Red ochre & Brown", 287 | "description": "The red of ancient architecture. An earthy and deeply luminescent nuance. ", 288 | "hex": "#8b4d3e" 289 | }, 290 | { 291 | "name": "l'ocre rouge moyen", 292 | "number-suffix": "", 293 | "color-number": "32111", 294 | "collection": "43 Colors of the 1931 collection", 295 | "shade": "Red ochre & Brown", 296 | "description": "The medium Terracotta. An earthy and warm tone, which emphasises comfort.", 297 | "hex": "#cd9886" 298 | }, 299 | { 300 | "name": "l'ocre rouge clair", 301 | "number-suffix": "", 302 | "color-number": "32112", 303 | "collection": "43 Colors of the 1931 collection", 304 | "shade": "Red ochre & Brown", 305 | "description": "The bright red ochre. Earthy and stable. The second shade with ‘Masonry’ significance.", 306 | "hex": "#dbbeaa" 307 | }, 308 | { 309 | "name": "terre sienne brûlée", 310 | "number-suffix": "31", 311 | "color-number": "32120", 312 | "collection": "43 Colors of the 1931 collection", 313 | "shade": "Red ochre & Brown", 314 | "description": "The deeply burnt sienna. It fixes the wall impressively.", 315 | "hex": "#68443c" 316 | }, 317 | { 318 | "name": "terre sienne brique", 319 | "number-suffix": "", 320 | "color-number": "32121", 321 | "collection": "43 Colors of the 1931 collection", 322 | "shade": "Red ochre & Brown", 323 | "description": "The light brick red. Suited for timeless colour combinations.", 324 | "hex": "#b67b66" 325 | }, 326 | { 327 | "name": "terre sienne claire", 328 | "number-suffix": "31", 329 | "color-number": "32122", 330 | "collection": "43 Colors of the 1931 collection", 331 | "shade": "Red ochre & Brown", 332 | "description": "The colour of the summery masonry. Loamy and soft. The third ‘Masonry’ shade.", 333 | "hex": "#d8b29a" 334 | }, 335 | { 336 | "name": "terre sienne pâle", 337 | "number-suffix": "", 338 | "color-number": "32123", 339 | "collection": "43 Colors of the 1931 collection", 340 | "shade": "Red ochre & Brown", 341 | "description": "The pale sienna. A sandy, discreet and stable colour shade.", 342 | "hex": "#e2cbb5" 343 | }, 344 | { 345 | "name": "terre d'ombre brûlée", 346 | "number-suffix": "31", 347 | "color-number": "32130", 348 | "collection": "43 Colors of the 1931 collection", 349 | "shade": "Umber", 350 | "description": "The marron. Deeply red brown, burnt. Like a chestnut.", 351 | "hex": "#4c423d" 352 | }, 353 | { 354 | "name": "ombre brûlée claire", 355 | "number-suffix": "", 356 | "color-number": "32131", 357 | "collection": "43 Colors of the 1931 collection", 358 | "shade": "Umber", 359 | "description": "The burnt umber. An ideal background colour. The third shade with mural value of ‘Sand’.", 360 | "hex": "#b7a392" 361 | }, 362 | { 363 | "name": "ombre naturelle", 364 | "number-suffix": "", 365 | "color-number": "32140", 366 | "collection": "43 Colors of the 1931 collection", 367 | "shade": "Umber", 368 | "description": "The dark natural umber. An elegant brown grey colour.", 369 | "hex": "#5a5550" 370 | }, 371 | { 372 | "name": "ombre naturelle moyenne", 373 | "number-suffix": "", 374 | "color-number": "32141", 375 | "collection": "43 Colors of the 1931 collection", 376 | "shade": "Umber", 377 | "description": "The grey brown natural umber. A balanced, aesthetic and appealing colour.", 378 | "hex": "#928a7e" 379 | }, 380 | { 381 | "name": "ombre naturelle claire", 382 | "number-suffix": "", 383 | "color-number": "32142", 384 | "collection": "43 Colors of the 1931 collection", 385 | "shade": "Umber", 386 | "description": "The discrete natural umber. As shadow colour, ideal for combinations.", 387 | "hex": "#b7ac9d" 388 | }, 389 | { 390 | "name": "rouge vermillon", 391 | "number-suffix": "59", 392 | "color-number": "4320A", 393 | "collection": "20 Colors of the 1959 collection", 394 | "shade": "Red", 395 | "description": "The cinnabar red. A fiery shade which catches the eye and reduces the space.", 396 | "hex": "#ac443a" 397 | }, 398 | { 399 | "name": "blanc ivoire", 400 | "number-suffix": "", 401 | "color-number": "4320B", 402 | "collection": "20 Colors of the 1959 collection", 403 | "shade": "White", 404 | "description": "The ivory white. Elegant, charming, chalky. The calm background colour. ", 405 | "hex": "#eae4d7" 406 | }, 407 | { 408 | "name": "rose vif", 409 | "number-suffix": "", 410 | "color-number": "4320C", 411 | "collection": "20 Colors of the 1959 collection", 412 | "shade": "Red", 413 | "description": "The luminous pink. Less earthy and mostly used as complement to other luscious colours.", 414 | "hex": "#dba3af" 415 | }, 416 | { 417 | "name": "terre sienne brûlée", 418 | "number-suffix": "59", 419 | "color-number": "4320D", 420 | "collection": "20 Colors of the 1959 collection", 421 | "shade": "Red ochre & Brown", 422 | "description": "The deep brown sienna. A burnt, rich, dynamic and stable colour tone. ", 423 | "hex": "#744438" 424 | }, 425 | { 426 | "name": "noir d'ivoire", 427 | "number-suffix": "", 428 | "color-number": "4320E", 429 | "collection": "20 Colors of the 1959 collection", 430 | "shade": "Grey & Black", 431 | "description": "The ivory black. Black as the night. Le Corbusier’s only, impressive black tone.", 432 | "hex": "#3a3b3b" 433 | }, 434 | { 435 | "name": "vert olive vif", 436 | "number-suffix": "", 437 | "color-number": "4320F", 438 | "collection": "20 Colors of the 1959 collection", 439 | "shade": "Green", 440 | "description": "The olive green. Green yellow or yellow green? A unique classic.", 441 | "hex": "#b8a136" 442 | }, 443 | { 444 | "name": "vert", 445 | "number-suffix": "59", 446 | "color-number": "4320G", 447 | "collection": "20 Colors of the 1959 collection", 448 | "shade": "Green", 449 | "description": "The emerald green. A dynamic shade with luminous power.", 450 | "hex": "#428f70" 451 | }, 452 | { 453 | "name": "gris", 454 | "number-suffix": "59", 455 | "color-number": "4320H", 456 | "collection": "20 Colors of the 1959 collection", 457 | "shade": "Grey & Black", 458 | "description": "The dynamic medium grey. It reacts stable and dynamic in any light.", 459 | "hex": "#81868b" 460 | }, 461 | { 462 | "name": "terre d'ombre brûlée", 463 | "number-suffix": "59", 464 | "color-number": "4320J", 465 | "collection": "20 Colors of the 1959 collection", 466 | "shade": "Umber", 467 | "description": "The dark burnt umber. Resembles mahogany. It can camouflage and hide.", 468 | "hex": "#403c3a" 469 | }, 470 | { 471 | "name": "bleu outremer", 472 | "number-suffix": "59", 473 | "color-number": "4320K", 474 | "collection": "20 Colors of the 1959 collection", 475 | "shade": "Blue", 476 | "description": "The spectacular ultramarine. An impressive colour shade which moves worlds.", 477 | "hex": "#3957a5" 478 | }, 479 | { 480 | "name": "ocre jaune clair", 481 | "number-suffix": "", 482 | "color-number": "4320L", 483 | "collection": "20 Colors of the 1959 collection", 484 | "shade": "Ochre & Yellow", 485 | "description": "The golden ochre. A deep, powerful and very present colour tone.", 486 | "hex": "#dbb07f" 487 | }, 488 | { 489 | "name": "le rubis", 490 | "number-suffix": "", 491 | "color-number": "4320M", 492 | "collection": "20 Colors of the 1959 collection", 493 | "shade": "Red", 494 | "description": "The ruby. It is darksome and shining, velvety, festive and luxurious.", 495 | "hex": "#74393b" 496 | }, 497 | { 498 | "name": "bleu céruléen", 499 | "number-suffix": "59", 500 | "color-number": "4320N", 501 | "collection": "20 Colors of the 1959 collection", 502 | "shade": "Blue", 503 | "description": "Represents sky and sea. The colour shade is virtually infinitely combinable.", 504 | "hex": "#7aa7cb" 505 | }, 506 | { 507 | "name": "gris clair", 508 | "number-suffix": "59", 509 | "color-number": "4320O", 510 | "collection": "20 Colors of the 1959 collection", 511 | "shade": "Grey & Black", 512 | "description": "The grey in the morning. Somewhat cool. The shade is receding in contrast to white.", 513 | "hex": "#92969a" 514 | }, 515 | { 516 | "name": "terre sienne claire", 517 | "number-suffix": "59", 518 | "color-number": "4320P", 519 | "collection": "20 Colors of the 1959 collection", 520 | "shade": "Ochre & Yellow", 521 | "description": "The natural sienna ochre. Earthy, warm and softer than yellow.", 522 | "hex": "#ddbf99" 523 | }, 524 | { 525 | "name": "ombre naturelle", 526 | "number-suffix": "59", 527 | "color-number": "4320R", 528 | "collection": "20 Colors of the 1959 collection", 529 | "shade": "Umber", 530 | "description": "The deeply dark natural umber. Camouflaging, emphasising other colours.", 531 | "hex": "#45423e" 532 | }, 533 | { 534 | "name": "orange vif", 535 | "number-suffix": "", 536 | "color-number": "4320S", 537 | "collection": "20 Colors of the 1959 collection", 538 | "shade": "Orange", 539 | "description": "The powerful orange. Saturated and energetic. It steps forward and unfolds bold effects.", 540 | "hex": "#c45e3a" 541 | }, 542 | { 543 | "name": "bleu outremer foncé", 544 | "number-suffix": "", 545 | "color-number": "4320T", 546 | "collection": "20 Colors of the 1959 collection", 547 | "shade": "Blue", 548 | "description": "The profound ultramarine blue. A fascinating shade which reflects infinity.", 549 | "hex": "#313d6b" 550 | }, 551 | { 552 | "name": "gris foncé", 553 | "number-suffix": "59", 554 | "color-number": "4320U", 555 | "collection": "20 Colors of the 1959 collection", 556 | "shade": "Grey & Black", 557 | "description": "The dark grey. Strong, rich and close to a metallic effect.", 558 | "hex": "#60646a" 559 | }, 560 | { 561 | "name": "le jaune vif", 562 | "number-suffix": "", 563 | "color-number": "4320W", 564 | "collection": "20 Colors of the 1959 collection", 565 | "shade": "Ochre & Yellow", 566 | "description": "The yellow colour of the sun. It shines impressively in good light.", 567 | "hex": "#f2bb1d" 568 | } 569 | ] -------------------------------------------------------------------------------- /lib/colors/nbs-iscc.json: -------------------------------------------------------------------------------- 1 | [{ 2 | "name": "Vivid Pink", 3 | "hex": "#ffb5ba" 4 | }, 5 | { 6 | "name": "Strong Pink", 7 | "hex": "#ea9399" 8 | }, 9 | { 10 | "name": "Deep Pink", 11 | "hex": "#e4717a" 12 | }, 13 | { 14 | "name": "Light Pink", 15 | "hex": "#f9ccca" 16 | }, 17 | { 18 | "name": "Moderate Pink", 19 | "hex": "#dea5a4" 20 | }, 21 | { 22 | "name": "Dark Pink", 23 | "hex": "#c08081" 24 | }, 25 | { 26 | "name": "Pale Pink", 27 | "hex": "#ead8d7" 28 | }, 29 | { 30 | "name": "Grayish Pink", 31 | "hex": "#c4aead" 32 | }, 33 | { 34 | "name": "Pinkish White", 35 | "hex": "#eae3e1" 36 | }, 37 | { 38 | "name": "Pinkish Gray", 39 | "hex": "#c1b6b3" 40 | }, 41 | { 42 | "name": "Vivid Red", 43 | "hex": "#be0032" 44 | }, 45 | { 46 | "name": "Strong Red", 47 | "hex": "#bc3f4a" 48 | }, 49 | { 50 | "name": "Deep Red", 51 | "hex": "#841b2d" 52 | }, 53 | { 54 | "name": "Very Deep Red", 55 | "hex": "#5c0923" 56 | }, 57 | { 58 | "name": "Moderate Red", 59 | "hex": "#ab4e52" 60 | }, 61 | { 62 | "name": "Dark Red", 63 | "hex": "#722f37" 64 | }, 65 | { 66 | "name": "Very Dark Red", 67 | "hex": "#3f1728" 68 | }, 69 | { 70 | "name": "Light Grayish Red", 71 | "hex": "#ad8884" 72 | }, 73 | { 74 | "name": "Grayish Red", 75 | "hex": "#905d5d" 76 | }, 77 | { 78 | "name": "Dark Grayish Red", 79 | "hex": "#543d3f" 80 | }, 81 | { 82 | "name": "Blackish Red", 83 | "hex": "#2e1d21" 84 | }, 85 | { 86 | "name": "Reddish Gray", 87 | "hex": "#8f817f" 88 | }, 89 | { 90 | "name": "Dark Reddish Gray", 91 | "hex": "#5c504f" 92 | }, 93 | { 94 | "name": "Reddish Black", 95 | "hex": "#282022" 96 | }, 97 | { 98 | "name": "Vivid Yellowish Pink", 99 | "hex": "#ffb7a5" 100 | }, 101 | { 102 | "name": "Strong Yellowish Pink", 103 | "hex": "#f99379" 104 | }, 105 | { 106 | "name": "Deep Yellowish Pink", 107 | "hex": "#e66761" 108 | }, 109 | { 110 | "name": "Light Yellowish Pink", 111 | "hex": "#f4c2c2" 112 | }, 113 | { 114 | "name": "Moderate Yellowish Pink", 115 | "hex": "#d9a6a9" 116 | }, 117 | { 118 | "name": "Dark Yellowish Pink", 119 | "hex": "#c48379" 120 | }, 121 | { 122 | "name": "Pale Yellowish Pink", 123 | "hex": "#ecd5c5" 124 | }, 125 | { 126 | "name": "Grayish Yellowish Pink", 127 | "hex": "#c7ada3" 128 | }, 129 | { 130 | "name": "Brownish Pink", 131 | "hex": "#c2ac99" 132 | }, 133 | { 134 | "name": "Vivid Reddish Orange", 135 | "hex": "#e25822" 136 | }, 137 | { 138 | "name": "Strong Reddish Orange", 139 | "hex": "#d9603b" 140 | }, 141 | { 142 | "name": "Deep Reddish Orange", 143 | "hex": "#aa381e" 144 | }, 145 | { 146 | "name": "Moderate Reddish Orange", 147 | "hex": "#cb6d51" 148 | }, 149 | { 150 | "name": "Dark Reddish Orange", 151 | "hex": "#9e4732" 152 | }, 153 | { 154 | "name": "Grayish Reddish Orange", 155 | "hex": "#b4745e" 156 | }, 157 | { 158 | "name": "Strong Reddish Brown", 159 | "hex": "#882d17" 160 | }, 161 | { 162 | "name": "Deep Reddish Brown", 163 | "hex": "#56070c" 164 | }, 165 | { 166 | "name": "Light Reddish Brown", 167 | "hex": "#a87c6d" 168 | }, 169 | { 170 | "name": "Moderate Reddish Brown", 171 | "hex": "#79443b" 172 | }, 173 | { 174 | "name": "Dark Reddish Brown", 175 | "hex": "#3e1d1e" 176 | }, 177 | { 178 | "name": "Light Grayish Reddish Brown", 179 | "hex": "#977f73" 180 | }, 181 | { 182 | "name": "Grayish Reddish Brown", 183 | "hex": "#674c47" 184 | }, 185 | { 186 | "name": "Dark Grayish Reddish Brown", 187 | "hex": "#43302e" 188 | }, 189 | { 190 | "name": "Vivid Orange", 191 | "hex": "#f38400" 192 | }, 193 | { 194 | "name": "Brilliant Orange", 195 | "hex": "#fd943f" 196 | }, 197 | { 198 | "name": "Strong Orange", 199 | "hex": "#ed872d" 200 | }, 201 | { 202 | "name": "Deep Orange", 203 | "hex": "#be6516" 204 | }, 205 | { 206 | "name": "Light Orange", 207 | "hex": "#fab57f" 208 | }, 209 | { 210 | "name": "Moderate Orange", 211 | "hex": "#d99058" 212 | }, 213 | { 214 | "name": "Brownish Orange", 215 | "hex": "#ae6938" 216 | }, 217 | { 218 | "name": "Strong Brown", 219 | "hex": "#80461b" 220 | }, 221 | { 222 | "name": "Deep Brown", 223 | "hex": "#593319" 224 | }, 225 | { 226 | "name": "Light Brown", 227 | "hex": "#a67b5b" 228 | }, 229 | { 230 | "name": "Moderate Brown", 231 | "hex": "#6f4e37" 232 | }, 233 | { 234 | "name": "Dark Brown", 235 | "hex": "#422518" 236 | }, 237 | { 238 | "name": "Light Grayish Brown", 239 | "hex": "#958070" 240 | }, 241 | { 242 | "name": "Grayish Brown", 243 | "hex": "#635147" 244 | }, 245 | { 246 | "name": "Dark Grayish Brown", 247 | "hex": "#3e322c" 248 | }, 249 | { 250 | "name": "Light Brownish Gray", 251 | "hex": "#8e8279" 252 | }, 253 | { 254 | "name": "Brownish Gray", 255 | "hex": "#5b504f" 256 | }, 257 | { 258 | "name": "Brownish Black", 259 | "hex": "#28201c" 260 | }, 261 | { 262 | "name": "Vivid Orange Yellow", 263 | "hex": "#f6a600" 264 | }, 265 | { 266 | "name": "Brilliant Orange Yellow", 267 | "hex": "#ffc14f" 268 | }, 269 | { 270 | "name": "Strong Orange Yellow", 271 | "hex": "#eaa221" 272 | }, 273 | { 274 | "name": "Deep Orange Yellow", 275 | "hex": "#c98500" 276 | }, 277 | { 278 | "name": "Light Orange Yellow", 279 | "hex": "#fbc97f" 280 | }, 281 | { 282 | "name": "Moderate Orange Yellow", 283 | "hex": "#e3a857" 284 | }, 285 | { 286 | "name": "Dark Orange Yellow", 287 | "hex": "#be8a3d" 288 | }, 289 | { 290 | "name": "Pale Orange Yellow", 291 | "hex": "#fad6a5" 292 | }, 293 | { 294 | "name": "Strong Yellowish Brown", 295 | "hex": "#996515" 296 | }, 297 | { 298 | "name": "Deep Yellowish Brown", 299 | "hex": "#654522" 300 | }, 301 | { 302 | "name": "Light Yellowish Brown", 303 | "hex": "#c19a6b" 304 | }, 305 | { 306 | "name": "Moderate Yellowish Brown", 307 | "hex": "#826644" 308 | }, 309 | { 310 | "name": "Dark Yellowish Brown", 311 | "hex": "#4b3621" 312 | }, 313 | { 314 | "name": "Light Grayish Yellowish Brown", 315 | "hex": "#ae9b82" 316 | }, 317 | { 318 | "name": "Grayish Yellowish Brown", 319 | "hex": "#7e6d5a" 320 | }, 321 | { 322 | "name": "Dark Grayish Yellowish Brown", 323 | "hex": "#483c32" 324 | }, 325 | { 326 | "name": "Vivid Yellow", 327 | "hex": "#f3c300" 328 | }, 329 | { 330 | "name": "Brilliant Yellow", 331 | "hex": "#fada5e" 332 | }, 333 | { 334 | "name": "Strong Yellow", 335 | "hex": "#d4af37" 336 | }, 337 | { 338 | "name": "Deep Yellow", 339 | "hex": "#af8d13" 340 | }, 341 | { 342 | "name": "Light Yellow", 343 | "hex": "#f8de7e" 344 | }, 345 | { 346 | "name": "Moderate Yellow", 347 | "hex": "#c9ae5d" 348 | }, 349 | { 350 | "name": "Dark Yellow", 351 | "hex": "#ab9144" 352 | }, 353 | { 354 | "name": "Pale Yellow", 355 | "hex": "#f3e5ab" 356 | }, 357 | { 358 | "name": "Grayish Yellow", 359 | "hex": "#c2b280" 360 | }, 361 | { 362 | "name": "Dark Grayish Yellow", 363 | "hex": "#a18f60" 364 | }, 365 | { 366 | "name": "Yellowish White", 367 | "hex": "#f0ead6" 368 | }, 369 | { 370 | "name": "Yellowish Gray", 371 | "hex": "#bfb8a5" 372 | }, 373 | { 374 | "name": "Light Olive Brown", 375 | "hex": "#967117" 376 | }, 377 | { 378 | "name": "Moderate Olive Brown", 379 | "hex": "#6c541e" 380 | }, 381 | { 382 | "name": "Dark Olive Brown", 383 | "hex": "#3b3121" 384 | }, 385 | { 386 | "name": "Vivid Greenish Yellow", 387 | "hex": "#dcd300" 388 | }, 389 | { 390 | "name": "Brilliant Greenish Yellow", 391 | "hex": "#e9e450" 392 | }, 393 | { 394 | "name": "Strong Greenish Yellow", 395 | "hex": "#beb72e" 396 | }, 397 | { 398 | "name": "Deep Greenish Yellow", 399 | "hex": "#9b9400" 400 | }, 401 | { 402 | "name": "Light Greenish Yellow", 403 | "hex": "#eae679" 404 | }, 405 | { 406 | "name": "Moderate Greenish Yellow", 407 | "hex": "#b9b459" 408 | }, 409 | { 410 | "name": "Dark Greenish Yellow", 411 | "hex": "#98943e" 412 | }, 413 | { 414 | "name": "Pale Greenish Yellow", 415 | "hex": "#ebe8a4" 416 | }, 417 | { 418 | "name": "Grayish Greenish Yellow", 419 | "hex": "#b9b57d" 420 | }, 421 | { 422 | "name": "Light Olive", 423 | "hex": "#867e36" 424 | }, 425 | { 426 | "name": "Moderate Olive", 427 | "hex": "#665d1e" 428 | }, 429 | { 430 | "name": "Dark Olive", 431 | "hex": "#403d21" 432 | }, 433 | { 434 | "name": "Light Grayish Olive", 435 | "hex": "#8c8767" 436 | }, 437 | { 438 | "name": "Grayish Olive", 439 | "hex": "#5b5842" 440 | }, 441 | { 442 | "name": "Dark Grayish Olive", 443 | "hex": "#363527" 444 | }, 445 | { 446 | "name": "Light Olive Gray", 447 | "hex": "#8a8776" 448 | }, 449 | { 450 | "name": "Olive Gray", 451 | "hex": "#57554c" 452 | }, 453 | { 454 | "name": "Olive Black", 455 | "hex": "#25241d" 456 | }, 457 | { 458 | "name": "Vivid Yellow Green", 459 | "hex": "#8db600" 460 | }, 461 | { 462 | "name": "Brilliant Yellow Green", 463 | "hex": "#bdda57" 464 | }, 465 | { 466 | "name": "Strong Yellow Green", 467 | "hex": "#7e9f2e" 468 | }, 469 | { 470 | "name": "Deep Yellow Green", 471 | "hex": "#467129" 472 | }, 473 | { 474 | "name": "Light Yellow Green", 475 | "hex": "#c9dc89" 476 | }, 477 | { 478 | "name": "Moderate Yellow Green", 479 | "hex": "#8a9a5b" 480 | }, 481 | { 482 | "name": "Pale Yellow Green", 483 | "hex": "#dadfb7" 484 | }, 485 | { 486 | "name": "Grayish Yellow Green", 487 | "hex": "#8f9779" 488 | }, 489 | { 490 | "name": "Strong Olive Green", 491 | "hex": "#404f00" 492 | }, 493 | { 494 | "name": "Deep Olive Green", 495 | "hex": "#232f00" 496 | }, 497 | { 498 | "name": "Moderate Olive Green", 499 | "hex": "#4a5d23" 500 | }, 501 | { 502 | "name": "Dark Olive Green", 503 | "hex": "#2b3d26" 504 | }, 505 | { 506 | "name": "Grayish Olive Green", 507 | "hex": "#515744" 508 | }, 509 | { 510 | "name": "Dark Grayish Olive Green", 511 | "hex": "#31362b" 512 | }, 513 | { 514 | "name": "Vivid Yellowish Green see #115", 515 | "hex": "#27a64c" 516 | }, 517 | { 518 | "name": "Brilliant Yellowish Green", 519 | "hex": "#83d37d" 520 | }, 521 | { 522 | "name": "Strong Yellowish Green", 523 | "hex": "#44944a" 524 | }, 525 | { 526 | "name": "Deep Yellowish Green", 527 | "hex": "#00622d" 528 | }, 529 | { 530 | "name": "Very Deep Yellowish Green", 531 | "hex": "#003118" 532 | }, 533 | { 534 | "name": "Very Light Yellowish Green", 535 | "hex": "#b6e5af" 536 | }, 537 | { 538 | "name": "Light Yellowish Green", 539 | "hex": "#93c592" 540 | }, 541 | { 542 | "name": "Moderate Yellowish Green", 543 | "hex": "#679267" 544 | }, 545 | { 546 | "name": "Dark Yellowish Green", 547 | "hex": "#355e3b" 548 | }, 549 | { 550 | "name": "Very Dark Yellowish Green", 551 | "hex": "#173620" 552 | }, 553 | { 554 | "name": "Vivid Green", 555 | "hex": "#008856" 556 | }, 557 | { 558 | "name": "Brilliant Green", 559 | "hex": "#3eb489" 560 | }, 561 | { 562 | "name": "Strong Green", 563 | "hex": "#007959" 564 | }, 565 | { 566 | "name": "Deep Green", 567 | "hex": "#00543d" 568 | }, 569 | { 570 | "name": "Very Light Green", 571 | "hex": "#8ed1b2" 572 | }, 573 | { 574 | "name": "Light Green", 575 | "hex": "#6aab8e" 576 | }, 577 | { 578 | "name": "Moderate Green", 579 | "hex": "#3b7861" 580 | }, 581 | { 582 | "name": "Dark Green", 583 | "hex": "#1b4d3e" 584 | }, 585 | { 586 | "name": "Very Dark Green", 587 | "hex": "#1c352d" 588 | }, 589 | { 590 | "name": "Very Pale Green", 591 | "hex": "#c7e6d7" 592 | }, 593 | { 594 | "name": "Pale Green", 595 | "hex": "#8da399" 596 | }, 597 | { 598 | "name": "Grayish Green", 599 | "hex": "#5e716a" 600 | }, 601 | { 602 | "name": "Dark Grayish Green", 603 | "hex": "#3a4b47" 604 | }, 605 | { 606 | "name": "Blackish Green", 607 | "hex": "#1a2421" 608 | }, 609 | { 610 | "name": "Greenish White", 611 | "hex": "#dfede8" 612 | }, 613 | { 614 | "name": "Light Greenish Gray", 615 | "hex": "#b2beb5" 616 | }, 617 | { 618 | "name": "Greenish Gray", 619 | "hex": "#7d8984" 620 | }, 621 | { 622 | "name": "Dark Greenish Gray", 623 | "hex": "#4e5755" 624 | }, 625 | { 626 | "name": "Greenish Black", 627 | "hex": "#1e2321" 628 | }, 629 | { 630 | "name": "Vivid Bluish Green", 631 | "hex": "#008882" 632 | }, 633 | { 634 | "name": "Brilliant Bluish Green", 635 | "hex": "#00a693" 636 | }, 637 | { 638 | "name": "Strong Bluish Green", 639 | "hex": "#007a74" 640 | }, 641 | { 642 | "name": "Deep Bluish Green", 643 | "hex": "#00443f" 644 | }, 645 | { 646 | "name": "Very Light Bluish Green", 647 | "hex": "#96ded1" 648 | }, 649 | { 650 | "name": "Light Bluish Green", 651 | "hex": "#66ada4" 652 | }, 653 | { 654 | "name": "Moderate Bluish Green", 655 | "hex": "#317873" 656 | }, 657 | { 658 | "name": "Dark Bluish Green", 659 | "hex": "#004b49" 660 | }, 661 | { 662 | "name": "Very Dark Bluish Green", 663 | "hex": "#002a29" 664 | }, 665 | { 666 | "name": "Vivid Greenish Blue", 667 | "hex": "#0085a1" 668 | }, 669 | { 670 | "name": "Brilliant Greenish Blue", 671 | "hex": "#239eba" 672 | }, 673 | { 674 | "name": "Strong Greenish Blue", 675 | "hex": "#007791" 676 | }, 677 | { 678 | "name": "Deep Greenish Blue", 679 | "hex": "#2e8495" 680 | }, 681 | { 682 | "name": "Very Light Greenish Blue", 683 | "hex": "#9cd1dc" 684 | }, 685 | { 686 | "name": "Light Greenish Blue", 687 | "hex": "#66aabc" 688 | }, 689 | { 690 | "name": "Moderate Greenish Blue", 691 | "hex": "#367588" 692 | }, 693 | { 694 | "name": "Dark Greenish Blue", 695 | "hex": "#004958" 696 | }, 697 | { 698 | "name": "Very Dark Greenish Blue", 699 | "hex": "#002e3b" 700 | }, 701 | { 702 | "name": "Vivid Blue, ultramarine", 703 | "hex": "#00a1c2" 704 | }, 705 | { 706 | "name": "Brilliant Blue, celestial blue", 707 | "hex": "#4997d0" 708 | }, 709 | { 710 | "name": "Strong Blue, bright blue", 711 | "hex": "#0067a5" 712 | }, 713 | { 714 | "name": "Deep Blue, royal blue", 715 | "hex": "#00416a" 716 | }, 717 | { 718 | "name": "Very Light Blue, baby blue", 719 | "hex": "#a1caf1" 720 | }, 721 | { 722 | "name": "Light Blue, sky blue", 723 | "hex": "#70a3cc" 724 | }, 725 | { 726 | "name": "Moderate Blue, cerulean blue", 727 | "hex": "#436b95" 728 | }, 729 | { 730 | "name": "Dark Blue, navy blue", 731 | "hex": "#00304e" 732 | }, 733 | { 734 | "name": "Very Pale Blue, cloud blue", 735 | "hex": "#bcd4e6" 736 | }, 737 | { 738 | "name": "Pale Blue, alice blue", 739 | "hex": "#91a3b0" 740 | }, 741 | { 742 | "name": "Grayish Blue, slate blue", 743 | "hex": "#536878" 744 | }, 745 | { 746 | "name": "Dark Grayish Blue", 747 | "hex": "#36454f" 748 | }, 749 | { 750 | "name": "Blackish Blue", 751 | "hex": "#202830" 752 | }, 753 | { 754 | "name": "Bluish White", 755 | "hex": "#e9e9ed" 756 | }, 757 | { 758 | "name": "Light Bluish Gray", 759 | "hex": "#b4bcc0" 760 | }, 761 | { 762 | "name": "Bluish Gray", 763 | "hex": "#81878b" 764 | }, 765 | { 766 | "name": "Dark Bluish Gray", 767 | "hex": "#51585e" 768 | }, 769 | { 770 | "name": "Bluish Black", 771 | "hex": "#202428" 772 | }, 773 | { 774 | "name": "Vivid Purplish Blue", 775 | "hex": "#30267a" 776 | }, 777 | { 778 | "name": "Brilliant Purplish Blue", 779 | "hex": "#6c79b8" 780 | }, 781 | { 782 | "name": "Strong Purplish Blue", 783 | "hex": "#545aa7" 784 | }, 785 | { 786 | "name": "Deep Purplish Blue", 787 | "hex": "#272458" 788 | }, 789 | { 790 | "name": "Very Light Purplish Blue", 791 | "hex": "#b3bce2" 792 | }, 793 | { 794 | "name": "Light Purplish Blue", 795 | "hex": "#8791bf" 796 | }, 797 | { 798 | "name": "Moderate Purplish Blue", 799 | "hex": "#4e5180" 800 | }, 801 | { 802 | "name": "Dark Purplish Blue", 803 | "hex": "#252440" 804 | }, 805 | { 806 | "name": "Very Pale Purplish Blue", 807 | "hex": "#c0c8e1" 808 | }, 809 | { 810 | "name": "Pale Purplish Blue", 811 | "hex": "#8c92ac" 812 | }, 813 | { 814 | "name": "Grayish Purplish Blue", 815 | "hex": "#4c516d" 816 | }, 817 | { 818 | "name": "Vivid Violet", 819 | "hex": "#9065ca" 820 | }, 821 | { 822 | "name": "Brilliant Violet", 823 | "hex": "#7e73b8" 824 | }, 825 | { 826 | "name": "Strong Violet", 827 | "hex": "#604e97" 828 | }, 829 | { 830 | "name": "Deep Violet", 831 | "hex": "#32174d" 832 | }, 833 | { 834 | "name": "Very Light Violet", 835 | "hex": "#dcd0ff" 836 | }, 837 | { 838 | "name": "Light Violet", 839 | "hex": "#8c82b6" 840 | }, 841 | { 842 | "name": "Moderate Violet", 843 | "hex": "#604e81" 844 | }, 845 | { 846 | "name": "Dark Violet", 847 | "hex": "#2f2140" 848 | }, 849 | { 850 | "name": "Very Pale Violet", 851 | "hex": "#c4c3dd" 852 | }, 853 | { 854 | "name": "Pale Violet", 855 | "hex": "#9690ab" 856 | }, 857 | { 858 | "name": "Grayish Violet", 859 | "hex": "#554c69" 860 | }, 861 | { 862 | "name": "Vivid Purple", 863 | "hex": "#9a4eae" 864 | }, 865 | { 866 | "name": "Brilliant Purple", 867 | "hex": "#d399e6" 868 | }, 869 | { 870 | "name": "Strong Purple", 871 | "hex": "#875692" 872 | }, 873 | { 874 | "name": "Deep Purple", 875 | "hex": "#602f6b" 876 | }, 877 | { 878 | "name": "Very Deep Purple", 879 | "hex": "#401a4c" 880 | }, 881 | { 882 | "name": "Very Light Purple", 883 | "hex": "#d5badb" 884 | }, 885 | { 886 | "name": "Light Purple", 887 | "hex": "#b695c0" 888 | }, 889 | { 890 | "name": "Moderate Purple", 891 | "hex": "#86608e" 892 | }, 893 | { 894 | "name": "Dark Purple", 895 | "hex": "#563c5c" 896 | }, 897 | { 898 | "name": "Very Dark Purple", 899 | "hex": "#301934" 900 | }, 901 | { 902 | "name": "Very Pale Purple", 903 | "hex": "#d6cadd" 904 | }, 905 | { 906 | "name": "Pale Purple", 907 | "hex": "#aa98a9" 908 | }, 909 | { 910 | "name": "Grayish Purple", 911 | "hex": "#796878" 912 | }, 913 | { 914 | "name": "Dark Grayish Purple", 915 | "hex": "#50404d" 916 | }, 917 | { 918 | "name": "Blackish Purple", 919 | "hex": "#291e29" 920 | }, 921 | { 922 | "name": "Purplish White", 923 | "hex": "#e8e3e5" 924 | }, 925 | { 926 | "name": "Light Purplish Gray", 927 | "hex": "#bfb9bd" 928 | }, 929 | { 930 | "name": "Purplish Gray", 931 | "hex": "#8b8589" 932 | }, 933 | { 934 | "name": "Dark Purplish Gray", 935 | "hex": "#5d555b" 936 | }, 937 | { 938 | "name": "Purplish Black", 939 | "hex": "#242124" 940 | }, 941 | { 942 | "name": "Vivid Reddish Purple", 943 | "hex": "#870074" 944 | }, 945 | { 946 | "name": "Strong Reddish Purple", 947 | "hex": "#9e4f88" 948 | }, 949 | { 950 | "name": "Deep Reddish Purple", 951 | "hex": "#702963" 952 | }, 953 | { 954 | "name": "Very Deep Reddish Purple", 955 | "hex": "#54194e" 956 | }, 957 | { 958 | "name": "Light Reddish Purple", 959 | "hex": "#b784a7" 960 | }, 961 | { 962 | "name": "Moderate Reddish Purple", 963 | "hex": "#915c83" 964 | }, 965 | { 966 | "name": "Dark Reddish Purple", 967 | "hex": "#5d3954" 968 | }, 969 | { 970 | "name": "Very Dark Reddish Purple", 971 | "hex": "#341731" 972 | }, 973 | { 974 | "name": "Pale Reddish Purple", 975 | "hex": "#aa8a9e" 976 | }, 977 | { 978 | "name": "Grayish Reddish Purple", 979 | "hex": "#836479" 980 | }, 981 | { 982 | "name": "Brilliant Purplish Pink", 983 | "hex": "#ffc8d6" 984 | }, 985 | { 986 | "name": "Strong Purplish Pink", 987 | "hex": "#e68fac" 988 | }, 989 | { 990 | "name": "Deep Purplish Pink", 991 | "hex": "#de6fa1" 992 | }, 993 | { 994 | "name": "Light Purplish Pink", 995 | "hex": "#efbbcc" 996 | }, 997 | { 998 | "name": "Moderate Purplish Pink", 999 | "hex": "#d597ae" 1000 | }, 1001 | { 1002 | "name": "Dark Purplish Pink", 1003 | "hex": "#c17e91" 1004 | }, 1005 | { 1006 | "name": "Pale Purplish Pink", 1007 | "hex": "#e8ccd7" 1008 | }, 1009 | { 1010 | "name": "Grayish Purplish Pink", 1011 | "hex": "#c3a6b1" 1012 | }, 1013 | { 1014 | "name": "Vivid Purplish Red", 1015 | "hex": "#ce4676" 1016 | }, 1017 | { 1018 | "name": "Strong Purplish Red", 1019 | "hex": "#b3446c" 1020 | }, 1021 | { 1022 | "name": "Deep Purplish Red", 1023 | "hex": "#78184a" 1024 | }, 1025 | { 1026 | "name": "Very Deep Purplish Red", 1027 | "hex": "#54133b" 1028 | }, 1029 | { 1030 | "name": "Moderate Purplish Red", 1031 | "hex": "#a8516e" 1032 | }, 1033 | { 1034 | "name": "Dark Purplish Red", 1035 | "hex": "#673147" 1036 | }, 1037 | { 1038 | "name": "Very Dark Purplish Red", 1039 | "hex": "#38152c" 1040 | }, 1041 | { 1042 | "name": "Light Grayish Purplish Red", 1043 | "hex": "#af868e" 1044 | }, 1045 | { 1046 | "name": "Grayish Purplish Red", 1047 | "hex": "#915f6d" 1048 | }, 1049 | { 1050 | "name": "White", 1051 | "hex": "#f2f3f4" 1052 | }, 1053 | { 1054 | "name": "Light Gray", 1055 | "hex": "#b9b8b5" 1056 | }, 1057 | { 1058 | "name": "Medium Gray", 1059 | "hex": "#848482" 1060 | }, 1061 | { 1062 | "name": "Dark Gray", 1063 | "hex": "#555555" 1064 | }, 1065 | { 1066 | "name": "Black", 1067 | "hex": "#222222" 1068 | } 1069 | ] -------------------------------------------------------------------------------- /lib/colors/osxcrayons.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "Licorice", 4 | "hex": "#000000" 5 | }, 6 | { 7 | "name": "Lead", 8 | "hex": "#212121" 9 | }, 10 | { 11 | "name": "Tungsten", 12 | "hex": "#424242" 13 | }, 14 | { 15 | "name": "Iron", 16 | "hex": "#5e5e5e" 17 | }, 18 | { 19 | "name": "Steel", 20 | "hex": "#797979" 21 | }, 22 | { 23 | "name": "Tin", 24 | "hex": "#919191" 25 | }, 26 | { 27 | "name": "Nickel", 28 | "hex": "#929292" 29 | }, 30 | { 31 | "name": "Aluminum", 32 | "hex": "#a9a9a9" 33 | }, 34 | { 35 | "name": "Magnesium", 36 | "hex": "#c0c0c0" 37 | }, 38 | { 39 | "name": "Silver", 40 | "hex": "#d6d6d6" 41 | }, 42 | { 43 | "name": "Mercury", 44 | "hex": "#ebebeb" 45 | }, 46 | { 47 | "name": "Snow", 48 | "hex": "#ffffff" 49 | }, 50 | { 51 | "name": "Cayenne", 52 | "hex": "#941100" 53 | }, 54 | { 55 | "name": "Mocha", 56 | "hex": "#945200" 57 | }, 58 | { 59 | "name": "Asparagus", 60 | "hex": "#929000" 61 | }, 62 | { 63 | "name": "Fern", 64 | "hex": "#4f8f00" 65 | }, 66 | { 67 | "name": "Clover", 68 | "hex": "#008f00" 69 | }, 70 | { 71 | "name": "Moss", 72 | "hex": "#009051" 73 | }, 74 | { 75 | "name": "Teal", 76 | "hex": "#009193" 77 | }, 78 | { 79 | "name": "Ocean", 80 | "hex": "#005493" 81 | }, 82 | { 83 | "name": "Midnight", 84 | "hex": "#011993" 85 | }, 86 | { 87 | "name": "Eggplant", 88 | "hex": "#531b93" 89 | }, 90 | { 91 | "name": "Plum", 92 | "hex": "#942193" 93 | }, 94 | { 95 | "name": "Maroon", 96 | "hex": "#941751" 97 | }, 98 | { 99 | "name": "Maraschino", 100 | "hex": "#ff2600" 101 | }, 102 | { 103 | "name": "Tangerine", 104 | "hex": "#ff9300" 105 | }, 106 | { 107 | "name": "Lemon", 108 | "hex": "#fffb00" 109 | }, 110 | { 111 | "name": "Lime", 112 | "hex": "#8efa00" 113 | }, 114 | { 115 | "name": "Spring", 116 | "hex": "#00f900" 117 | }, 118 | { 119 | "name": "Sea Foam", 120 | "hex": "#00fa92" 121 | }, 122 | { 123 | "name": "Turquoise", 124 | "hex": "#00fdff" 125 | }, 126 | { 127 | "name": "Aqua", 128 | "hex": "#0096ff" 129 | }, 130 | { 131 | "name": "Blueberry", 132 | "hex": "#0433ff" 133 | }, 134 | { 135 | "name": "Grape", 136 | "hex": "#9437ff" 137 | }, 138 | { 139 | "name": "Magenta", 140 | "hex": "#ff40ff" 141 | }, 142 | { 143 | "name": "Strawberry", 144 | "hex": "#ff2f92" 145 | }, 146 | { 147 | "name": "Salmon", 148 | "hex": "#ff7e79" 149 | }, 150 | { 151 | "name": "Cantalope", 152 | "hex": "#ffd479" 153 | }, 154 | { 155 | "name": "Banana", 156 | "hex": "#fffc79" 157 | }, 158 | { 159 | "name": "Honeydew", 160 | "hex": "#d4fb79" 161 | }, 162 | { 163 | "name": "Flora", 164 | "hex": "#73fa79" 165 | }, 166 | { 167 | "name": "Spindrift", 168 | "hex": "#73fcd6" 169 | }, 170 | { 171 | "name": "Ice", 172 | "hex": "#73fdff" 173 | }, 174 | { 175 | "name": "Sky", 176 | "hex": "#76d6ff" 177 | }, 178 | { 179 | "name": "Orchid", 180 | "hex": "#7a81ff" 181 | }, 182 | { 183 | "name": "Lavender", 184 | "hex": "#d783ff" 185 | }, 186 | { 187 | "name": "Bubblegum", 188 | "hex": "#ff85ff" 189 | }, 190 | { 191 | "name": "Carnation", 192 | "hex": "#ff8ad8" 193 | } 194 | ] -------------------------------------------------------------------------------- /lib/colors/thesaurus.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "Black", 4 | "hex": "#000000", 5 | "category": "black" 6 | }, 7 | { 8 | "name": "Ebony", 9 | "hex": "#080401", 10 | "category": "black" 11 | }, 12 | { 13 | "name": "Crow", 14 | "hex": "#130906", 15 | "category": "black" 16 | }, 17 | { 18 | "name": "Charcoal", 19 | "hex": "#28231d", 20 | "category": "black" 21 | }, 22 | { 23 | "name": "Midnight", 24 | "hex": "#000004", 25 | "category": "black" 26 | }, 27 | { 28 | "name": "Ink", 29 | "hex": "#000000", 30 | "category": "black" 31 | }, 32 | { 33 | "name": "Raven", 34 | "hex": "#040301", 35 | "category": "black" 36 | }, 37 | { 38 | "name": "Oil", 39 | "hex": "#050100", 40 | "category": "black" 41 | }, 42 | { 43 | "name": "Grease", 44 | "hex": "#090806", 45 | "category": "black" 46 | }, 47 | { 48 | "name": "Onyx", 49 | "hex": "#030106", 50 | "category": "black" 51 | }, 52 | { 53 | "name": "Pitch", 54 | "hex": "#020001", 55 | "category": "black" 56 | }, 57 | { 58 | "name": "Soot", 59 | "hex": "#150e06", 60 | "category": "black" 61 | }, 62 | { 63 | "name": "Sable", 64 | "hex": "#030200", 65 | "category": "black" 66 | }, 67 | { 68 | "name": "Jet black", 69 | "hex": "#000000", 70 | "category": "black" 71 | }, 72 | { 73 | "name": "Coal", 74 | "hex": "#111008", 75 | "category": "black" 76 | }, 77 | { 78 | "name": "Metal", 79 | "hex": "#131210", 80 | "category": "black" 81 | }, 82 | { 83 | "name": "Obsidian", 84 | "hex": "#020403", 85 | "category": "black" 86 | }, 87 | { 88 | "name": "Jade", 89 | "hex": "#010302", 90 | "category": "black" 91 | }, 92 | { 93 | "name": "Spider", 94 | "hex": "#030200", 95 | "category": "black" 96 | }, 97 | { 98 | "name": "Leather", 99 | "hex": "#110704", 100 | "category": "black" 101 | }, 102 | { 103 | "name": "Blue", 104 | "hex": "#3a43ba", 105 | "category": "blue" 106 | }, 107 | { 108 | "name": "Slate", 109 | "hex": "#757b87", 110 | "category": "blue" 111 | }, 112 | { 113 | "name": "Sky", 114 | "hex": "#62c5da", 115 | "category": "blue" 116 | }, 117 | { 118 | "name": "Navy", 119 | "hex": "#0b1171", 120 | "category": "blue" 121 | }, 122 | { 123 | "name": "Indigo", 124 | "hex": "#281e5d", 125 | "category": "blue" 126 | }, 127 | { 128 | "name": "Cobalt", 129 | "hex": "#1338bd", 130 | "category": "blue" 131 | }, 132 | { 133 | "name": "Teal", 134 | "hex": "#48aaad", 135 | "category": "blue" 136 | }, 137 | { 138 | "name": "Ocean", 139 | "hex": "#016064", 140 | "category": "blue" 141 | }, 142 | { 143 | "name": "Peacock", 144 | "hex": "#012d36", 145 | "category": "blue" 146 | }, 147 | { 148 | "name": "Azure", 149 | "hex": "#1620a6", 150 | "category": "blue" 151 | }, 152 | { 153 | "name": "Cerulean", 154 | "hex": "#0492c2", 155 | "category": "blue" 156 | }, 157 | { 158 | "name": "Lapis", 159 | "hex": "#2732c2", 160 | "category": "blue" 161 | }, 162 | { 163 | "name": "Spruce", 164 | "hex": "#2c3e4c", 165 | "category": "blue" 166 | }, 167 | { 168 | "name": "Stone", 169 | "hex": "#59788d", 170 | "category": "blue" 171 | }, 172 | { 173 | "name": "Aegean", 174 | "hex": "#1e456e", 175 | "category": "blue" 176 | }, 177 | { 178 | "name": "Berry", 179 | "hex": "#241570", 180 | "category": "blue" 181 | }, 182 | { 183 | "name": "Denim", 184 | "hex": "#151e3d", 185 | "category": "blue" 186 | }, 187 | { 188 | "name": "Admiral", 189 | "hex": "#061094", 190 | "category": "blue" 191 | }, 192 | { 193 | "name": "Sapphire", 194 | "hex": "#52b2c0", 195 | "category": "blue" 196 | }, 197 | { 198 | "name": "Arctic", 199 | "hex": "#82edfd", 200 | "category": "blue" 201 | }, 202 | { 203 | "name": "Brown", 204 | "hex": "#231709", 205 | "category": "brown" 206 | }, 207 | { 208 | "name": "Coffee", 209 | "hex": "#4b371c", 210 | "category": "brown" 211 | }, 212 | { 213 | "name": "Mocha", 214 | "hex": "#3c280d", 215 | "category": "brown" 216 | }, 217 | { 218 | "name": "Peanut", 219 | "hex": "#795c34", 220 | "category": "brown" 221 | }, 222 | { 223 | "name": "Carob", 224 | "hex": "#36260f", 225 | "category": "brown" 226 | }, 227 | { 228 | "name": "Hickory", 229 | "hex": "#371d10", 230 | "category": "brown" 231 | }, 232 | { 233 | "name": "Wood", 234 | "hex": "#3f301d", 235 | "category": "brown" 236 | }, 237 | { 238 | "name": "Pecan", 239 | "hex": "#4a2512", 240 | "category": "brown" 241 | }, 242 | { 243 | "name": "Walnut", 244 | "hex": "#432711", 245 | "category": "brown" 246 | }, 247 | { 248 | "name": "Caramel", 249 | "hex": "#65350f", 250 | "category": "brown" 251 | }, 252 | { 253 | "name": "Gingerbread", 254 | "hex": "#5d2c04", 255 | "category": "brown" 256 | }, 257 | { 258 | "name": "Syrup", 259 | "hex": "#472001", 260 | "category": "brown" 261 | }, 262 | { 263 | "name": "Chocolate", 264 | "hex": "#2c1503", 265 | "category": "brown" 266 | }, 267 | { 268 | "name": "Tortilla", 269 | "hex": "#9a7b4f", 270 | "category": "brown" 271 | }, 272 | { 273 | "name": "Umber", 274 | "hex": "#352315", 275 | "category": "brown" 276 | }, 277 | { 278 | "name": "Tawny", 279 | "hex": "#7e481c", 280 | "category": "brown" 281 | }, 282 | { 283 | "name": "Brunette", 284 | "hex": "#3a1e08", 285 | "category": "brown" 286 | }, 287 | { 288 | "name": "Cinnamon", 289 | "hex": "#632a0d", 290 | "category": "brown" 291 | }, 292 | { 293 | "name": "Penny", 294 | "hex": "#522915", 295 | "category": "brown" 296 | }, 297 | { 298 | "name": "Cedar", 299 | "hex": "#4a3728", 300 | "category": "brown" 301 | }, 302 | { 303 | "name": "Green", 304 | "hex": "#3bb143", 305 | "category": "green" 306 | }, 307 | { 308 | "name": "Chartreuse", 309 | "hex": "#b0fc38", 310 | "category": "green" 311 | }, 312 | { 313 | "name": "Juniper", 314 | "hex": "#3a5311", 315 | "category": "green" 316 | }, 317 | { 318 | "name": "Sage", 319 | "hex": "#728c69", 320 | "category": "green" 321 | }, 322 | { 323 | "name": "Lime", 324 | "hex": "#aef35a", 325 | "category": "green" 326 | }, 327 | { 328 | "name": "Fern", 329 | "hex": "#5cbc63", 330 | "category": "green" 331 | }, 332 | { 333 | "name": "Olive", 334 | "hex": "#98bf64", 335 | "category": "green" 336 | }, 337 | { 338 | "name": "Emerald", 339 | "hex": "#028910", 340 | "category": "green" 341 | }, 342 | { 343 | "name": "Pear", 344 | "hex": "#74b62e", 345 | "category": "green" 346 | }, 347 | { 348 | "name": "Moss", 349 | "hex": "#466d1e", 350 | "category": "green" 351 | }, 352 | { 353 | "name": "Shamrock", 354 | "hex": "#03ac13", 355 | "category": "green" 356 | }, 357 | { 358 | "name": "Seafoam", 359 | "hex": "#3cec97", 360 | "category": "green" 361 | }, 362 | { 363 | "name": "Pine", 364 | "hex": "#234f1e", 365 | "category": "green" 366 | }, 367 | { 368 | "name": "Parakeet", 369 | "hex": "#03c04a", 370 | "category": "green" 371 | }, 372 | { 373 | "name": "Mint", 374 | "hex": "#98edc3", 375 | "category": "green" 376 | }, 377 | { 378 | "name": "Seaweed", 379 | "hex": "#354a21", 380 | "category": "green" 381 | }, 382 | { 383 | "name": "Pickle", 384 | "hex": "#597d35", 385 | "category": "green" 386 | }, 387 | { 388 | "name": "Pistachio", 389 | "hex": "#b2d3c2", 390 | "category": "green" 391 | }, 392 | { 393 | "name": "Basil", 394 | "hex": "#32612d", 395 | "category": "green" 396 | }, 397 | { 398 | "name": "Crocodile", 399 | "hex": "#607d3b", 400 | "category": "green" 401 | }, 402 | { 403 | "name": "Grey", 404 | "hex": "#6c626d", 405 | "category": "grey" 406 | }, 407 | { 408 | "name": "Shadow", 409 | "hex": "#373737", 410 | "category": "grey" 411 | }, 412 | { 413 | "name": "Graphite", 414 | "hex": "#584d5b", 415 | "category": "grey" 416 | }, 417 | { 418 | "name": "Iron", 419 | "hex": "#322d31", 420 | "category": "grey" 421 | }, 422 | { 423 | "name": "Pewter", 424 | "hex": "#6a6880", 425 | "category": "grey" 426 | }, 427 | { 428 | "name": "Cloud", 429 | "hex": "#c6c6d0", 430 | "category": "grey" 431 | }, 432 | { 433 | "name": "Silver", 434 | "hex": "#adadc7", 435 | "category": "grey" 436 | }, 437 | { 438 | "name": "Smoke", 439 | "hex": "#59515e", 440 | "category": "grey" 441 | }, 442 | { 443 | "name": "Slate", 444 | "hex": "#3f3d53", 445 | "category": "grey" 446 | }, 447 | { 448 | "name": "Anchor", 449 | "hex": "#42424c", 450 | "category": "grey" 451 | }, 452 | { 453 | "name": "Ash", 454 | "hex": "#554c4d", 455 | "category": "grey" 456 | }, 457 | { 458 | "name": "Porpoise", 459 | "hex": "#4d4c5c", 460 | "category": "grey" 461 | }, 462 | { 463 | "name": "Dove", 464 | "hex": "#7c6e7f", 465 | "category": "grey" 466 | }, 467 | { 468 | "name": "Fog", 469 | "hex": "#655965", 470 | "category": "grey" 471 | }, 472 | { 473 | "name": "Flint", 474 | "hex": "#7e7d9c", 475 | "category": "grey" 476 | }, 477 | { 478 | "name": "Charcoal", 479 | "hex": "#222023", 480 | "category": "grey" 481 | }, 482 | { 483 | "name": "Pebble", 484 | "hex": "#333333", 485 | "category": "grey" 486 | }, 487 | { 488 | "name": "Lead", 489 | "hex": "#403f4d", 490 | "category": "grey" 491 | }, 492 | { 493 | "name": "Coin", 494 | "hex": "#9897a9", 495 | "category": "grey" 496 | }, 497 | { 498 | "name": "Fossil", 499 | "hex": "#787276", 500 | "category": "grey" 501 | }, 502 | { 503 | "name": "Orange", 504 | "hex": "#ed7014", 505 | "category": "orange" 506 | }, 507 | { 508 | "name": "Tangerine", 509 | "hex": "#f98228", 510 | "category": "orange" 511 | }, 512 | { 513 | "name": "Marigold", 514 | "hex": "#fdae1d", 515 | "category": "orange" 516 | }, 517 | { 518 | "name": "Cider", 519 | "hex": "#b56727", 520 | "category": "orange" 521 | }, 522 | { 523 | "name": "Rust", 524 | "hex": "#8c4004", 525 | "category": "orange" 526 | }, 527 | { 528 | "name": "Ginger", 529 | "hex": "#bc5602", 530 | "category": "orange" 531 | }, 532 | { 533 | "name": "Tiger", 534 | "hex": "#fc6b02", 535 | "category": "orange" 536 | }, 537 | { 538 | "name": "Fire", 539 | "hex": "#dd561c", 540 | "category": "orange" 541 | }, 542 | { 543 | "name": "Bronze", 544 | "hex": "#b2560d", 545 | "category": "orange" 546 | }, 547 | { 548 | "name": "Cantaloupe", 549 | "hex": "#fca172", 550 | "category": "orange" 551 | }, 552 | { 553 | "name": "Apricot", 554 | "hex": "#ed820e", 555 | "category": "orange" 556 | }, 557 | { 558 | "name": "Clay", 559 | "hex": "#7f400b", 560 | "category": "orange" 561 | }, 562 | { 563 | "name": "Honey", 564 | "hex": "#ec9706", 565 | "category": "orange" 566 | }, 567 | { 568 | "name": "Carrot", 569 | "hex": "#ed7117", 570 | "category": "orange" 571 | }, 572 | { 573 | "name": "Squash", 574 | "hex": "#c95c0a", 575 | "category": "orange" 576 | }, 577 | { 578 | "name": "Spice", 579 | "hex": "#7a3903", 580 | "category": "orange" 581 | }, 582 | { 583 | "name": "Marmalade", 584 | "hex": "#d16002", 585 | "category": "orange" 586 | }, 587 | { 588 | "name": "Amber", 589 | "hex": "#893101", 590 | "category": "orange" 591 | }, 592 | { 593 | "name": "Sandstone", 594 | "hex": "#d67129", 595 | "category": "orange" 596 | }, 597 | { 598 | "name": "Yam", 599 | "hex": "#cc5801", 600 | "category": "orange" 601 | }, 602 | { 603 | "name": "Pink", 604 | "hex": "#f69acd", 605 | "category": "pink" 606 | }, 607 | { 608 | "name": "Rose", 609 | "hex": "#fc94ad", 610 | "category": "pink" 611 | }, 612 | { 613 | "name": "Fushcia", 614 | "hex": "#fc46aa", 615 | "category": "pink" 616 | }, 617 | { 618 | "name": "Punch", 619 | "hex": "#f15278", 620 | "category": "pink" 621 | }, 622 | { 623 | "name": "Blush", 624 | "hex": "#fec5e5", 625 | "category": "pink" 626 | }, 627 | { 628 | "name": "Watermelon", 629 | "hex": "#fe7f9c", 630 | "category": "pink" 631 | }, 632 | { 633 | "name": "Flamingo", 634 | "hex": "#fda4b8", 635 | "category": "pink" 636 | }, 637 | { 638 | "name": "Rouge", 639 | "hex": "#f26b8b", 640 | "category": "pink" 641 | }, 642 | { 643 | "name": "Salmon", 644 | "hex": "#fdab9f", 645 | "category": "pink" 646 | }, 647 | { 648 | "name": "Coral", 649 | "hex": "#fe7d68", 650 | "category": "pink" 651 | }, 652 | { 653 | "name": "Peach", 654 | "hex": "#fb9483", 655 | "category": "pink" 656 | }, 657 | { 658 | "name": "Strawberry", 659 | "hex": "#fc4c4e", 660 | "category": "pink" 661 | }, 662 | { 663 | "name": "Rosewood", 664 | "hex": "#a04242", 665 | "category": "pink" 666 | }, 667 | { 668 | "name": "Lemonade", 669 | "hex": "#fbbbcb", 670 | "category": "pink" 671 | }, 672 | { 673 | "name": "Taffy", 674 | "hex": "#fa86c5", 675 | "category": "pink" 676 | }, 677 | { 678 | "name": "Bubblegum", 679 | "hex": "#fd5ca8", 680 | "category": "pink" 681 | }, 682 | { 683 | "name": "Ballet slipper", 684 | "hex": "#f69abf", 685 | "category": "pink" 686 | }, 687 | { 688 | "name": "Crepe", 689 | "hex": "#f2b8c6", 690 | "category": "pink" 691 | }, 692 | { 693 | "name": "Magenta", 694 | "hex": "#e11584", 695 | "category": "pink" 696 | }, 697 | { 698 | "name": "Hot pink", 699 | "hex": "#ff1695", 700 | "category": "pink" 701 | }, 702 | { 703 | "name": "Purple", 704 | "hex": "#a32cc4", 705 | "category": "purple" 706 | }, 707 | { 708 | "name": "Mauve", 709 | "hex": "#7a4a88", 710 | "category": "purple" 711 | }, 712 | { 713 | "name": "Violet", 714 | "hex": "#710193", 715 | "category": "purple" 716 | }, 717 | { 718 | "name": "Boysenberry", 719 | "hex": "#620436", 720 | "category": "purple" 721 | }, 722 | { 723 | "name": "Lavender", 724 | "hex": "#e39ff6", 725 | "category": "purple" 726 | }, 727 | { 728 | "name": "Plum", 729 | "hex": "#601a36", 730 | "category": "purple" 731 | }, 732 | { 733 | "name": "Magenta", 734 | "hex": "#a10559", 735 | "category": "purple" 736 | }, 737 | { 738 | "name": "Lilac", 739 | "hex": "#b660cd", 740 | "category": "purple" 741 | }, 742 | { 743 | "name": "Grape", 744 | "hex": "#663047", 745 | "category": "purple" 746 | }, 747 | { 748 | "name": "Periwinkle", 749 | "hex": "#bd93d3", 750 | "category": "purple" 751 | }, 752 | { 753 | "name": "Sangria", 754 | "hex": "#4d0f28", 755 | "category": "purple" 756 | }, 757 | { 758 | "name": "Eggplant", 759 | "hex": "#311432", 760 | "category": "purple" 761 | }, 762 | { 763 | "name": "Jam", 764 | "hex": "#66042d", 765 | "category": "purple" 766 | }, 767 | { 768 | "name": "Iris", 769 | "hex": "#9866c5", 770 | "category": "purple" 771 | }, 772 | { 773 | "name": "Heather", 774 | "hex": "#9b7cb8", 775 | "category": "purple" 776 | }, 777 | { 778 | "name": "Amethyst", 779 | "hex": "#a45ee5", 780 | "category": "purple" 781 | }, 782 | { 783 | "name": "Raisin", 784 | "hex": "#290916", 785 | "category": "purple" 786 | }, 787 | { 788 | "name": "Orchid", 789 | "hex": "#af69ee", 790 | "category": "purple" 791 | }, 792 | { 793 | "name": "Mulberry", 794 | "hex": "#4c0120", 795 | "category": "purple" 796 | }, 797 | { 798 | "name": "Wine", 799 | "hex": "#2c051a", 800 | "category": "purple" 801 | }, 802 | { 803 | "name": "Red", 804 | "hex": "#d0312d", 805 | "category": "red" 806 | }, 807 | { 808 | "name": "Cherry", 809 | "hex": "#990f02", 810 | "category": "red" 811 | }, 812 | { 813 | "name": "Rose", 814 | "hex": "#e2252b", 815 | "category": "red" 816 | }, 817 | { 818 | "name": "Jam", 819 | "hex": "#600f0b", 820 | "category": "red" 821 | }, 822 | { 823 | "name": "Merlot", 824 | "hex": "#541f1b", 825 | "category": "red" 826 | }, 827 | { 828 | "name": "Garnet", 829 | "hex": "#600b04", 830 | "category": "red" 831 | }, 832 | { 833 | "name": "Crimson", 834 | "hex": "#b80f0a", 835 | "category": "red" 836 | }, 837 | { 838 | "name": "Ruby", 839 | "hex": "#900603", 840 | "category": "red" 841 | }, 842 | { 843 | "name": "Scarlet", 844 | "hex": "#910d09", 845 | "category": "red" 846 | }, 847 | { 848 | "name": "Wine", 849 | "hex": "#4c0805", 850 | "category": "red" 851 | }, 852 | { 853 | "name": "Brick", 854 | "hex": "#7e2811", 855 | "category": "red" 856 | }, 857 | { 858 | "name": "Apple", 859 | "hex": "#a91b0d", 860 | "category": "red" 861 | }, 862 | { 863 | "name": "Mahogany", 864 | "hex": "#420d09", 865 | "category": "red" 866 | }, 867 | { 868 | "name": "Blood", 869 | "hex": "#710c04", 870 | "category": "red" 871 | }, 872 | { 873 | "name": "Sangria", 874 | "hex": "#5e1914", 875 | "category": "red" 876 | }, 877 | { 878 | "name": "Berry", 879 | "hex": "#791812", 880 | "category": "red" 881 | }, 882 | { 883 | "name": "Currant", 884 | "hex": "#670c07", 885 | "category": "red" 886 | }, 887 | { 888 | "name": "Blush", 889 | "hex": "#bc5449", 890 | "category": "red" 891 | }, 892 | { 893 | "name": "Candy", 894 | "hex": "#d21502", 895 | "category": "red" 896 | }, 897 | { 898 | "name": "Lipstick", 899 | "hex": "#9c1003", 900 | "category": "red" 901 | }, 902 | { 903 | "name": "Tan", 904 | "hex": "#e6dbad", 905 | "category": "tan" 906 | }, 907 | { 908 | "name": "Beige", 909 | "hex": "#ecdd9a", 910 | "category": "tan" 911 | }, 912 | { 913 | "name": "Macaroon", 914 | "hex": "#f8e076", 915 | "category": "tan" 916 | }, 917 | { 918 | "name": "Hazel wood", 919 | "hex": "#c9bb8e", 920 | "category": "tan" 921 | }, 922 | { 923 | "name": "Granola", 924 | "hex": "#d6b75a", 925 | "category": "tan" 926 | }, 927 | { 928 | "name": "Oat", 929 | "hex": "#dec98a", 930 | "category": "tan" 931 | }, 932 | { 933 | "name": "Egg nog", 934 | "hex": "#fae29a", 935 | "category": "tan" 936 | }, 937 | { 938 | "name": "Fawn", 939 | "hex": "#c7a951", 940 | "category": "tan" 941 | }, 942 | { 943 | "name": "Sugar cookie", 944 | "hex": "#f3ebad", 945 | "category": "tan" 946 | }, 947 | { 948 | "name": "Sand", 949 | "hex": "#d7b963", 950 | "category": "tan" 951 | }, 952 | { 953 | "name": "Sepia", 954 | "hex": "#e3b778", 955 | "category": "tan" 956 | }, 957 | { 958 | "name": "Latte", 959 | "hex": "#dfc17b", 960 | "category": "tan" 961 | }, 962 | { 963 | "name": "Oyster", 964 | "hex": "#dcd7a0", 965 | "category": "tan" 966 | }, 967 | { 968 | "name": "Biscotti", 969 | "hex": "#e3c565", 970 | "category": "tan" 971 | }, 972 | { 973 | "name": "Parmesan", 974 | "hex": "#fde992", 975 | "category": "tan" 976 | }, 977 | { 978 | "name": "Hazelnut", 979 | "hex": "#bda55d", 980 | "category": "tan" 981 | }, 982 | { 983 | "name": "Sandcastle", 984 | "hex": "#dac27c", 985 | "category": "tan" 986 | }, 987 | { 988 | "name": "Buttermilk", 989 | "hex": "#fdefb2", 990 | "category": "tan" 991 | }, 992 | { 993 | "name": "Sand dollar", 994 | "hex": "#ece8b9", 995 | "category": "tan" 996 | }, 997 | { 998 | "name": "Shortbread", 999 | "hex": "#fbe790", 1000 | "category": "tan" 1001 | }, 1002 | { 1003 | "name": "White", 1004 | "hex": "#fffefc", 1005 | "category": "white" 1006 | }, 1007 | { 1008 | "name": "Pearl", 1009 | "hex": "#fbfcf7", 1010 | "category": "white" 1011 | }, 1012 | { 1013 | "name": "Alabaster", 1014 | "hex": "#fefaf1", 1015 | "category": "white" 1016 | }, 1017 | { 1018 | "name": "Snow", 1019 | "hex": "#f5fefd", 1020 | "category": "white" 1021 | }, 1022 | { 1023 | "name": "Ivory", 1024 | "hex": "#fdf6e4", 1025 | "category": "white" 1026 | }, 1027 | { 1028 | "name": "Cream", 1029 | "hex": "#fffada", 1030 | "category": "white" 1031 | }, 1032 | { 1033 | "name": "Egg Shell", 1034 | "hex": "#fef9e3", 1035 | "category": "white" 1036 | }, 1037 | { 1038 | "name": "Cotton", 1039 | "hex": "#fbfcf7", 1040 | "category": "white" 1041 | }, 1042 | { 1043 | "name": "Chiffon", 1044 | "hex": "#fafaf2", 1045 | "category": "white" 1046 | }, 1047 | { 1048 | "name": "Salt", 1049 | "hex": "#f7efec", 1050 | "category": "white" 1051 | }, 1052 | { 1053 | "name": "Lace", 1054 | "hex": "#faf3eb", 1055 | "category": "white" 1056 | }, 1057 | { 1058 | "name": "Coconut", 1059 | "hex": "#fff1e6", 1060 | "category": "white" 1061 | }, 1062 | { 1063 | "name": "Linen", 1064 | "hex": "#f2ead3", 1065 | "category": "white" 1066 | }, 1067 | { 1068 | "name": "Bone", 1069 | "hex": "#e7dfcc", 1070 | "category": "white" 1071 | }, 1072 | { 1073 | "name": "Daisy", 1074 | "hex": "#ffffff", 1075 | "category": "white" 1076 | }, 1077 | { 1078 | "name": "Powder", 1079 | "hex": "#fbfcf7", 1080 | "category": "white" 1081 | }, 1082 | { 1083 | "name": "Frost", 1084 | "hex": "#ecfcfc", 1085 | "category": "white" 1086 | }, 1087 | { 1088 | "name": "Porcelain", 1089 | "hex": "#fffefc", 1090 | "category": "white" 1091 | }, 1092 | { 1093 | "name": "Parchment", 1094 | "hex": "#fbf5df", 1095 | "category": "white" 1096 | }, 1097 | { 1098 | "name": "Rice", 1099 | "hex": "#faf5ef", 1100 | "category": "white" 1101 | }, 1102 | { 1103 | "name": "Yellow", 1104 | "hex": "#fde64b", 1105 | "category": "yellow" 1106 | }, 1107 | { 1108 | "name": "Canary", 1109 | "hex": "#f9c802", 1110 | "category": "yellow" 1111 | }, 1112 | { 1113 | "name": "Gold", 1114 | "hex": "#f9a602", 1115 | "category": "yellow" 1116 | }, 1117 | { 1118 | "name": "Daffodil", 1119 | "hex": "#fdee87", 1120 | "category": "yellow" 1121 | }, 1122 | { 1123 | "name": "Flaxen", 1124 | "hex": "#d6b75a", 1125 | "category": "yellow" 1126 | }, 1127 | { 1128 | "name": "Butter", 1129 | "hex": "#fee227", 1130 | "category": "yellow" 1131 | }, 1132 | { 1133 | "name": "Lemon", 1134 | "hex": "#effd5f", 1135 | "category": "yellow" 1136 | }, 1137 | { 1138 | "name": "Mustard", 1139 | "hex": "#e8b828", 1140 | "category": "yellow" 1141 | }, 1142 | { 1143 | "name": "Corn", 1144 | "hex": "#e4cd05", 1145 | "category": "yellow" 1146 | }, 1147 | { 1148 | "name": "Medallion", 1149 | "hex": "#e3b104", 1150 | "category": "yellow" 1151 | }, 1152 | { 1153 | "name": "Dandelion", 1154 | "hex": "#fdce2a", 1155 | "category": "yellow" 1156 | }, 1157 | { 1158 | "name": "Fire", 1159 | "hex": "#fda50f", 1160 | "category": "yellow" 1161 | }, 1162 | { 1163 | "name": "Bumblebee", 1164 | "hex": "#fce205", 1165 | "category": "yellow" 1166 | }, 1167 | { 1168 | "name": "Banana", 1169 | "hex": "#fcf4a3", 1170 | "category": "yellow" 1171 | }, 1172 | { 1173 | "name": "Butterscotch", 1174 | "hex": "#fabd02", 1175 | "category": "yellow" 1176 | }, 1177 | { 1178 | "name": "Dijon", 1179 | "hex": "#c29200", 1180 | "category": "yellow" 1181 | }, 1182 | { 1183 | "name": "Honey", 1184 | "hex": "#ffc30b", 1185 | "category": "yellow" 1186 | }, 1187 | { 1188 | "name": "Blonde", 1189 | "hex": "#feeb75", 1190 | "category": "yellow" 1191 | }, 1192 | { 1193 | "name": "Pineapple", 1194 | "hex": "#fee227", 1195 | "category": "yellow" 1196 | }, 1197 | { 1198 | "name": "Tuscan sun", 1199 | "hex": "#fcd12a", 1200 | "category": "yellow" 1201 | } 1202 | ] -------------------------------------------------------------------------------- /lib/colors/windows.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "Alice Blue", 4 | "hex": "#f0f8ff" 5 | }, 6 | { 7 | "name": "Antique White", 8 | "hex": "#faebd7" 9 | }, 10 | { 11 | "name": "Aqua", 12 | "hex": "#00ffff" 13 | }, 14 | { 15 | "name": "Aquamarine", 16 | "hex": "#7fffd4" 17 | }, 18 | { 19 | "name": "Azure", 20 | "hex": "#f0ffff" 21 | }, 22 | { 23 | "name": "Beige", 24 | "hex": "#f5f5dc" 25 | }, 26 | { 27 | "name": "Bisque", 28 | "hex": "#ffe4c4" 29 | }, 30 | { 31 | "name": "Black", 32 | "hex": "#000000" 33 | }, 34 | { 35 | "name": "Blanched Almond", 36 | "hex": "#ffebcd" 37 | }, 38 | { 39 | "name": "Blue", 40 | "hex": "#0000ff" 41 | }, 42 | { 43 | "name": "Blue Violet", 44 | "hex": "#8a2be2" 45 | }, 46 | { 47 | "name": "Brown", 48 | "hex": "#a52a2a" 49 | }, 50 | { 51 | "name": "Burly Wood", 52 | "hex": "#deb887" 53 | }, 54 | { 55 | "name": "CadetBlue", 56 | "hex": "#5f9ea0" 57 | }, 58 | { 59 | "name": "Chartreuse", 60 | "hex": "#7fff00" 61 | }, 62 | { 63 | "name": "Chocolate", 64 | "hex": "#d2691e" 65 | }, 66 | { 67 | "name": "Coral", 68 | "hex": "#ff7f50" 69 | }, 70 | { 71 | "name": "CornflowerBlue", 72 | "hex": "#6495ed" 73 | }, 74 | { 75 | "name": "Cornsilk", 76 | "hex": "#fff8dc" 77 | }, 78 | { 79 | "name": "Crimson", 80 | "hex": "#dc143c" 81 | }, 82 | { 83 | "name": "Cyan", 84 | "hex": "#00ffff" 85 | }, 86 | { 87 | "name": "Dark Blue", 88 | "hex": "#00008b" 89 | }, 90 | { 91 | "name": "Dark Cyan", 92 | "hex": "#008b8b" 93 | }, 94 | { 95 | "name": "Dark Goldenrod", 96 | "hex": "#b8860b" 97 | }, 98 | { 99 | "name": "Dark Gray", 100 | "hex": "#a9a9a9" 101 | }, 102 | { 103 | "name": "Dark Green", 104 | "hex": "#006400" 105 | }, 106 | { 107 | "name": "Dark Khaki", 108 | "hex": "#bdb76b" 109 | }, 110 | { 111 | "name": "Dark Magenta", 112 | "hex": "#8b008b" 113 | }, 114 | { 115 | "name": "Dark Olive Green", 116 | "hex": "#556b2f" 117 | }, 118 | { 119 | "name": "Dark Orange", 120 | "hex": "#ff8c00" 121 | }, 122 | { 123 | "name": "Dark Orchid", 124 | "hex": "#9932cc" 125 | }, 126 | { 127 | "name": "Dark Red", 128 | "hex": "#8b0000" 129 | }, 130 | { 131 | "name": "Dark Salmon", 132 | "hex": "#e9967a" 133 | }, 134 | { 135 | "name": "Dark Sea Green", 136 | "hex": "#8fbc8f" 137 | }, 138 | { 139 | "name": "Dark Slate Blue", 140 | "hex": "#483d8b" 141 | }, 142 | { 143 | "name": "Dark Slate Gray", 144 | "hex": "#2f4f4f" 145 | }, 146 | { 147 | "name": "Dark Turquoise", 148 | "hex": "#00ced1" 149 | }, 150 | { 151 | "name": "Dark Violet", 152 | "hex": "#9400d3" 153 | }, 154 | { 155 | "name": "Deep Pink", 156 | "hex": "#ff1493" 157 | }, 158 | { 159 | "name": "Deep Sky Blue", 160 | "hex": "#00bfff" 161 | }, 162 | { 163 | "name": "Dim Gray", 164 | "hex": "#696969" 165 | }, 166 | { 167 | "name": "Dodger Blue", 168 | "hex": "#1e90ff" 169 | }, 170 | { 171 | "name": "Firebrick", 172 | "hex": "#b22222" 173 | }, 174 | { 175 | "name": "Floral White", 176 | "hex": "#fffaf0" 177 | }, 178 | { 179 | "name": "Forest Green", 180 | "hex": "#228b22" 181 | }, 182 | { 183 | "name": "Fuchsia", 184 | "hex": "#ff00ff" 185 | }, 186 | { 187 | "name": "Gainsboro", 188 | "hex": "#dcdcdc" 189 | }, 190 | { 191 | "name": "Ghost White", 192 | "hex": "#f8f8ff" 193 | }, 194 | { 195 | "name": "Gold", 196 | "hex": "#ffd700" 197 | }, 198 | { 199 | "name": "Goldenrod", 200 | "hex": "#daa520" 201 | }, 202 | { 203 | "name": "Gray", 204 | "hex": "#808080" 205 | }, 206 | { 207 | "name": "Green", 208 | "hex": "#008000" 209 | }, 210 | { 211 | "name": "Green Yellow", 212 | "hex": "#adff2f" 213 | }, 214 | { 215 | "name": "Honeydew", 216 | "hex": "#f0fff0" 217 | }, 218 | { 219 | "name": "Hot Pink", 220 | "hex": "#ff69b4" 221 | }, 222 | { 223 | "name": "Indian Red", 224 | "hex": "#cd5c5c" 225 | }, 226 | { 227 | "name": "Indigo", 228 | "hex": "#4b0082" 229 | }, 230 | { 231 | "name": "Ivory", 232 | "hex": "#fffff0" 233 | }, 234 | { 235 | "name": "Khaki", 236 | "hex": "#f0e68c" 237 | }, 238 | { 239 | "name": "Lavender", 240 | "hex": "#e6e6fa" 241 | }, 242 | { 243 | "name": "Lavender Blush", 244 | "hex": "#fff0f5" 245 | }, 246 | { 247 | "name": "Lawn Green", 248 | "hex": "#7cfc00" 249 | }, 250 | { 251 | "name": "Lemon Chiffon", 252 | "hex": "#fffacd" 253 | }, 254 | { 255 | "name": "Light Blue", 256 | "hex": "#add8e6" 257 | }, 258 | { 259 | "name": "Light Coral", 260 | "hex": "#f08080" 261 | }, 262 | { 263 | "name": "Light Cyan", 264 | "hex": "#e0ffff" 265 | }, 266 | { 267 | "name": "Light Goldenrod Yellow", 268 | "hex": "#fafad2" 269 | }, 270 | { 271 | "name": "Light Gray", 272 | "hex": "#d3d3d3" 273 | }, 274 | { 275 | "name": "Light Green", 276 | "hex": "#90ee90" 277 | }, 278 | { 279 | "name": "Light Pink", 280 | "hex": "#ffb6c1" 281 | }, 282 | { 283 | "name": "Light Salmon", 284 | "hex": "#ffa07a" 285 | }, 286 | { 287 | "name": "Light Sea Green", 288 | "hex": "#20b2aa" 289 | }, 290 | { 291 | "name": "Light Sky Blue", 292 | "hex": "#87cefa" 293 | }, 294 | { 295 | "name": "Light Slate Gray", 296 | "hex": "#778899" 297 | }, 298 | { 299 | "name": "Light Steel Blue", 300 | "hex": "#b0c4de" 301 | }, 302 | { 303 | "name": "Light Yellow", 304 | "hex": "#ffffe0" 305 | }, 306 | { 307 | "name": "Lime", 308 | "hex": "#00ff00" 309 | }, 310 | { 311 | "name": "Lime Green", 312 | "hex": "#32cd32" 313 | }, 314 | { 315 | "name": "Linen", 316 | "hex": "#faf0e6" 317 | }, 318 | { 319 | "name": "Magenta", 320 | "hex": "#ff00ff" 321 | }, 322 | { 323 | "name": "Maroon", 324 | "hex": "#800000" 325 | }, 326 | { 327 | "name": "Medium Aquamarine", 328 | "hex": "#66cdaa" 329 | }, 330 | { 331 | "name": "Medium Blue", 332 | "hex": "#0000cd" 333 | }, 334 | { 335 | "name": "Medium Orchid", 336 | "hex": "#ba55d3" 337 | }, 338 | { 339 | "name": "Medium Purple", 340 | "hex": "#9370db" 341 | }, 342 | { 343 | "name": "Medium Sea Green", 344 | "hex": "#3cb371" 345 | }, 346 | { 347 | "name": "Medium Slate Blue", 348 | "hex": "#7b68ee" 349 | }, 350 | { 351 | "name": "Medium Spring Green", 352 | "hex": "#00fa9a" 353 | }, 354 | { 355 | "name": "Medium Turquoise", 356 | "hex": "#48d1cc" 357 | }, 358 | { 359 | "name": "Medium Violet Red", 360 | "hex": "#c71585" 361 | }, 362 | { 363 | "name": "Midnight Blue", 364 | "hex": "#191970" 365 | }, 366 | { 367 | "name": "Mint Cream", 368 | "hex": "#f5fffa" 369 | }, 370 | { 371 | "name": "Misty Rose", 372 | "hex": "#ffe4e1" 373 | }, 374 | { 375 | "name": "Moccasin", 376 | "hex": "#ffe4b5" 377 | }, 378 | { 379 | "name": "Navajo White", 380 | "hex": "#ffdead" 381 | }, 382 | { 383 | "name": "Navy", 384 | "hex": "#000080" 385 | }, 386 | { 387 | "name": "Old Lace", 388 | "hex": "#fdf5e6" 389 | }, 390 | { 391 | "name": "Olive", 392 | "hex": "#808000" 393 | }, 394 | { 395 | "name": "Olive Drab", 396 | "hex": "#6b8e23" 397 | }, 398 | { 399 | "name": "Orange", 400 | "hex": "#ffa500" 401 | }, 402 | { 403 | "name": "Orange Red", 404 | "hex": "#ff4500" 405 | }, 406 | { 407 | "name": "Orchid", 408 | "hex": "#da70d6" 409 | }, 410 | { 411 | "name": "Pale Goldenrod", 412 | "hex": "#eee8aa" 413 | }, 414 | { 415 | "name": "Pale Green", 416 | "hex": "#98fb98" 417 | }, 418 | { 419 | "name": "Pale Turquoise", 420 | "hex": "#afeeee" 421 | }, 422 | { 423 | "name": "Pale Violet Red", 424 | "hex": "#db7093" 425 | }, 426 | { 427 | "name": "Papaya Whip", 428 | "hex": "#ffefd5" 429 | }, 430 | { 431 | "name": "Peach Puff", 432 | "hex": "#ffdab9" 433 | }, 434 | { 435 | "name": "Peru", 436 | "hex": "#cd853f" 437 | }, 438 | { 439 | "name": "Pink", 440 | "hex": "#ffc0cb" 441 | }, 442 | { 443 | "name": "Plum", 444 | "hex": "#dda0dd" 445 | }, 446 | { 447 | "name": "Powder Blue", 448 | "hex": "#b0e0e6" 449 | }, 450 | { 451 | "name": "Purple", 452 | "hex": "#800080" 453 | }, 454 | { 455 | "name": "Red", 456 | "hex": "#ff0000" 457 | }, 458 | { 459 | "name": "Rosy Brown", 460 | "hex": "#bc8f8f" 461 | }, 462 | { 463 | "name": "Royal Blue", 464 | "hex": "#4169e1" 465 | }, 466 | { 467 | "name": "Saddle Brown", 468 | "hex": "#8b4513" 469 | }, 470 | { 471 | "name": "Salmon", 472 | "hex": "#fa8072" 473 | }, 474 | { 475 | "name": "Sandy Brown", 476 | "hex": "#f4a460" 477 | }, 478 | { 479 | "name": "Sea Green", 480 | "hex": "#2e8b57" 481 | }, 482 | { 483 | "name": "Sea Shell", 484 | "hex": "#fff5ee" 485 | }, 486 | { 487 | "name": "Sienna", 488 | "hex": "#a0522d" 489 | }, 490 | { 491 | "name": "Silver", 492 | "hex": "#c0c0c0" 493 | }, 494 | { 495 | "name": "Sky Blue", 496 | "hex": "#87ceeb" 497 | }, 498 | { 499 | "name": "Slate Blue", 500 | "hex": "#6a5acd" 501 | }, 502 | { 503 | "name": "Slate Gray", 504 | "hex": "#708090" 505 | }, 506 | { 507 | "name": "Snow", 508 | "hex": "#fffafa" 509 | }, 510 | { 511 | "name": "Spring Green", 512 | "hex": "#00ff7f" 513 | }, 514 | { 515 | "name": "Steel Blue", 516 | "hex": "#4682b4" 517 | }, 518 | { 519 | "name": "Tan", 520 | "hex": "#d2b48c" 521 | }, 522 | { 523 | "name": "Teal", 524 | "hex": "#008080" 525 | }, 526 | { 527 | "name": "Thistle", 528 | "hex": "#d8bfd8" 529 | }, 530 | { 531 | "name": "Tomato", 532 | "hex": "#ff6347" 533 | }, 534 | { 535 | "name": "Turquoise", 536 | "hex": "#40e0d0" 537 | }, 538 | { 539 | "name": "Violet", 540 | "hex": "#ee82ee" 541 | }, 542 | { 543 | "name": "Wheat", 544 | "hex": "#f5deb3" 545 | }, 546 | { 547 | "name": "White", 548 | "hex": "#ffffff" 549 | }, 550 | { 551 | "name": "White Smoke", 552 | "hex": "#f5f5f5" 553 | }, 554 | { 555 | "name": "Yellow", 556 | "hex": "#ffff00" 557 | }, 558 | { 559 | "name": "Yellow Green", 560 | "hex": "#9acd32" 561 | } 562 | ] -------------------------------------------------------------------------------- /lib/colors/x11.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "indigo", 4 | "hex": "#4b0082" 5 | }, 6 | { 7 | "name": "gold", 8 | "hex": "#ffd700" 9 | }, 10 | { 11 | "name": "hotpink", 12 | "hex": "#ff69b4" 13 | }, 14 | { 15 | "name": "firebrick", 16 | "hex": "#b22222" 17 | }, 18 | { 19 | "name": "indianred", 20 | "hex": "#cd5c5c" 21 | }, 22 | { 23 | "name": "yellow", 24 | "hex": "#ffff00" 25 | }, 26 | { 27 | "name": "mistyrose", 28 | "hex": "#ffe4e1" 29 | }, 30 | { 31 | "name": "darkolivegreen", 32 | "hex": "#556b2f" 33 | }, 34 | { 35 | "name": "olive", 36 | "hex": "#808000" 37 | }, 38 | { 39 | "name": "darkseagreen", 40 | "hex": "#8fbc8f" 41 | }, 42 | { 43 | "name": "pink", 44 | "hex": "#ffc0cb" 45 | }, 46 | { 47 | "name": "tomato", 48 | "hex": "#ff6347" 49 | }, 50 | { 51 | "name": "lightcoral", 52 | "hex": "#f08080" 53 | }, 54 | { 55 | "name": "orangered", 56 | "hex": "#ff4500" 57 | }, 58 | { 59 | "name": "navajowhite", 60 | "hex": "#ffdead" 61 | }, 62 | { 63 | "name": "lime", 64 | "hex": "#00ff00" 65 | }, 66 | { 67 | "name": "palegreen", 68 | "hex": "#98fb98" 69 | }, 70 | { 71 | "name": "darkslategrey", 72 | "hex": "#2f4f4f" 73 | }, 74 | { 75 | "name": "greenyellow", 76 | "hex": "#adff2f" 77 | }, 78 | { 79 | "name": "burlywood", 80 | "hex": "#deb887" 81 | }, 82 | { 83 | "name": "seashell", 84 | "hex": "#fff5ee" 85 | }, 86 | { 87 | "name": "mediumspringgreen", 88 | "hex": "#00fa9a" 89 | }, 90 | { 91 | "name": "fuchsia", 92 | "hex": "#ff00ff" 93 | }, 94 | { 95 | "name": "papayawhip", 96 | "hex": "#ffefd5" 97 | }, 98 | { 99 | "name": "blanchedalmond", 100 | "hex": "#ffebcd" 101 | }, 102 | { 103 | "name": "chartreuse", 104 | "hex": "#7fff00" 105 | }, 106 | { 107 | "name": "dimgray", 108 | "hex": "#696969" 109 | }, 110 | { 111 | "name": "black", 112 | "hex": "#000000" 113 | }, 114 | { 115 | "name": "peachpuff", 116 | "hex": "#ffdab9" 117 | }, 118 | { 119 | "name": "springgreen", 120 | "hex": "#00ff7f" 121 | }, 122 | { 123 | "name": "aquamarine", 124 | "hex": "#7fffd4" 125 | }, 126 | { 127 | "name": "white", 128 | "hex": "#ffffff" 129 | }, 130 | { 131 | "name": "orange", 132 | "hex": "#ffa500" 133 | }, 134 | { 135 | "name": "lightsalmon", 136 | "hex": "#ffa07a" 137 | }, 138 | { 139 | "name": "darkslategray", 140 | "hex": "#2f4f4f" 141 | }, 142 | { 143 | "name": "brown", 144 | "hex": "#a52a2a" 145 | }, 146 | { 147 | "name": "ivory", 148 | "hex": "#fffff0" 149 | }, 150 | { 151 | "name": "dodgerblue", 152 | "hex": "#1e90ff" 153 | }, 154 | { 155 | "name": "peru", 156 | "hex": "#cd853f" 157 | }, 158 | { 159 | "name": "lawngreen", 160 | "hex": "#7cfc00" 161 | }, 162 | { 163 | "name": "chocolate", 164 | "hex": "#d2691e" 165 | }, 166 | { 167 | "name": "crimson", 168 | "hex": "#dc143c" 169 | }, 170 | { 171 | "name": "forestgreen", 172 | "hex": "#228b22" 173 | }, 174 | { 175 | "name": "darkgrey", 176 | "hex": "#a9a9a9" 177 | }, 178 | { 179 | "name": "lightseagreen", 180 | "hex": "#20b2aa" 181 | }, 182 | { 183 | "name": "cyan", 184 | "hex": "#00ffff" 185 | }, 186 | { 187 | "name": "mintcream", 188 | "hex": "#f5fffa" 189 | }, 190 | { 191 | "name": "silver", 192 | "hex": "#c0c0c0" 193 | }, 194 | { 195 | "name": "antiquewhite", 196 | "hex": "#faebd7" 197 | }, 198 | { 199 | "name": "mediumorchid", 200 | "hex": "#ba55d3" 201 | }, 202 | { 203 | "name": "skyblue", 204 | "hex": "#87ceeb" 205 | }, 206 | { 207 | "name": "gray", 208 | "hex": "#808080" 209 | }, 210 | { 211 | "name": "darkturquoise", 212 | "hex": "#00ced1" 213 | }, 214 | { 215 | "name": "goldenrod", 216 | "hex": "#daa520" 217 | }, 218 | { 219 | "name": "darkgreen", 220 | "hex": "#006400" 221 | }, 222 | { 223 | "name": "floralwhite", 224 | "hex": "#fffaf0" 225 | }, 226 | { 227 | "name": "darkviolet", 228 | "hex": "#9400d3" 229 | }, 230 | { 231 | "name": "darkgray", 232 | "hex": "#a9a9a9" 233 | }, 234 | { 235 | "name": "moccasin", 236 | "hex": "#ffe4b5" 237 | }, 238 | { 239 | "name": "saddlebrown", 240 | "hex": "#8b4513" 241 | }, 242 | { 243 | "name": "grey", 244 | "hex": "#808080" 245 | }, 246 | { 247 | "name": "darkslateblue", 248 | "hex": "#483d8b" 249 | }, 250 | { 251 | "name": "lightskyblue", 252 | "hex": "#87cefa" 253 | }, 254 | { 255 | "name": "lightpink", 256 | "hex": "#ffb6c1" 257 | }, 258 | { 259 | "name": "mediumvioletred", 260 | "hex": "#c71585" 261 | }, 262 | { 263 | "name": "slategrey", 264 | "hex": "#708090" 265 | }, 266 | { 267 | "name": "red", 268 | "hex": "#ff0000" 269 | }, 270 | { 271 | "name": "deeppink", 272 | "hex": "#ff1493" 273 | }, 274 | { 275 | "name": "limegreen", 276 | "hex": "#32cd32" 277 | }, 278 | { 279 | "name": "darkmagenta", 280 | "hex": "#8b008b" 281 | }, 282 | { 283 | "name": "palegoldenrod", 284 | "hex": "#eee8aa" 285 | }, 286 | { 287 | "name": "plum", 288 | "hex": "#dda0dd" 289 | }, 290 | { 291 | "name": "turquoise", 292 | "hex": "#40e0d0" 293 | }, 294 | { 295 | "name": "lightgrey", 296 | "hex": "#d3d3d3" 297 | }, 298 | { 299 | "name": "lightgoldenrodyellow", 300 | "hex": "#fafad2" 301 | }, 302 | { 303 | "name": "darkgoldenrod", 304 | "hex": "#b8860b" 305 | }, 306 | { 307 | "name": "lavender", 308 | "hex": "#e6e6fa" 309 | }, 310 | { 311 | "name": "maroon", 312 | "hex": "#800000" 313 | }, 314 | { 315 | "name": "yellowgreen", 316 | "hex": "#9acd32" 317 | }, 318 | { 319 | "name": "sandybrown", 320 | "hex": "#f4a460" 321 | }, 322 | { 323 | "name": "thistle", 324 | "hex": "#d8bfd8" 325 | }, 326 | { 327 | "name": "violet", 328 | "hex": "#ee82ee" 329 | }, 330 | { 331 | "name": "navy", 332 | "hex": "#000080" 333 | }, 334 | { 335 | "name": "magenta", 336 | "hex": "#ff00ff" 337 | }, 338 | { 339 | "name": "dimgrey", 340 | "hex": "#696969" 341 | }, 342 | { 343 | "name": "tan", 344 | "hex": "#d2b48c" 345 | }, 346 | { 347 | "name": "rosybrown", 348 | "hex": "#bc8f8f" 349 | }, 350 | { 351 | "name": "olivedrab", 352 | "hex": "#6b8e23" 353 | }, 354 | { 355 | "name": "blue", 356 | "hex": "#0000ff" 357 | }, 358 | { 359 | "name": "lightblue", 360 | "hex": "#add8e6" 361 | }, 362 | { 363 | "name": "ghostwhite", 364 | "hex": "#f8f8ff" 365 | }, 366 | { 367 | "name": "honeydew", 368 | "hex": "#f0fff0" 369 | }, 370 | { 371 | "name": "cornflowerblue", 372 | "hex": "#6495ed" 373 | }, 374 | { 375 | "name": "slateblue", 376 | "hex": "#6a5acd" 377 | }, 378 | { 379 | "name": "linen", 380 | "hex": "#faf0e6" 381 | }, 382 | { 383 | "name": "darkblue", 384 | "hex": "#00008b" 385 | }, 386 | { 387 | "name": "powderblue", 388 | "hex": "#b0e0e6" 389 | }, 390 | { 391 | "name": "seagreen", 392 | "hex": "#2e8b57" 393 | }, 394 | { 395 | "name": "darkkhaki", 396 | "hex": "#bdb76b" 397 | }, 398 | { 399 | "name": "snow", 400 | "hex": "#fffafa" 401 | }, 402 | { 403 | "name": "sienna", 404 | "hex": "#a0522d" 405 | }, 406 | { 407 | "name": "mediumblue", 408 | "hex": "#0000cd" 409 | }, 410 | { 411 | "name": "royalblue", 412 | "hex": "#4169e1" 413 | }, 414 | { 415 | "name": "lightcyan", 416 | "hex": "#e0ffff" 417 | }, 418 | { 419 | "name": "green", 420 | "hex": "#008000" 421 | }, 422 | { 423 | "name": "mediumpurple", 424 | "hex": "#9370db" 425 | }, 426 | { 427 | "name": "midnightblue", 428 | "hex": "#191970" 429 | }, 430 | { 431 | "name": "cornsilk", 432 | "hex": "#fff8dc" 433 | }, 434 | { 435 | "name": "paleturquoise", 436 | "hex": "#afeeee" 437 | }, 438 | { 439 | "name": "bisque", 440 | "hex": "#ffe4c4" 441 | }, 442 | { 443 | "name": "slategray", 444 | "hex": "#708090" 445 | }, 446 | { 447 | "name": "darkcyan", 448 | "hex": "#008b8b" 449 | }, 450 | { 451 | "name": "khaki", 452 | "hex": "#f0e68c" 453 | }, 454 | { 455 | "name": "wheat", 456 | "hex": "#f5deb3" 457 | }, 458 | { 459 | "name": "teal", 460 | "hex": "#008080" 461 | }, 462 | { 463 | "name": "darkorchid", 464 | "hex": "#9932cc" 465 | }, 466 | { 467 | "name": "deepskyblue", 468 | "hex": "#00bfff" 469 | }, 470 | { 471 | "name": "salmon", 472 | "hex": "#fa8072" 473 | }, 474 | { 475 | "name": "darkred", 476 | "hex": "#8b0000" 477 | }, 478 | { 479 | "name": "steelblue", 480 | "hex": "#4682b4" 481 | }, 482 | { 483 | "name": "palevioletred", 484 | "hex": "#db7093" 485 | }, 486 | { 487 | "name": "lightslategray", 488 | "hex": "#778899" 489 | }, 490 | { 491 | "name": "aliceblue", 492 | "hex": "#f0f8ff" 493 | }, 494 | { 495 | "name": "lightslategrey", 496 | "hex": "#778899" 497 | }, 498 | { 499 | "name": "lightgreen", 500 | "hex": "#90ee90" 501 | }, 502 | { 503 | "name": "orchid", 504 | "hex": "#da70d6" 505 | }, 506 | { 507 | "name": "gainsboro", 508 | "hex": "#dcdcdc" 509 | }, 510 | { 511 | "name": "mediumseagreen", 512 | "hex": "#3cb371" 513 | }, 514 | { 515 | "name": "lightgray", 516 | "hex": "#d3d3d3" 517 | }, 518 | { 519 | "name": "mediumturquoise", 520 | "hex": "#48d1cc" 521 | }, 522 | { 523 | "name": "lemonchiffon", 524 | "hex": "#fffacd" 525 | }, 526 | { 527 | "name": "cadetblue", 528 | "hex": "#5f9ea0" 529 | }, 530 | { 531 | "name": "lightyellow", 532 | "hex": "#ffffe0" 533 | }, 534 | { 535 | "name": "lavenderblush", 536 | "hex": "#fff0f5" 537 | }, 538 | { 539 | "name": "coral", 540 | "hex": "#ff7f50" 541 | }, 542 | { 543 | "name": "purple", 544 | "hex": "#800080" 545 | }, 546 | { 547 | "name": "aqua", 548 | "hex": "#00ffff" 549 | }, 550 | { 551 | "name": "whitesmoke", 552 | "hex": "#f5f5f5" 553 | }, 554 | { 555 | "name": "mediumslateblue", 556 | "hex": "#7b68ee" 557 | }, 558 | { 559 | "name": "darkorange", 560 | "hex": "#ff8c00" 561 | }, 562 | { 563 | "name": "mediumaquamarine", 564 | "hex": "#66cdaa" 565 | }, 566 | { 567 | "name": "darksalmon", 568 | "hex": "#e9967a" 569 | }, 570 | { 571 | "name": "beige", 572 | "hex": "#f5f5dc" 573 | }, 574 | { 575 | "name": "blueviolet", 576 | "hex": "#8a2be2" 577 | }, 578 | { 579 | "name": "azure", 580 | "hex": "#f0ffff" 581 | }, 582 | { 583 | "name": "lightsteelblue", 584 | "hex": "#b0c4de" 585 | }, 586 | { 587 | "name": "oldlace", 588 | "hex": "#fdf5e6" 589 | } 590 | ] -------------------------------------------------------------------------------- /lib/descriptions.json: -------------------------------------------------------------------------------- 1 | { 2 | "basic": { 3 | "title": "Basic", 4 | "description": "A set of basic colors, such as red, green, and blue.", 5 | "source": "https://github.com/colorjs/color-namer/tree/master/lib/colors", 6 | "key": "basic", 7 | "license": "MIT" 8 | }, 9 | "html": { 10 | "title": "HTML Colors", 11 | "description": "HTML/CSS color names. These can be used as keywords in CSS, SVG, or HTML.", 12 | "source": "https://github.com/colorjs/color-namer/tree/master/lib/colors", 13 | "key": "html", 14 | "license": "MIT" 15 | }, 16 | "japanese-traditional": { 17 | "title": "Traditional Colors of Japan", 18 | "description": "Colors traditionally used in Japanese art, literature, textiles such as kimono, and other crafts.", 19 | "source": "https://en.wikipedia.org/wiki/Traditional_colors_of_Japan", 20 | "key": "japanese-traditional", 21 | "license": "CC BY-SA 3.0, GFDL" 22 | }, 23 | "le-corbusier": { 24 | "title": "Le Corbusier", 25 | "description": "Architectural colors from Le Corbusier's color system.", 26 | "source": "https://www.lescouleurs.ch/en/the-colours/63-colours", 27 | "key": "le-corbusier", 28 | "license": "CC0 1.0 Public Domain Dedication" 29 | }, 30 | "nbs-iscc": { 31 | "title": "The Universal Color Language", 32 | "description": "ISCC–NBS system of color designation based on 12 basic color terms and a small set of adjective modifiers.", 33 | "source": "https://web.archive.org/web/20121103030619/http://tx4.us/nbs-iscc.htm", 34 | "key": "nbs-iscc", 35 | "license": "CC0 1.0 Public Domain Dedication" 36 | }, 37 | "ntc": { 38 | "title": "NTC.js", 39 | "description": "NTC.js color matching library names, released in 2007. The names were collected from various sources such as Wikipedia, X11, and Crayola.", 40 | "source": "https://github.com/colorjs/color-namer/tree/master/lib/colors", 41 | "key": "ntc", 42 | "license": "MIT" 43 | }, 44 | "osxcrayons": { 45 | "title": "OS X Crayons", 46 | "description": "Color names used in the OS X color picker GUI.", 47 | "source": "http://www.randomactsofsentience.com/2013/06/os-x-crayon-color-hex-table.html", 48 | "key": "osxcrayons", 49 | "license": "CC BY-SA 3.0, GFDL" 50 | }, 51 | "ral": { 52 | "title": "RAL Color", 53 | "description": "RAL color matching names.", 54 | "source": "https://jpederson.com/colornerd/", 55 | "key": "ral", 56 | "license": "unknown" 57 | }, 58 | "ridgway": { 59 | "title": "Robert Ridgway's Color Standards and Color Nomenclature", 60 | "description": "Color Nomenclature by Robert Ridgway (1850-1929), published in Washington, DC in 1912. It is part of the public domain in the USA. On August 31, 2020, it was added to the Gutenberg Project.", 61 | "source": "https://github.com/davo/Color-Standards-and-Color-Nomenclature", 62 | "key": "ridgway", 63 | "license": "CC0 1.0 Public Domain Dedication" 64 | }, 65 | "sanzo-wada-I": { 66 | "title": "Wada Sanzō Japanese Color Dictionary Volume I", 67 | "description": "Names from Wada Sanzō (和田 三造) Colors Dictionary, Volume I.", 68 | "source": "https://sanzo-wada.dmbk.io/", 69 | "key": "sanzo-wada-I", 70 | "license": "CC0 1.0 Public Domain Dedication" 71 | }, 72 | "thesaurus": { 73 | "title": "The Color Thesaurus", 74 | "description": "The Color Thesaurus by Ingrid Sundberg. As a writer, she collected color names to explore the emotion of a scene and create variety in her writing.", 75 | "source": "https://ingridsnotes.wordpress.com/2014/02/04/the-color-thesaurus/", 76 | "key": "thesaurus", 77 | "license": "CC0 1.0 Public Domain Dedication" 78 | }, 79 | "werner": { 80 | "title": "Werner's Nomenclature of Colours", 81 | "description": "All colors from the book Werner's Nomenclature of Colours, collected and described in the late 18th century", 82 | "source": "https://www.c82.net/werner/", 83 | "key": "werner", 84 | "license": "CC0 1.0 Public Domain Dedication" 85 | }, 86 | "windows": { 87 | "title": "Microsoft Windows Color Names", 88 | "description": "Color names used in legacy Microsoft Windows systems.", 89 | "source": "https://docs.microsoft.com/en-us/dotnet/api/system.windows.media.colors?view=windowsdesktop-6.0", 90 | "key": "windows", 91 | "license": "unknown" 92 | }, 93 | "wikipedia": { 94 | "title": "Wikipedia Color Names", 95 | "description": "A list of color names scraped from Wikipedia.", 96 | "source": "https://github.com/meodai/wikipedia-color-names", 97 | "key": "wikipedia", 98 | "license": "CC BY-SA 3.0, GFDL" 99 | }, 100 | "french": { 101 | "title": "French Colors", 102 | "description": "A list of color names in French.", 103 | "source": "https://github.com/meodai/noms-de-couleur", 104 | "key": "french", 105 | "license": "MIT" 106 | }, 107 | "spanish": { 108 | "title": "Spanish Colors", 109 | "description": "A list of color names in Spanish.", 110 | "source": "https://github.com/meodai/nombres-de-colores", 111 | "key": "spanish", 112 | "license": "MIT" 113 | }, 114 | "german": { 115 | "title": "German Colors", 116 | "description": "A list of color names in German.", 117 | "source": "https://github.com/meodai/farbnamen", 118 | "key": "german", 119 | "license": "MIT" 120 | }, 121 | "x11": { 122 | "title": "X11 Color Names", 123 | "description": "Standard Xlib or X11 protocol color names.", 124 | "source": "https://en.wikipedia.org/wiki/X11_color_names", 125 | "key": "x11", 126 | "license": "CC BY-SA 3.0, GFDL" 127 | }, 128 | "xkcd": { 129 | "title": "XKCD Colors", 130 | "description": "The 954 most common RGB monitor colors, as defined by several hundred thousand participants in the XKCD color name survey.", 131 | "source": "https://xkcd.com/color/rgb/", 132 | "key": "xkcd", 133 | "license": "CC0 1.0 Public Domain Dedication" 134 | }, 135 | "risograph": { 136 | "title": "Risograph Colors", 137 | "description": "Popular colors for Risograph printing, with HEX, Pantone, and Z-Type codes.", 138 | "source": "https://github.com/mattdesl/riso-colors", 139 | "key": "risograph", 140 | "license": "MIT" 141 | }, 142 | "chinese-traditional": { 143 | "title": "Traditional Colors of China", 144 | "description": "Traditional Colors of China: Color aesthetics in the Forbidden City (中国传统色:故宫里的色彩美学), including colors and their transliterations.", 145 | "source": "https://github.com/ItMarki/files/blob/main/newcolorsandnames.csv", 146 | "key": "chinese-traditional", 147 | "license": "CC0 1.0 Public Domain Dedication" 148 | }, 149 | "hindi": { 150 | "title": "Hindi Colors", 151 | "description": "A list of color names in Hindi.", 152 | "source": "https://github.com/meodai/hindi-color-names", 153 | "key": "hindi", 154 | "license": "MIT" 155 | } 156 | } -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "color-name-lists", 3 | "version": "3.31.0", 4 | "lockfileVersion": 2, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "color-name-lists", 9 | "version": "3.31.0", 10 | "license": "MIT", 11 | "dependencies": { 12 | "color-standards-and-color-nomenclature": "^1.1.0", 13 | "farbnamen": "^0.8.0", 14 | "hindi-color-names": "^1.1.0", 15 | "nombres-de-colores": "^0.6.0", 16 | "recueil-de-couleur": "^0.11.0", 17 | "riso-colors": "^1.0.1", 18 | "wikipedia-color-names": "^1.12.0" 19 | }, 20 | "devDependencies": { 21 | "path-browserify": "^1.0.1", 22 | "process": "^0.11.10" 23 | } 24 | }, 25 | "node_modules/color-standards-and-color-nomenclature": { 26 | "version": "1.1.0", 27 | "resolved": "https://registry.npmjs.org/color-standards-and-color-nomenclature/-/color-standards-and-color-nomenclature-1.1.0.tgz", 28 | "integrity": "sha512-vTysC6+ph3IP7ELJwStXb+OQq0XDkYmg+778e8+IwBnxZK5u5/ahB/wgBEZl/tyOQJx/MjXrzmULAYKPuaFi2g==" 29 | }, 30 | "node_modules/culori": { 31 | "version": "2.0.3", 32 | "resolved": "https://registry.npmjs.org/culori/-/culori-2.0.3.tgz", 33 | "integrity": "sha512-920cvHdCgdrkmiTgV09/qyGpk3d0RrktiU38bUigBDrNcK/19xRobKBzhSGoBpS9dy03P1OfC8zorQcnZKkK7A==", 34 | "engines": { 35 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0" 36 | } 37 | }, 38 | "node_modules/farbnamen": { 39 | "version": "0.8.0", 40 | "resolved": "https://registry.npmjs.org/farbnamen/-/farbnamen-0.8.0.tgz", 41 | "integrity": "sha512-F+mmgz3cLJNMKioBpudv9x4m0A6/hm+7QmRJ8G0wXyLKOg816Con1yCIgog95clyZgKFyD95kU9sZpEYh7R8VQ==", 42 | "license": "MIT" 43 | }, 44 | "node_modules/hindi-color-names": { 45 | "version": "1.1.0", 46 | "resolved": "https://registry.npmjs.org/hindi-color-names/-/hindi-color-names-1.1.0.tgz", 47 | "integrity": "sha512-4veC8TvuucjmvgM5/AlEZQ84nump9eo1ukz4ZKLthbSVuB0/kO92RhyC3gJri8L8+xzQ5I4OBljTv0GvnCYNcg==", 48 | "license": "MIT" 49 | }, 50 | "node_modules/nombres-de-colores": { 51 | "version": "0.6.0", 52 | "resolved": "https://registry.npmjs.org/nombres-de-colores/-/nombres-de-colores-0.6.0.tgz", 53 | "integrity": "sha512-wOilS2UfMD8c1Kl8Z0l2HUXo4qKto0JOhW0KeaPV0ZoY/VtpeGJJeCxDgqiihYK/pp02Yi97kewO2N+Onwy0Dw==" 54 | }, 55 | "node_modules/path-browserify": { 56 | "version": "1.0.1", 57 | "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-1.0.1.tgz", 58 | "integrity": "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==", 59 | "dev": true 60 | }, 61 | "node_modules/process": { 62 | "version": "0.11.10", 63 | "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", 64 | "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==", 65 | "dev": true, 66 | "engines": { 67 | "node": ">= 0.6.0" 68 | } 69 | }, 70 | "node_modules/recueil-de-couleur": { 71 | "version": "0.11.0", 72 | "resolved": "https://registry.npmjs.org/recueil-de-couleur/-/recueil-de-couleur-0.11.0.tgz", 73 | "integrity": "sha512-m+4v63WJvVggHKj07FRd0iOjfcxrGTNYwDXkS4H1S7GqseiMLoCBxI/H7/qIHmy70/9O6+qQPVYPY0LaOOneDQ==", 74 | "dependencies": { 75 | "culori": "^2.0.3" 76 | } 77 | }, 78 | "node_modules/riso-colors": { 79 | "version": "1.0.1", 80 | "resolved": "https://registry.npmjs.org/riso-colors/-/riso-colors-1.0.1.tgz", 81 | "integrity": "sha512-foLj2eUiyft2hOe7PzsT9qcT+zLnkw3pGesPQv6JG93OJ0+1J0fdCwdtwxDDCqnYDdgRatKbrb0qhB95vhZ2wQ==" 82 | }, 83 | "node_modules/wikipedia-color-names": { 84 | "version": "1.12.0", 85 | "resolved": "https://registry.npmjs.org/wikipedia-color-names/-/wikipedia-color-names-1.12.0.tgz", 86 | "integrity": "sha512-5RJQER/zFDccoa0N0Ld6nFAM9ifVdhXtsUL7uyllxczUF+4txeSfMsfZXh/tmNSq+y94bBgIQHsbcZ+Od4S7Qg==", 87 | "license": "MIT" 88 | } 89 | }, 90 | "dependencies": { 91 | "color-standards-and-color-nomenclature": { 92 | "version": "1.1.0", 93 | "resolved": "https://registry.npmjs.org/color-standards-and-color-nomenclature/-/color-standards-and-color-nomenclature-1.1.0.tgz", 94 | "integrity": "sha512-vTysC6+ph3IP7ELJwStXb+OQq0XDkYmg+778e8+IwBnxZK5u5/ahB/wgBEZl/tyOQJx/MjXrzmULAYKPuaFi2g==" 95 | }, 96 | "culori": { 97 | "version": "2.0.3", 98 | "resolved": "https://registry.npmjs.org/culori/-/culori-2.0.3.tgz", 99 | "integrity": "sha512-920cvHdCgdrkmiTgV09/qyGpk3d0RrktiU38bUigBDrNcK/19xRobKBzhSGoBpS9dy03P1OfC8zorQcnZKkK7A==" 100 | }, 101 | "farbnamen": { 102 | "version": "0.8.0", 103 | "resolved": "https://registry.npmjs.org/farbnamen/-/farbnamen-0.8.0.tgz", 104 | "integrity": "sha512-F+mmgz3cLJNMKioBpudv9x4m0A6/hm+7QmRJ8G0wXyLKOg816Con1yCIgog95clyZgKFyD95kU9sZpEYh7R8VQ==" 105 | }, 106 | "hindi-color-names": { 107 | "version": "1.1.0", 108 | "resolved": "https://registry.npmjs.org/hindi-color-names/-/hindi-color-names-1.1.0.tgz", 109 | "integrity": "sha512-4veC8TvuucjmvgM5/AlEZQ84nump9eo1ukz4ZKLthbSVuB0/kO92RhyC3gJri8L8+xzQ5I4OBljTv0GvnCYNcg==" 110 | }, 111 | "nombres-de-colores": { 112 | "version": "0.6.0", 113 | "resolved": "https://registry.npmjs.org/nombres-de-colores/-/nombres-de-colores-0.6.0.tgz", 114 | "integrity": "sha512-wOilS2UfMD8c1Kl8Z0l2HUXo4qKto0JOhW0KeaPV0ZoY/VtpeGJJeCxDgqiihYK/pp02Yi97kewO2N+Onwy0Dw==" 115 | }, 116 | "path-browserify": { 117 | "version": "1.0.1", 118 | "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-1.0.1.tgz", 119 | "integrity": "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==", 120 | "dev": true 121 | }, 122 | "process": { 123 | "version": "0.11.10", 124 | "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", 125 | "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==", 126 | "dev": true 127 | }, 128 | "recueil-de-couleur": { 129 | "version": "0.11.0", 130 | "resolved": "https://registry.npmjs.org/recueil-de-couleur/-/recueil-de-couleur-0.11.0.tgz", 131 | "integrity": "sha512-m+4v63WJvVggHKj07FRd0iOjfcxrGTNYwDXkS4H1S7GqseiMLoCBxI/H7/qIHmy70/9O6+qQPVYPY0LaOOneDQ==", 132 | "requires": { 133 | "culori": "^2.0.3" 134 | } 135 | }, 136 | "riso-colors": { 137 | "version": "1.0.1", 138 | "resolved": "https://registry.npmjs.org/riso-colors/-/riso-colors-1.0.1.tgz", 139 | "integrity": "sha512-foLj2eUiyft2hOe7PzsT9qcT+zLnkw3pGesPQv6JG93OJ0+1J0fdCwdtwxDDCqnYDdgRatKbrb0qhB95vhZ2wQ==" 140 | }, 141 | "wikipedia-color-names": { 142 | "version": "1.12.0", 143 | "resolved": "https://registry.npmjs.org/wikipedia-color-names/-/wikipedia-color-names-1.12.0.tgz", 144 | "integrity": "sha512-5RJQER/zFDccoa0N0Ld6nFAM9ifVdhXtsUL7uyllxczUF+4txeSfMsfZXh/tmNSq+y94bBgIQHsbcZ+Od4S7Qg==" 145 | } 146 | } 147 | } 148 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "color-name-lists", 3 | "version": "3.31.0", 4 | "description": "A collection of color name lists", 5 | "main": "src/index.js", 6 | "directories": { 7 | "lib": "lib" 8 | }, 9 | "scripts": { 10 | "test": "echo \"Error: no test specified\" && exit 1", 11 | "build": "node build.js", 12 | "view": "jless ./dist/colorlists.json" 13 | }, 14 | "repository": { 15 | "type": "git", 16 | "url": "git+https://github.com/meodai/color-name-lists.git" 17 | }, 18 | "author": "", 19 | "license": "MIT", 20 | "bugs": { 21 | "url": "https://github.com/meodai/color-name-lists/issues" 22 | }, 23 | "homepage": "https://github.com/meodai/color-name-lists#readme", 24 | "dependencies": { 25 | "color-standards-and-color-nomenclature": "^1.1.0", 26 | "farbnamen": "^0.8.0", 27 | "hindi-color-names": "^1.1.0", 28 | "nombres-de-colores": "^0.6.0", 29 | "recueil-de-couleur": "^0.11.0", 30 | "riso-colors": "^1.0.1", 31 | "wikipedia-color-names": "^1.12.0" 32 | }, 33 | "devDependencies": { 34 | "path-browserify": "^1.0.1", 35 | "process": "^0.11.10" 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | const fs = require('fs'); 2 | const path = require('path'); 3 | const libPath = path.join(__dirname, '../lib'); 4 | const directoryPath = path.join(libPath, 'colors'); 5 | const descriptions = require(libPath + '/descriptions.json'); 6 | 7 | const wikipediaList = require('wikipedia-color-names/colors.min.json'); 8 | const frenchList = require('recueil-de-couleur/colors.min.json'); 9 | const spasnishList = require('nombres-de-colores/colors.min.json'); 10 | const germanList = require('farbnamen/colors.min.json'); 11 | const ridgewayList = require('color-standards-and-color-nomenclature/dist/colornames.json'); 12 | const risographColors = require('riso-colors'); 13 | 14 | const hindiList = require('hindi-color-names/colors.min.json'); 15 | 16 | const hexColorValidation = /^#([0-9A-F]{3}){1,2}$/i; 17 | 18 | // Collects all keys that are not in the allowed array and moves them to a meta object 19 | function moveNonAllowedKeysToMeta( 20 | obj, 21 | allowed = ['name', 'hex'], 22 | ) { 23 | const returnObject = {...obj}; 24 | const meta = {}; 25 | let hadMeta = false; 26 | 27 | Object.keys(returnObject).forEach(key => { 28 | if (!allowed.includes(key)) { 29 | meta[key] = returnObject[key]; 30 | delete returnObject[key]; 31 | hadMeta = true; 32 | } 33 | }); 34 | 35 | if (hadMeta) { 36 | returnObject.meta = meta; 37 | } 38 | 39 | return returnObject; 40 | } 41 | 42 | function toLowerKey(obj) { 43 | return Object.keys(obj).reduce((accumulator, key) => { 44 | accumulator[key.toLowerCase()] = obj[key]; 45 | return accumulator; 46 | }, {}); 47 | } 48 | 49 | const jsonFiles = fs.readdirSync(directoryPath).filter( 50 | file => file.endsWith('.json') 51 | ); 52 | 53 | function hyphensToCamelCase(str) { 54 | return str.replace(/-([a-zA-Z])/g, g => g[1].toUpperCase()); 55 | } 56 | 57 | const lists = {}; 58 | 59 | lists.wikipedia = wikipediaList; 60 | lists.french = frenchList; 61 | lists.spanish = spasnishList; 62 | lists.german = germanList; 63 | lists.ridgway = ridgewayList; 64 | lists.risograph = risographColors; 65 | lists.hindi = hindiList; 66 | 67 | jsonFiles.map(file => { 68 | const filePath = path.join(directoryPath, file); 69 | const fileContents = fs.readFileSync(filePath, 'utf8'); 70 | const listOfColors = JSON.parse(fileContents); 71 | const listName = hyphensToCamelCase(file.replace('.json', '')); 72 | 73 | lists[listName] = listOfColors; 74 | }); 75 | 76 | Object.keys(lists).forEach(listName => { 77 | const listOfColors = lists[listName]; 78 | 79 | const sanitizedList = listOfColors.map(color => { 80 | const sanitizedColor = toLowerKey(color); 81 | const { hex } = sanitizedColor; 82 | 83 | if ( !hexColorValidation.test(hex) ) { 84 | throw console.error(`${hex} is not a valid hex color in "${listName}"`); 85 | } 86 | 87 | return moveNonAllowedKeysToMeta( 88 | sanitizedColor, 89 | ['name', 'hex'] 90 | ); 91 | }); 92 | 93 | lists[listName] = sanitizedList; 94 | }); 95 | 96 | const sanitizedDescriptions = {}; 97 | 98 | Object.keys(descriptions).forEach(key => { 99 | const sanitizedKey = hyphensToCamelCase(key); 100 | const description = descriptions[key]; 101 | description.key = sanitizedKey; 102 | sanitizedDescriptions[sanitizedKey] = description; 103 | description.colorCount = lists[sanitizedKey].length; 104 | }); 105 | 106 | module.exports = { 107 | lists, 108 | meta: sanitizedDescriptions 109 | }; -------------------------------------------------------------------------------- /tea.yaml: -------------------------------------------------------------------------------- 1 | # https://tea.xyz/what-is-this-file 2 | --- 3 | version: 1.0.0 4 | codeOwners: 5 | - '0xFA64435d1281921E36b90CeA9a1fbf0e5c408e65' 6 | quorum: 1 7 | --------------------------------------------------------------------------------