color-name-list 13.29.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 +8 -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 +9 -2
- package/dist/colornames.bestof.umd.js +1 -1
- package/dist/colornames.bestof.xml +32 -4
- package/dist/colornames.bestof.yaml +24 -3
- package/dist/colornames.csv +12 -1
- 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 +2 -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 +3 -1
- package/dist/colornames.short.umd.js +1 -1
- package/dist/colornames.short.xml +8 -0
- package/dist/colornames.short.yaml +6 -0
- package/dist/colornames.toon +13 -2
- package/dist/colornames.umd.js +1 -1
- package/dist/colornames.xml +48 -4
- package/dist/colornames.yaml +36 -3
- package/dist/history.json +1 -1
- package/package.json +1 -1
- package/src/colornames.csv +13 -2
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>
|
|
@@ -770,6 +770,7 @@ Chocolate Temptation,#956e5f
|
|
|
770
770
|
Chocolate Truffle,#612e32
|
|
771
771
|
Chocolate Velvet,#7f7453
|
|
772
772
|
Chorizo,#aa0011
|
|
773
|
+
Chorus of Elephants,#8e8987
|
|
773
774
|
Chorus of Frogs,#8c9632
|
|
774
775
|
Choux à la Crème,#ebcf7d
|
|
775
776
|
Christmas Red,#b01b2e
|
|
@@ -1303,6 +1304,7 @@ Excalibur,#676168
|
|
|
1303
1304
|
Exclusive Elixir,#f9f1dd
|
|
1304
1305
|
Exclusive Ivory,#e2d8c3
|
|
1305
1306
|
Exhilarating Green,#81c784
|
|
1307
|
+
Exhumed Gold,#a78558
|
|
1306
1308
|
Exit Light,#55bb33
|
|
1307
1309
|
Exotic Escape,#96d9df
|
|
1308
1310
|
Exotic Lilac,#d198b5
|
|
@@ -1488,6 +1490,7 @@ Forget-Me-Not,#0087bd
|
|
|
1488
1490
|
Forgiven Sin,#ff1199
|
|
1489
1491
|
Forgotten Mosque,#e2d9db
|
|
1490
1492
|
Forgotten Sandstone,#afa696
|
|
1493
|
+
Forgotten Tusk,#c4bba5
|
|
1491
1494
|
Formosan Green,#a69a51
|
|
1492
1495
|
Fortune Cookie,#e0c5a1
|
|
1493
1496
|
Fossil Stone,#e3ddcc
|
|
@@ -2093,6 +2096,7 @@ Indocile Tiger,#b96b00
|
|
|
2093
2096
|
Inescapable Lover,#820e3b
|
|
2094
2097
|
Infectious Love,#bb1177
|
|
2095
2098
|
Inferno Orange,#ff4400
|
|
2099
|
+
Infinite Inkwell,#2f1064
|
|
2096
2100
|
Infinite Night,#071037
|
|
2097
2101
|
Infinity,#222831
|
|
2098
2102
|
Infinity and Beyond,#6e7e99
|
|
@@ -2518,6 +2522,7 @@ Maharaja,#3f354f
|
|
|
2518
2522
|
Mahogany,#c04000
|
|
2519
2523
|
Mai Tai,#a56531
|
|
2520
2524
|
Maiden’s Blush,#f3d3bf
|
|
2525
|
+
Maine Coon Orange,#c2792b
|
|
2521
2526
|
Maison Verte,#e5f0d9
|
|
2522
2527
|
Maize,#f4d054
|
|
2523
2528
|
Maizena,#fbec5e
|
|
@@ -2815,8 +2820,8 @@ Muddy,#a13905
|
|
|
2815
2820
|
Muddy Brown,#886806
|
|
2816
2821
|
Muddy Green,#657432
|
|
2817
2822
|
Muddy Mauve,#e4b3cc
|
|
2823
|
+
Muddy Mire,#c3988b
|
|
2818
2824
|
Muddy Olive,#4b5d46
|
|
2819
|
-
Muddy Quicksand,#c3988b
|
|
2820
2825
|
Muddy Rose,#e2beb4
|
|
2821
2826
|
Muddy Yellow,#bfac05
|
|
2822
2827
|
Muesli,#9e7e53
|
|
@@ -3848,6 +3853,7 @@ Shiny Trumpet,#ecae58
|
|
|
3848
3853
|
Shipmate,#7aa3cc
|
|
3849
3854
|
Shipwreck,#968772
|
|
3850
3855
|
Shipyard,#4f6f85
|
|
3856
|
+
Shiritorier’s Orange,#f19000
|
|
3851
3857
|
Shivering Green,#24dd7e
|
|
3852
3858
|
Shocking Crimson,#ff0d04
|
|
3853
3859
|
Shocking Orange,#ff6e1c
|
|
@@ -4254,6 +4260,7 @@ Tiger of Mysore,#ff8855
|
|
|
4254
4260
|
Timeless Beauty,#b6273e
|
|
4255
4261
|
Timid White,#d9d6cf
|
|
4256
4262
|
Tin,#919191
|
|
4263
|
+
Tip of the Iceberg,#bbe4ea
|
|
4257
4264
|
Titian Red,#bd5620
|
|
4258
4265
|
Toad,#748d70
|
|
4259
4266
|
Toad King,#3d6c54
|