color-name-list 13.39.0 → 13.40.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/pull_request_template.md +2 -1
- package/.github/workflows/build-and-release.yml +1 -1
- package/.github/workflows/build.yml +0 -2
- package/CONTRIBUTING.md +11 -2
- package/changes.svg +1 -1
- package/dist/colornames.bestof.csv +3 -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 +3 -1
- package/dist/colornames.bestof.umd.js +1 -1
- package/dist/colornames.bestof.xml +12 -4
- package/dist/colornames.bestof.yaml +9 -3
- package/dist/colornames.csv +2 -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 +1 -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 +1 -0
- package/dist/colornames.short.umd.js +1 -1
- package/dist/colornames.short.xml +4 -0
- package/dist/colornames.short.yaml +3 -0
- package/dist/colornames.toon +2 -2
- package/dist/colornames.umd.js +1 -1
- package/dist/colornames.xml +8 -8
- package/dist/colornames.yaml +6 -6
- package/dist/history.json +1 -1
- package/package.json +1 -1
- package/src/colornames.csv +3 -3
|
@@ -10,12 +10,13 @@ added or adjusted.
|
|
|
10
10
|
- [ ] I have read and followed `CONTRIBUTING.md`.
|
|
11
11
|
- [ ] I only edited `src/colornames.csv` for color name changes (no changes to
|
|
12
12
|
`dist/`, `README.md`, or `changes.svg`).
|
|
13
|
+
- [ ] Each line ends with a trailing comma (e.g., `My Color,#ff5733,`).
|
|
13
14
|
- [ ] New color names:
|
|
14
15
|
- [ ] Convey a specific color (not just a vibe or reference).
|
|
15
16
|
- [ ] Follow the "Rules for new color names" (no racist/offensive/obscene/
|
|
16
17
|
brand names, etc.).
|
|
17
18
|
- [ ] Use British English spelling where applicable (e.g. `Grey` not `Gray`).
|
|
18
|
-
- [ ] Are capitalized in APA-style title case.
|
|
19
|
+
- [ ] Are capitalized in [APA-style title case](https://apastyle.apa.org/style-grammar-guidelines/capitalization/title-case).
|
|
19
20
|
- [ ] I ran `npm test` locally (or understand CI will run it for me).
|
|
20
21
|
|
|
21
22
|
## Color source / inspiration
|
|
@@ -49,7 +49,7 @@ jobs:
|
|
|
49
49
|
run: |
|
|
50
50
|
git config --local user.email "github-actions[bot]@users.noreply.github.com"
|
|
51
51
|
git config --local user.name "GitHub Action"
|
|
52
|
-
git commit -m "docs: update README.md and changes.svg [skip ci]"
|
|
52
|
+
git commit -m "docs(readme): update README.md and changes.svg [skip ci]"
|
|
53
53
|
git pull --rebase https://${GITHUB_ACTOR}:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git main
|
|
54
54
|
git push https://${GITHUB_ACTOR}:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git HEAD:main
|
|
55
55
|
env:
|
package/CONTRIBUTING.md
CHANGED
|
@@ -16,7 +16,8 @@ it's a list of color names! 🎨
|
|
|
16
16
|
|
|
17
17
|
1. **Review Rules:** Read and adhere to the
|
|
18
18
|
["Rules for new color names"](#rules-for-new-color-names) below.
|
|
19
|
-
2. **File Edits:** Only update the `src/colornames.csv` file.
|
|
19
|
+
2. **File Edits:** Only update the `src/colornames.csv` file. Each line should
|
|
20
|
+
end with a trailing comma (e.g., `My Color,#ff5733,`).
|
|
20
21
|
3. **Local Check:** Run npm test to confirm names and hex values are unique
|
|
21
22
|
and that no generated files are modified.
|
|
22
23
|
4. **Source**: Add the source/origin of your new colors in the Pull Request
|
|
@@ -40,6 +41,8 @@ ethnic and racial assumptions.
|
|
|
40
41
|
- **No Enumerations:** No numbered or simple sequence names (e.g., `Grey 1`,
|
|
41
42
|
`Blue 2`).
|
|
42
43
|
- **No AI Generation:** Do not use LLM / AI to generate color names.
|
|
44
|
+
- **No Best-Of Flag:** Do not set the `bestOf` flag (third column) yourself;
|
|
45
|
+
this is exclusively done by maintainers.
|
|
43
46
|
|
|
44
47
|
### ✨ Naming Conventions (Style & Clarity)
|
|
45
48
|
|
|
@@ -94,7 +97,13 @@ through GitHub:
|
|
|
94
97
|
this page. This creates a copy of the project under your own account.
|
|
95
98
|
2. **Edit the list**: Navigate to `src/colornames.csv` in your forked repository.
|
|
96
99
|
3. **Add your colors**: Scroll to the bottom and add your new colors. Don't
|
|
97
|
-
worry about sorting; it will be done automatically for you.
|
|
100
|
+
worry about sorting; it will be done automatically for you. **Make sure to add
|
|
101
|
+
a trailing comma after the hex value**, for example:
|
|
102
|
+
|
|
103
|
+
```csv
|
|
104
|
+
My Awesome Color,#ff5733,
|
|
105
|
+
```
|
|
106
|
+
|
|
98
107
|
4. **Create a Pull Request**:
|
|
99
108
|
- Commit your changes in the GitHub interface.
|
|
100
109
|
- Go back to the [original repository](https://github.com/meodai/color-names).
|
package/changes.svg
CHANGED
|
@@ -10,5 +10,5 @@
|
|
|
10
10
|
</style>
|
|
11
11
|
</defs>
|
|
12
12
|
<rect fill="#212121" x="0" y="0" width="600" height="220"/>
|
|
13
|
-
<text x="40" y="90" fill="#
|
|
13
|
+
<text x="40" y="90" fill="#ff7a8f">Magical Girl</text><text x="40" y="160" fill="#cdbb63">The Weight of Gold</text>
|
|
14
14
|
</svg>
|
|
@@ -6,7 +6,6 @@ name,hex
|
|
|
6
6
|
3AM Breakup,#330404
|
|
7
7
|
3AM in Shibuya,#225577
|
|
8
8
|
3AM Latte,#c0a98e
|
|
9
|
-
6th Feet Under,#3d322e
|
|
10
9
|
8 Bit Eggplant,#990066
|
|
11
10
|
A Dime a Dozen,#d3dde4
|
|
12
11
|
À l’Orange,#f2850d
|
|
@@ -2516,6 +2515,7 @@ Magic Carpet,#9488be
|
|
|
2516
2515
|
Magic Ink,#0247fe
|
|
2517
2516
|
Magic Magenta,#7f4774
|
|
2518
2517
|
Magic Potion,#ff4466
|
|
2518
|
+
Magical Girl,#ff7a8f
|
|
2519
2519
|
Magical Malachite,#22cc88
|
|
2520
2520
|
Magical Merlin,#3d8ed0
|
|
2521
2521
|
Magical Moonlight,#f0eeeb
|
|
@@ -3928,6 +3928,7 @@ Sinsemilla,#b6bd4a
|
|
|
3928
3928
|
Sip of Mint,#dedfc9
|
|
3929
3929
|
Siren,#69293b
|
|
3930
3930
|
Siren Scarlet,#b21d1d
|
|
3931
|
+
Six Feet Under,#3d322e
|
|
3931
3932
|
Sizzling Bacon,#8e3537
|
|
3932
3933
|
Sizzling Watermelon,#fa005c
|
|
3933
3934
|
Skeleton,#ebdecc
|
|
@@ -4255,6 +4256,7 @@ The Grape War of 97’,#bb00ff
|
|
|
4255
4256
|
The Legend of Green,#558844
|
|
4256
4257
|
The Matrix,#70f15e
|
|
4257
4258
|
The Vast of Night,#110066
|
|
4259
|
+
The Weight of Gold,#cdbb63
|
|
4258
4260
|
Think Brick,#834841
|
|
4259
4261
|
Think Pink,#e5a5c1
|
|
4260
4262
|
Thor’s Thunder,#44ccff
|