Skip to content

Commit

Permalink
init project.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaywcjlove committed Jul 10, 2022
0 parents commit d474936
Show file tree
Hide file tree
Showing 11 changed files with 702 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.husky/* linguist-detectable=false
22 changes: 22 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
build
dist
lib
cjs
esm
node_modules
coverage
npm-debug.log*
package-lock.json

.eslintcache
.DS_Store
.cache
.rdoc-dist

*.log
*.bak
*.tem
*.temp
#.swp
*.*~
~*.*
9 changes: 9 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
**/*.md
package.json
package-lock.json
node_modules
dist
build
coverage
lib
test
11 changes: 11 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"singleQuote": true,
"trailingComma": "all",
"printWidth": 120,
"overrides": [
{
"files": ".prettierrc",
"options": { "parser": "json" }
}
]
}
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2022 Kenny Wang<[email protected]>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
88 changes: 88 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
named-colors-hex
===

[![Build & Deploy](https://github.com/jaywcjlove/named-colors-hex/actions/workflows/ci.yml/badge.svg)](https://github.com/jaywcjlove/named-colors-hex/actions/workflows/ci.yml)
[![Open in unpkg](https://img.shields.io/badge/Open%20in-unpkg-blue)](https://uiwjs.github.io/npm-unpkg/#/pkg/named-colors-hex/file/README.md)
[![npm version](https://img.shields.io/npm/v/named-colors-hex.svg)](https://www.npmjs.com/package/named-colors-hex)
[![Coverage Status](https://jaywcjlove.github.io/named-colors-hex/badges.svg)](https://jaywcjlove.github.io/named-colors-hex/lcov-report/)

A array with color name -> Hex rgb. Based on https://www.w3.org/TR/css-color-4/#named-colors

## Installation

This package is [ESM only](https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c): Node 12+ is needed to use it and it must be import instead of require.

```bash
npm install named-colors-hex
```

If you still want to use in CommonJS, you can use dynamic `import()` to load.

```js
const named = await import('named-colors-hex');

// Fix compiling in typescript.
// https://github.com/microsoft/TypeScript/issues/43329#issuecomment-922544562
const named = await (Function('return import("named-colors-hex")')()) as Promise<typeof import("named-colors-hex")>;
```

## Usage

```js
import hexData from "named-colors-hex";

console.log(hexData) // => ['aliceblue', 'antiquewhite', 'aqua', ... ]
console.log(hexData.includes('#87CEEB')) // => true
console.log(hexData.length) // => 148
```

```js
import hexData from "named-colors-hex";
import colors from "colors-named";

hexData[colors.indexOf('aliceblue')] // => #F0F8FF
hexData[colors.indexOf('red')] // => #FF0000
hexData[colors.indexOf('black')] // => #000000
```

## API

```ts
/**
* A array with color names. Based on https://www.w3.org/TR/css-color-4/#named-colors
*/
declare const hexs: readonly ["#F0F8FF", "#FAEBD7", "#00FFFF", "#7FFFD4", "#F0FFFF", "#F5F5DC", "#FFE4C4","#000000",
"#FFEBCD", "#0000FF", "#8A2BE2", "#A52A2A", "#DEB887", "#5F9EA0", "#7FFF00", "#D2691E", "#FF7F50", "#6495ED",
"#FFF8DC", "#DC143C", "#00FFFF", "#00008B", "#008B8B", "#B8860B", "#A9A9A9", "#006400", "#A9A9A9", "#BDB76B",
"#8B008B", "#556B2F", "#FF8C00", "#9932CC", "#8B0000", "#E9967A", "#8FBC8F", "#483D8B", "#2F4F4F", "#2F4F4F",
"#00CED1", "#9400D3", "#FF1493", "#00BFFF", "#696969", "#696969", "#1E90FF", "#B22222", "#FFFAF0", "#228B22",
"#FF00FF", "#DCDCDC", "#F8F8FF", "#FFD700", "#DAA520", "#808080", "#008000", "#ADFF2F", "#808080", "#F0FFF0",
"#FF69B4", "#CD5C5C", "#4B0082", "#FFFFF0", "#F0E68C", "#E6E6FA", "#FFF0F5", "#7CFC00", "#FFFACD", "#ADD8E6",
"#F08080", "#E0FFFF", "#FAFAD2", "#D3D3D3", "#90EE90", "#D3D3D3", "#FFB6C1", "#FFA07A", "#20B2AA", "#87CEFA",
"#778899", "#778899", "#B0C4DE", "#FFFFE0", "#00FF00", "#32CD32", "#FAF0E6", "#FF00FF", "#800000", "#66CDAA",
"#0000CD", "#BA55D3", "#9370DB", "#3CB371", "#7B68EE", "#00FA9A", "#48D1CC", "#C71585", "#191970", "#F5FFFA",
"#FFE4E1", "#FFE4B5", "#FFDEAD", "#000080", "#FDF5E6", "#808000", "#6B8E23", "#FFA500", "#FF4500", "#DA70D6",
"#EEE8AA", "#98FB98", "#AFEEEE", "#DB7093", "#FFEFD5", "#FFDAB9", "#CD853F", "#FFC0CB", "#DDA0DD", "#B0E0E6",
"#800080", "#663399", "#FF0000", "#BC8F8F", "#4169E1", "#8B4513", "#FA8072", "#F4A460", "#2E8B57", "#FFF5EE",
"#A0522D", "#C0C0C0", "#87CEEB", "#6A5ACD", "#708090", "#708090", "#FFFAFA", "#00FF7F", "#4682B4", "#D2B48C",
"#008080", "#D8BFD8", "#FF6347", "#40E0D0", "#EE82EE", "#F5DEB3", "#FFFFFF", "#F5F5F5", "#FFFF00", "#9ACD32"];
export default hexs;
```

## Related

- [`colors-named`](https://github.com/jaywcjlove/colors-named) A array with color name -> Hex rgb.

## Contributors

As always, thanks to our amazing contributors!

<a href="https://github.com/jaywcjlove/named-colors-hex/graphs/contributors">
<img src="https://jaywcjlove.github.io/named-colors-hex/CONTRIBUTORS.svg" />
</a>

Made with [action-contributors](https://github.com/jaywcjlove/github-action-contributors).

## License

Licensed under the MIT License.
54 changes: 54 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
{
"name": "named-colors-hex",
"version": "0.0.1",
"description": "A array with color name -> Hex rgb.",
"type": "module",
"types": "./lib/index.d.ts",
"exports": "./lib/index.js",
"homepage": "https://jaywcjlove.github.io/named-colors-hex",
"repository": {
"type": "git",
"url": "https://github.com/jaywcjlove/named-colors-hex"
},
"scripts": {
"prepack": "husky install && npm run build",
"start": "tsbb watch --disable-babel",
"build": "tsbb build --disable-babel",
"type-check": "tsc --noEmit",
"test": "tsbb test",
"coverage": "tsbb test --coverage",
"prettier": "prettier --write \"**/*.{js,ts,json}\""
},
"keywords": [
"hex",
"color",
"colors",
"named-colors-hex",
"named-colors",
"named"
],
"author": "Kenny Wang<[email protected]>",
"license": "MIT",
"files": [
"src/index.ts",
"lib"
],
"jest": {
"transformIgnorePatterns": [
"<rootDir>/node_modules/?!(.*)"
]
},
"engines": {
"node": ">=14.16"
},
"lint-staged": {
"*.{js,ts,json}": "prettier --write"
},
"devDependencies": {
"colors-named": "^1.0.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"tsbb": "~3.7.6"
}
}
10 changes: 10 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:base"],
"packageRules": [
{
"matchPackagePatterns": ["*"],
"rangeStrategy": "replace"
}
]
}
Loading

0 comments on commit d474936

Please sign in to comment.