color-name-list 13.31.0 → 13.33.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/.github/workflows/build.yml +0 -17
- package/README.md +5 -7
- package/changes.svg +3 -3
- package/dist/colornames.bestof.csv +9 -0
- 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 +10 -1
- package/dist/colornames.bestof.umd.js +1 -1
- package/dist/colornames.bestof.xml +36 -0
- package/dist/colornames.bestof.yaml +27 -0
- package/dist/colornames.csv +8 -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 +9 -3
- package/dist/colornames.umd.js +1 -1
- package/dist/colornames.xml +29 -5
- package/dist/colornames.yaml +22 -4
- package/dist/history.json +1 -1
- package/package.json +1 -1
- package/src/colornames.csv +12 -6
|
@@ -32,20 +32,3 @@ jobs:
|
|
|
32
32
|
- name: Build
|
|
33
33
|
run: npm run build
|
|
34
34
|
- run: npm test
|
|
35
|
-
- name: Check for changes
|
|
36
|
-
id: git-check
|
|
37
|
-
run: |
|
|
38
|
-
git diff --quiet src/colornames.csv README.md changes.svg || echo "has_changes=true" >> $GITHUB_OUTPUT
|
|
39
|
-
- name: Commit updated README and SVG
|
|
40
|
-
if: steps.git-check.outputs.has_changes == 'true'
|
|
41
|
-
run: |
|
|
42
|
-
git config --local user.email "action@github.com"
|
|
43
|
-
git config --local user.name "GitHub Action"
|
|
44
|
-
git add src/colornames.csv README.md changes.svg
|
|
45
|
-
git commit -m "chore: sort colors and update docs [skip ci]"
|
|
46
|
-
- name: Push changes
|
|
47
|
-
if: steps.git-check.outputs.has_changes == 'true'
|
|
48
|
-
uses: ad-m/github-push-action@master
|
|
49
|
-
with:
|
|
50
|
-
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
51
|
-
branch: ${{ github.head_ref }}
|
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 __30041__ 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
|
|
@@ -118,8 +118,8 @@ Other language implementations maintained by the community:
|
|
|
118
118
|
|
|
119
119
|
## Color Name Submission 💌
|
|
120
120
|
|
|
121
|
-
|
|
122
|
-
/
|
|
121
|
+
Submit your own color names by editing the
|
|
122
|
+
[`src/colornames.csv`](src/colornames.csv) file and opening a pull request.
|
|
123
123
|
|
|
124
124
|
Please review the [naming rules](CONTRIBUTING.md) before contributing!
|
|
125
125
|
|
|
@@ -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: __30041__ 🎉
|
|
135
135
|
|
|
136
136
|
~__0.18%__ of the RGB color space
|
|
137
137
|
|
|
@@ -248,9 +248,7 @@ See [package.json](package.json#L6) for details.
|
|
|
248
248
|
|
|
249
249
|
### Sources: Names 📇
|
|
250
250
|
|
|
251
|
-
- Thousands of user submissions [
|
|
252
|
-
/ [Google Docs](https://docs.google.com/forms/d/e/1FAIpQLSfbS5D6owA4dQupJJ-6qhRzuxkjX9r2AliPMg-VR2V3NpGkQg/viewform)
|
|
253
|
-
/ [Github](#contributors-)
|
|
251
|
+
- Thousands of user submissions [Github](#contributors-)
|
|
254
252
|
- [Wikipedia list of named colors] (2018-02-23)
|
|
255
253
|
- [Wada Sanzo's list of named colors]
|
|
256
254
|
- [CSS/HTML color names]
|
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 290">
|
|
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="290"/>
|
|
13
|
+
<text x="40" y="90" fill="#3d322e">6th Feet Under</text><text x="40" y="160" fill="#dae3e7">Cityscape</text><text x="40" y="230" fill="#445155">Descent Into the Catacombs</text>
|
|
14
14
|
</svg>
|
|
@@ -5,6 +5,7 @@ name,hex
|
|
|
5
5
|
24 Karat,#dfc685
|
|
6
6
|
3AM in Shibuya,#225577
|
|
7
7
|
3AM Latte,#c0a98e
|
|
8
|
+
6th Feet Under,#3d322e
|
|
8
9
|
8 Bit Eggplant,#990066
|
|
9
10
|
A Dime a Dozen,#d3dde4
|
|
10
11
|
À l’Orange,#f2850d
|
|
@@ -112,6 +113,7 @@ Arcane Red,#6a2f2f
|
|
|
112
113
|
Archeology,#6e6a5e
|
|
113
114
|
Arctic,#648589
|
|
114
115
|
Arctic Ice,#b6bdd0
|
|
116
|
+
Arctic Nights,#345c61
|
|
115
117
|
Arctic Water,#00fcfc
|
|
116
118
|
Argan Oil,#9d6646
|
|
117
119
|
Argent,#888888
|
|
@@ -791,6 +793,7 @@ Citadel,#6a7f8b
|
|
|
791
793
|
Citrus,#9fb70a
|
|
792
794
|
Citrus Splash,#ffc400
|
|
793
795
|
City Dweller,#c0b9ac
|
|
796
|
+
Cityscape,#dae3e7
|
|
794
797
|
Clair de Lune,#dbe9df
|
|
795
798
|
Clairvoyant,#480656
|
|
796
799
|
Clam Up,#ebdbc1
|
|
@@ -954,6 +957,7 @@ Crown of Ash,#a1a9a9
|
|
|
954
957
|
Crown of Thorns,#763c33
|
|
955
958
|
Crucible,#555b59
|
|
956
959
|
Crude Banana,#21c40e
|
|
960
|
+
Cruising,#018498
|
|
957
961
|
Crumbling Statue,#cabfb4
|
|
958
962
|
Crunchy Carrot,#ea5013
|
|
959
963
|
Crusade King,#dbc364
|
|
@@ -1089,6 +1093,7 @@ Denim,#2243b6
|
|
|
1089
1093
|
Densetsu Green,#889911
|
|
1090
1094
|
Depths of Night,#2c319b
|
|
1091
1095
|
Depths of the Nile,#253f4e
|
|
1096
|
+
Descent Into the Catacombs,#445155
|
|
1092
1097
|
Desert,#ccad60
|
|
1093
1098
|
Desert Dessert,#ffba6b
|
|
1094
1099
|
Desert Dune,#b5ab9c
|
|
@@ -1161,6 +1166,7 @@ Dream of Spring,#f7cf26
|
|
|
1161
1166
|
Dream Setting,#ff77bb
|
|
1162
1167
|
Dream Vapor,#cc99ee
|
|
1163
1168
|
Dreamless Sleep,#111111
|
|
1169
|
+
Dreamscape Purple,#9632ce
|
|
1164
1170
|
Dreamy Candy Forest,#b195e4
|
|
1165
1171
|
Dried Tomatoes,#ab6057
|
|
1166
1172
|
Drifting Cloud,#dbe0e1
|
|
@@ -1597,6 +1603,7 @@ Gallant Green,#99aa66
|
|
|
1597
1603
|
Gameboy Screen,#8bac0f
|
|
1598
1604
|
Gangsters Gold,#ffdd22
|
|
1599
1605
|
Garden Goddess,#99cea0
|
|
1606
|
+
Garden of Earthly Delights,#a09f5b
|
|
1600
1607
|
Garden of Eden,#7fa771
|
|
1601
1608
|
Garden Snail,#cdb1ab
|
|
1602
1609
|
Garden Weed,#786e38
|
|
@@ -3645,6 +3652,7 @@ Roastery,#692302
|
|
|
3645
3652
|
Robotic Gods,#94a2b1
|
|
3646
3653
|
Rock Lobster,#f00b52
|
|
3647
3654
|
Rock’n’Rose,#fc8aaa
|
|
3655
|
+
Rogue Waters,#4e7376
|
|
3648
3656
|
Roland-Garros,#bb5522
|
|
3649
3657
|
Romanic Scene,#3b0346
|
|
3650
3658
|
Romanov Mauve,#b97da8
|
|
@@ -4676,6 +4684,7 @@ Wisteria Blue,#84a2d4
|
|
|
4676
4684
|
Witch Brew,#888738
|
|
4677
4685
|
Witch Hazel,#fbf073
|
|
4678
4686
|
Witchcraft,#474c50
|
|
4687
|
+
Witches Cauldron,#35343f
|
|
4679
4688
|
Wizard,#4d5b88
|
|
4680
4689
|
Wizard’s Brew,#a090b8
|
|
4681
4690
|
Wizard’s Potion,#5d6098
|