color-name-list 13.28.0 → 13.30.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CONTRIBUTING.md +47 -15
- package/README.md +8 -2
- package/changes.svg +3 -3
- package/dist/colornames.bestof.csv +12 -1
- package/dist/colornames.bestof.esm.js +1 -1
- package/dist/colornames.bestof.esm.mjs +1 -1
- package/dist/colornames.bestof.html +1 -1
- package/dist/colornames.bestof.json +1 -1
- package/dist/colornames.bestof.min.json +1 -1
- package/dist/colornames.bestof.scss +1 -1
- package/dist/colornames.bestof.toon +13 -2
- package/dist/colornames.bestof.umd.js +1 -1
- package/dist/colornames.bestof.xml +48 -4
- package/dist/colornames.bestof.yaml +36 -3
- package/dist/colornames.csv +17 -2
- package/dist/colornames.esm.js +1 -1
- package/dist/colornames.esm.mjs +1 -1
- package/dist/colornames.html +1 -1
- package/dist/colornames.json +1 -1
- package/dist/colornames.min.json +1 -1
- package/dist/colornames.scss +1 -1
- package/dist/colornames.short.csv +3 -0
- package/dist/colornames.short.esm.js +1 -1
- package/dist/colornames.short.esm.mjs +1 -1
- package/dist/colornames.short.html +1 -1
- package/dist/colornames.short.json +1 -1
- package/dist/colornames.short.min.json +1 -1
- package/dist/colornames.short.scss +1 -1
- package/dist/colornames.short.toon +4 -1
- package/dist/colornames.short.umd.js +1 -1
- package/dist/colornames.short.xml +12 -0
- package/dist/colornames.short.yaml +9 -0
- package/dist/colornames.toon +18 -3
- package/dist/colornames.umd.js +1 -1
- package/dist/colornames.xml +68 -8
- package/dist/colornames.yaml +51 -6
- package/dist/history.json +1 -1
- package/package.json +1 -1
- package/src/colornames.csv +19 -4
package/CONTRIBUTING.md
CHANGED
|
@@ -18,18 +18,6 @@ interactions with the project.
|
|
|
18
18
|
6. Add the source of your colors in the Pull Request description.
|
|
19
19
|
Maintainers will update documentation if needed.
|
|
20
20
|
|
|
21
|
-
**We use automated semantic versioning** make sure to use git cz (or npm run commit).
|
|
22
|
-
|
|
23
|
-
## Generated files and CI
|
|
24
|
-
|
|
25
|
-
- PRs run `npm ci`, `npm run build`, and `npm test` in CI.
|
|
26
|
-
- CI may update `README.md` and `changes.svg` automatically and push
|
|
27
|
-
to your PR branch.
|
|
28
|
-
- Do not include generated files (`dist/`, `README.md`, `changes.svg`) in commits.
|
|
29
|
-
- For color name changes, only submit updates to `src/colornames.csv`.
|
|
30
|
-
- No need to run `npm run build` locally; CI generates outputs.
|
|
31
|
-
- Optional locally: `npm run lint:markdown` to match CI markdown checks.
|
|
32
|
-
|
|
33
21
|
## Rules for new color names
|
|
34
22
|
|
|
35
23
|
- No duplicate names or hex values.
|
|
@@ -45,17 +33,61 @@ interactions with the project.
|
|
|
45
33
|
- Avoid ethnic & racial assumptions
|
|
46
34
|
- Do not use LLM / AI to generate color names.
|
|
47
35
|
|
|
48
|
-
##
|
|
36
|
+
## Generated files and CI
|
|
37
|
+
|
|
38
|
+
- PRs run `npm ci`, `npm run build`, and `npm test` in CI.
|
|
39
|
+
- CI may update `README.md` and `changes.svg` automatically and push
|
|
40
|
+
to your PR branch.
|
|
41
|
+
- Do not include generated files (`dist/`, `README.md`, `changes.svg`) in commits.
|
|
42
|
+
- For color name changes, only submit updates to `src/colornames.csv`.
|
|
43
|
+
- No need to run `npm run build` locally; CI generates outputs.
|
|
44
|
+
- Optional locally: `npm run lint:markdown` to match CI markdown checks.
|
|
45
|
+
|
|
46
|
+
## Committing changes
|
|
49
47
|
|
|
50
48
|
- We use automated semantic versioning using conventional changelog rules. You
|
|
51
49
|
can run `npx cz` or `npm run commit` instead of `git commit -m`, or make sure
|
|
52
|
-
to follow [conventional changelog naming rules].
|
|
50
|
+
to follow [conventional changelog naming rules]. Our conventional commits
|
|
51
|
+
look like:
|
|
52
|
+
|
|
53
|
+
```text
|
|
54
|
+
feat(colors): Add fantastic new colors names.
|
|
55
|
+
fix(colors): Correct the hex value for Awesome Pink.
|
|
56
|
+
docs(readme): Update the readme to include new colors.
|
|
57
|
+
```
|
|
58
|
+
|
|
53
59
|
- Write your commit messages in imperative form:
|
|
54
60
|
**feat(colors): Add fantastic new colors names.** rather then
|
|
55
61
|
feat(colors): Added new names.
|
|
56
|
-
|
|
62
|
+
Make sure to run `npm run test` before committing.
|
|
57
63
|
For color name changes this is the only command you need locally.
|
|
58
64
|
|
|
65
|
+
## No Command Line? No Problem! 🐣
|
|
66
|
+
|
|
67
|
+
If you are not familiar with Git or the command line, you can contribute directly
|
|
68
|
+
through GitHub:
|
|
69
|
+
|
|
70
|
+
1. **Fork the repository**: Click the "Fork" icon in the top right corner of
|
|
71
|
+
this page. This creates a copy of the project under your own account.
|
|
72
|
+
2. **Edit the list**: Navigate to `src/colornames.csv` in your forked
|
|
73
|
+
repository.
|
|
74
|
+
3. **Add your colors**: Scroll to the bottom and add your new colors. Don't
|
|
75
|
+
worry about sorting; it will be done automatically for you.
|
|
76
|
+
4. **Create a Pull Request**:
|
|
77
|
+
- Commit your changes in the GitHub interface.
|
|
78
|
+
- Go back to the [original repository](https://github.com/meodai/color-names).
|
|
79
|
+
- GitHub will often show a banner asking if you want to create a Pull Request
|
|
80
|
+
from your recent changes. If not, go to the "Pull requests" tab and click
|
|
81
|
+
"New pull request", then "compare across forks" to select your version.
|
|
82
|
+
- Fill in the details and submit your Pull Request. The title should look
|
|
83
|
+
something like "feat(colors): Add new color names".
|
|
84
|
+
|
|
85
|
+
If this feels too complicated, feel free to just
|
|
86
|
+
[open an issue](https://github.com/meodai/color-names/issues/new) with your
|
|
87
|
+
list or share a Google Spreadsheet with us. Note that doing it this way skips
|
|
88
|
+
our automated checks (which tell you if a color is already taken), so it might
|
|
89
|
+
take a bit longer to review.
|
|
90
|
+
|
|
59
91
|
### Attribution
|
|
60
92
|
|
|
61
93
|
This Code of Conduct is adapted from the [Contributor Covenant][homepage],
|
package/README.md
CHANGED
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
[](https://www.npmjs.com/package/color-name-list)
|
|
14
14
|
[](https://github.com/sponsors/meodai)
|
|
15
15
|
|
|
16
|
-
A meticulously curated collection of
|
|
16
|
+
A meticulously curated collection of __30031__ unique color names, built from
|
|
17
17
|
[many sources](#sources-) and thousands of community contributions.
|
|
18
18
|
|
|
19
19
|
> The names of color function like a thread attached to a frightfully slender
|
|
@@ -131,7 +131,7 @@ and ensure tests pass locally (`npm test`).
|
|
|
131
131
|
See the full guidelines in [CONTRIBUTING.md](CONTRIBUTING.md) for naming
|
|
132
132
|
rules, capitalization, CI behavior, and more.
|
|
133
133
|
|
|
134
|
-
## Color Count:
|
|
134
|
+
## Color Count: __30031__ 🎉
|
|
135
135
|
|
|
136
136
|
~__0.18%__ of the RGB color space
|
|
137
137
|
|
|
@@ -354,6 +354,12 @@ See [package.json](package.json#L6) for details.
|
|
|
354
354
|
, Abra Giddings
|
|
355
355
|
, Iraj Nelson
|
|
356
356
|
, [Alex Cristache]
|
|
357
|
+
, Evan Gardner
|
|
358
|
+
, Eliiiiii
|
|
359
|
+
, Fuentes
|
|
360
|
+
, Alex Field
|
|
361
|
+
, BangHann
|
|
362
|
+
, James Galvan
|
|
357
363
|
|
|
358
364
|
## Disclaimer 👮🏾
|
|
359
365
|
|
package/changes.svg
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 990">
|
|
2
2
|
<defs>
|
|
3
3
|
<style type="text/css">
|
|
4
4
|
@import url('https://rsms.me/inter/inter.css');
|
|
@@ -9,6 +9,6 @@
|
|
|
9
9
|
}
|
|
10
10
|
</style>
|
|
11
11
|
</defs>
|
|
12
|
-
<rect fill="#212121" x="0" y="0" width="600" height="
|
|
13
|
-
<text x="40" y="90" fill="#
|
|
12
|
+
<rect fill="#212121" x="0" y="0" width="600" height="990"/>
|
|
13
|
+
<text x="40" y="90" fill="#faafc8">Caregiver Pink</text><text x="40" y="160" fill="#8e8987">Chorus of Elephants</text><text x="40" y="230" fill="#a78558">Exhumed Gold</text><text x="40" y="300" fill="#c4bba5">Forgotten Tusk</text><text x="40" y="370" fill="#6a7252">Four Seasons Oolong</text><text x="40" y="440" fill="#565c00">Greensboro</text><text x="40" y="510" fill="#8b837d">Hagstone Choir</text><text x="40" y="580" fill="#2f1064">Infinite Inkwell</text><text x="40" y="650" fill="#c2792b">Maine Coon Orange</text><text x="40" y="720" fill="#c3988b">Muddy Mire</text><text x="40" y="790" fill="#f19000">Shiritorier’s Orange</text><text x="40" y="860" fill="#bbe4ea">Tip of the Iceberg</text><text x="40" y="930" fill="#bf843b">Toothpick</text>
|
|
14
14
|
</svg>
|
|
@@ -33,6 +33,7 @@ Air-Kiss,#f6dcd2
|
|
|
33
33
|
Airborne,#a2c2d0
|
|
34
34
|
Akari Red,#c90b42
|
|
35
35
|
Alarm,#ec0003
|
|
36
|
+
Alarming Slime,#2ce335
|
|
36
37
|
Alaska,#dadad1
|
|
37
38
|
Alien Abduction,#0cff0c
|
|
38
39
|
Alienated,#00cc55
|
|
@@ -411,6 +412,7 @@ Blue-Collar,#005f7a
|
|
|
411
412
|
Bluebell,#333399
|
|
412
413
|
Blueberry,#464196
|
|
413
414
|
Bluebonnet,#1c1cf0
|
|
415
|
+
Bluedgeons,#324c64
|
|
414
416
|
Bluerocratic,#1f66ff
|
|
415
417
|
Blues White Shoes,#99badd
|
|
416
418
|
Bluetiful,#3c69e7
|
|
@@ -768,6 +770,7 @@ Chocolate Temptation,#956e5f
|
|
|
768
770
|
Chocolate Truffle,#612e32
|
|
769
771
|
Chocolate Velvet,#7f7453
|
|
770
772
|
Chorizo,#aa0011
|
|
773
|
+
Chorus of Elephants,#8e8987
|
|
771
774
|
Chorus of Frogs,#8c9632
|
|
772
775
|
Choux à la Crème,#ebcf7d
|
|
773
776
|
Christmas Red,#b01b2e
|
|
@@ -1301,6 +1304,7 @@ Excalibur,#676168
|
|
|
1301
1304
|
Exclusive Elixir,#f9f1dd
|
|
1302
1305
|
Exclusive Ivory,#e2d8c3
|
|
1303
1306
|
Exhilarating Green,#81c784
|
|
1307
|
+
Exhumed Gold,#a78558
|
|
1304
1308
|
Exit Light,#55bb33
|
|
1305
1309
|
Exotic Escape,#96d9df
|
|
1306
1310
|
Exotic Lilac,#d198b5
|
|
@@ -1486,6 +1490,7 @@ Forget-Me-Not,#0087bd
|
|
|
1486
1490
|
Forgiven Sin,#ff1199
|
|
1487
1491
|
Forgotten Mosque,#e2d9db
|
|
1488
1492
|
Forgotten Sandstone,#afa696
|
|
1493
|
+
Forgotten Tusk,#c4bba5
|
|
1489
1494
|
Formosan Green,#a69a51
|
|
1490
1495
|
Fortune Cookie,#e0c5a1
|
|
1491
1496
|
Fossil Stone,#e3ddcc
|
|
@@ -2091,6 +2096,7 @@ Indocile Tiger,#b96b00
|
|
|
2091
2096
|
Inescapable Lover,#820e3b
|
|
2092
2097
|
Infectious Love,#bb1177
|
|
2093
2098
|
Inferno Orange,#ff4400
|
|
2099
|
+
Infinite Inkwell,#2f1064
|
|
2094
2100
|
Infinite Night,#071037
|
|
2095
2101
|
Infinity,#222831
|
|
2096
2102
|
Infinity and Beyond,#6e7e99
|
|
@@ -2516,6 +2522,7 @@ Maharaja,#3f354f
|
|
|
2516
2522
|
Mahogany,#c04000
|
|
2517
2523
|
Mai Tai,#a56531
|
|
2518
2524
|
Maiden’s Blush,#f3d3bf
|
|
2525
|
+
Maine Coon Orange,#c2792b
|
|
2519
2526
|
Maison Verte,#e5f0d9
|
|
2520
2527
|
Maize,#f4d054
|
|
2521
2528
|
Maizena,#fbec5e
|
|
@@ -2813,8 +2820,8 @@ Muddy,#a13905
|
|
|
2813
2820
|
Muddy Brown,#886806
|
|
2814
2821
|
Muddy Green,#657432
|
|
2815
2822
|
Muddy Mauve,#e4b3cc
|
|
2823
|
+
Muddy Mire,#c3988b
|
|
2816
2824
|
Muddy Olive,#4b5d46
|
|
2817
|
-
Muddy Quicksand,#c3988b
|
|
2818
2825
|
Muddy Rose,#e2beb4
|
|
2819
2826
|
Muddy Yellow,#bfac05
|
|
2820
2827
|
Muesli,#9e7e53
|
|
@@ -3744,6 +3751,7 @@ Saltwater Denim,#145c78
|
|
|
3744
3751
|
Salty Ice,#cce2f3
|
|
3745
3752
|
Salvia,#a8b59e
|
|
3746
3753
|
Samba,#aa262b
|
|
3754
|
+
Sanctum of Shadows,#3c2f4e
|
|
3747
3755
|
Sand,#e2ca76
|
|
3748
3756
|
Sand Dune,#e3d2c0
|
|
3749
3757
|
Sand Ripples,#c1b7b0
|
|
@@ -3845,6 +3853,7 @@ Shiny Trumpet,#ecae58
|
|
|
3845
3853
|
Shipmate,#7aa3cc
|
|
3846
3854
|
Shipwreck,#968772
|
|
3847
3855
|
Shipyard,#4f6f85
|
|
3856
|
+
Shiritorier’s Orange,#f19000
|
|
3848
3857
|
Shivering Green,#24dd7e
|
|
3849
3858
|
Shocking Crimson,#ff0d04
|
|
3850
3859
|
Shocking Orange,#ff6e1c
|
|
@@ -4251,6 +4260,7 @@ Tiger of Mysore,#ff8855
|
|
|
4251
4260
|
Timeless Beauty,#b6273e
|
|
4252
4261
|
Timid White,#d9d6cf
|
|
4253
4262
|
Tin,#919191
|
|
4263
|
+
Tip of the Iceberg,#bbe4ea
|
|
4254
4264
|
Titian Red,#bd5620
|
|
4255
4265
|
Toad,#748d70
|
|
4256
4266
|
Toad King,#3d6c54
|
|
@@ -4497,6 +4507,7 @@ Vivid Orange,#ff5f00
|
|
|
4497
4507
|
Vivid Raspberry,#ff006c
|
|
4498
4508
|
Vivid Violet,#9f00ff
|
|
4499
4509
|
Void,#050d25
|
|
4510
|
+
Void Wellness Coach,#41373a
|
|
4500
4511
|
Voila!,#af8ba8
|
|
4501
4512
|
Volcanic Ash,#6f7678
|
|
4502
4513
|
Volcanic Island,#605244
|