color-name-list 13.29.0 → 13.31.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 +13 -2
- 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 +14 -3
- package/dist/colornames.bestof.umd.js +1 -1
- package/dist/colornames.bestof.xml +52 -8
- package/dist/colornames.bestof.yaml +39 -6
- 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 +4 -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 +5 -1
- package/dist/colornames.short.umd.js +1 -1
- package/dist/colornames.short.xml +16 -0
- package/dist/colornames.short.yaml +12 -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 +18 -3
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 __30035__ 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: __30035__ 🎉
|
|
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 430">
|
|
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="430"/>
|
|
13
|
+
<text x="40" y="90" fill="#203943">Astral Nomad</text><text x="40" y="160" fill="#77150e">Blackened Sun</text><text x="40" y="230" fill="#391531">Nightly Voyager</text><text x="40" y="300" fill="#161d3b">Nightwalker</text><text x="40" y="370" fill="#7f01fe">Poisoning Purple</text>
|
|
14
14
|
</svg>
|
|
@@ -138,6 +138,7 @@ Assassin,#2d4f83
|
|
|
138
138
|
Assassin’s Red,#f60206
|
|
139
139
|
Aster,#867ba9
|
|
140
140
|
Astral,#376f89
|
|
141
|
+
Astral Nomad,#203943
|
|
141
142
|
Atlantic Navy,#13336f
|
|
142
143
|
Atlantis,#336172
|
|
143
144
|
Atlas Cedar,#5ca0a7
|
|
@@ -341,6 +342,7 @@ Black Wash,#0c0c0c
|
|
|
341
342
|
Black-Hearted,#3e1825
|
|
342
343
|
Blackberry,#43182f
|
|
343
344
|
Blackberry Yogurt,#e5bddf
|
|
345
|
+
Blackened Sun,#77150e
|
|
344
346
|
Blackn’t,#020f03
|
|
345
347
|
Blackout,#0e0702
|
|
346
348
|
Blackwater,#545663
|
|
@@ -770,6 +772,7 @@ Chocolate Temptation,#956e5f
|
|
|
770
772
|
Chocolate Truffle,#612e32
|
|
771
773
|
Chocolate Velvet,#7f7453
|
|
772
774
|
Chorizo,#aa0011
|
|
775
|
+
Chorus of Elephants,#8e8987
|
|
773
776
|
Chorus of Frogs,#8c9632
|
|
774
777
|
Choux à la Crème,#ebcf7d
|
|
775
778
|
Christmas Red,#b01b2e
|
|
@@ -1303,6 +1306,7 @@ Excalibur,#676168
|
|
|
1303
1306
|
Exclusive Elixir,#f9f1dd
|
|
1304
1307
|
Exclusive Ivory,#e2d8c3
|
|
1305
1308
|
Exhilarating Green,#81c784
|
|
1309
|
+
Exhumed Gold,#a78558
|
|
1306
1310
|
Exit Light,#55bb33
|
|
1307
1311
|
Exotic Escape,#96d9df
|
|
1308
1312
|
Exotic Lilac,#d198b5
|
|
@@ -1488,6 +1492,7 @@ Forget-Me-Not,#0087bd
|
|
|
1488
1492
|
Forgiven Sin,#ff1199
|
|
1489
1493
|
Forgotten Mosque,#e2d9db
|
|
1490
1494
|
Forgotten Sandstone,#afa696
|
|
1495
|
+
Forgotten Tusk,#c4bba5
|
|
1491
1496
|
Formosan Green,#a69a51
|
|
1492
1497
|
Fortune Cookie,#e0c5a1
|
|
1493
1498
|
Fossil Stone,#e3ddcc
|
|
@@ -2093,6 +2098,7 @@ Indocile Tiger,#b96b00
|
|
|
2093
2098
|
Inescapable Lover,#820e3b
|
|
2094
2099
|
Infectious Love,#bb1177
|
|
2095
2100
|
Inferno Orange,#ff4400
|
|
2101
|
+
Infinite Inkwell,#2f1064
|
|
2096
2102
|
Infinite Night,#071037
|
|
2097
2103
|
Infinity,#222831
|
|
2098
2104
|
Infinity and Beyond,#6e7e99
|
|
@@ -2518,6 +2524,7 @@ Maharaja,#3f354f
|
|
|
2518
2524
|
Mahogany,#c04000
|
|
2519
2525
|
Mai Tai,#a56531
|
|
2520
2526
|
Maiden’s Blush,#f3d3bf
|
|
2527
|
+
Maine Coon Orange,#c2792b
|
|
2521
2528
|
Maison Verte,#e5f0d9
|
|
2522
2529
|
Maize,#f4d054
|
|
2523
2530
|
Maizena,#fbec5e
|
|
@@ -2815,8 +2822,8 @@ Muddy,#a13905
|
|
|
2815
2822
|
Muddy Brown,#886806
|
|
2816
2823
|
Muddy Green,#657432
|
|
2817
2824
|
Muddy Mauve,#e4b3cc
|
|
2825
|
+
Muddy Mire,#c3988b
|
|
2818
2826
|
Muddy Olive,#4b5d46
|
|
2819
|
-
Muddy Quicksand,#c3988b
|
|
2820
2827
|
Muddy Rose,#e2beb4
|
|
2821
2828
|
Muddy Yellow,#bfac05
|
|
2822
2829
|
Muesli,#9e7e53
|
|
@@ -2936,9 +2943,11 @@ Nightfall,#43535e
|
|
|
2936
2943
|
Nightlife,#27426b
|
|
2937
2944
|
Nightly Activities,#2e5090
|
|
2938
2945
|
Nightly Expedition,#221188
|
|
2946
|
+
Nightly Voyager,#391531
|
|
2939
2947
|
Nightly Walk,#544563
|
|
2940
2948
|
Nightmare,#112211
|
|
2941
2949
|
Nightmare Fuel,#293135
|
|
2950
|
+
Nightwalker,#161d3b
|
|
2942
2951
|
Nile,#afb982
|
|
2943
2952
|
Nimbus Cloud,#c8c8cc
|
|
2944
2953
|
Ninja Princess,#75528b
|
|
@@ -3381,8 +3390,8 @@ Plutonium,#35fa00
|
|
|
3381
3390
|
Poached Egg,#f5d893
|
|
3382
3391
|
Poblano,#077f1b
|
|
3383
3392
|
Poison Ivy,#00ad43
|
|
3384
|
-
Poison Purple,#7f01fe
|
|
3385
3393
|
Poison Purple Paradise,#b300ff
|
|
3394
|
+
Poisoning Purple,#7f01fe
|
|
3386
3395
|
Poisonous,#55ff11
|
|
3387
3396
|
Poisonous Dart,#77ff66
|
|
3388
3397
|
Poisonous Mints,#8fd400
|
|
@@ -3848,6 +3857,7 @@ Shiny Trumpet,#ecae58
|
|
|
3848
3857
|
Shipmate,#7aa3cc
|
|
3849
3858
|
Shipwreck,#968772
|
|
3850
3859
|
Shipyard,#4f6f85
|
|
3860
|
+
Shiritorier’s Orange,#f19000
|
|
3851
3861
|
Shivering Green,#24dd7e
|
|
3852
3862
|
Shocking Crimson,#ff0d04
|
|
3853
3863
|
Shocking Orange,#ff6e1c
|
|
@@ -4254,6 +4264,7 @@ Tiger of Mysore,#ff8855
|
|
|
4254
4264
|
Timeless Beauty,#b6273e
|
|
4255
4265
|
Timid White,#d9d6cf
|
|
4256
4266
|
Tin,#919191
|
|
4267
|
+
Tip of the Iceberg,#bbe4ea
|
|
4257
4268
|
Titian Red,#bd5620
|
|
4258
4269
|
Toad,#748d70
|
|
4259
4270
|
Toad King,#3d6c54
|