Socket
Socket
Sign inDemoInstall

color-bundle

Package Overview
Dependencies
0
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    color-bundle

Color conversion and manipulation with CSS string support (bundle)


Version published
Weekly downloads
6
increased by500%
Maintainers
1
Install size
70.5 kB
Created
Weekly downloads
 

Readme

Source

Color Bundle

Using the CDN version of Qix-'s color code includes a require, so it can't be run in a browser. This bundled version uses rollup to combine all the dependencies and make a stand-alone version of color.

Additionally, this bundle exposes all named colors in Color.namedColors.

Usage

  • Download color.min.js from this repository.

  • Load it in your HTML in a script tag.

  • Use the global Color function to access the bundle:

    <script src="color.min.js" />
    <script>
    console.log(Color("#bada55e5").rgb().toString());
    // => "rgba(186, 218, 85, 0.9)"
    
    console.log(Color.namedColors.rebeccapurple);
    // => [102, 51, 153] // [r, g, b]
    </script>
    

Home page

Source Repo: https://github.com/Qix-/color Demo page: https://npm.runkit.com/color

Keywords

FAQs

Last updated on 24 Jul 2019

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc