0.0.0-beta.0.1.0 • Published 2 years ago

@sptruz/color-name v0.0.0-beta.0.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

https://sptruz.vercel.app/

Installation

Node/npm

#npm
npm install --save @sptruz/color-name

#yarn
yarn add @sptruz/color-name

#pnpm
pnpm add @sptruz/color-name

Deno

Unlike Node, Deno doesn't use a package management like NPM and instead depends on direct URL imports. You can access @sptruz/color-name on deno.land/x. This is how the most recent version may be imported:

You can also specify a particular version:

import * as sptruzColorName from 'https://deno.land/x/sptruz_color_name@0.0.0-beta.0.0.2/mod.ts';

or letest version:

import * as sptruzColorName from 'https://deno.land/x/sptruz_color_name/mod.ts';

CDN

<!-- jsDelivr -->
<script src="https://cdn.jsdelivr.net/npm/@sptruz/color-name/lib/index.umd.js"></script>

<!-- Unpkg -->
<script src="https://unpkg.com/@sptruz/color-name/lib/index.umd.js"></script>

NOTE: There isn't much of a change in how it's used, but the remainder of this README assumes you're using npm and importing straight from the @sptruz/color-name.

Basic usage

import sptruzColorName from '@sptruz/color-name';

(() => {
  // get value of Red
  console.log(sptruzColorName.Red);
  // output: { hex: '#ff0000', hsl: [ 0, 100, 50 ], rgb: [ 255, 0, 0 ] }

  // get hex value of Red
  console.log(sptruzColorName.Red.hex);
  // output: #ff0000

  // get hsl value of Red
  console.log(sptruzColorName.Red.hsl);
  // output: [ 0, 100, 50 ]

  // get rgb value of Red
  console.log(sptruzColorName.Red.rgb);
  // output: [ 255, 0, 0 ]
})();

Supports

  • color name value
    • hex value | example: #ff0000
    • hsl value | example: [ 0, 100, 50 ]
    • rgb value | example: [ 255, 0, 0 ]

License

@sptruz/color-name is licensed under the MIT License.

Created with ♥ by @MKAbuMattar.