yet-another-color-picker
TypeScript icon, indicating that this package has built-in type declarations

3.0.1 • Public • Published

yet-another-color-picker

Tests passing

A color picker web component.

This package’s files are distributed in the ES module format and have not been transpiled. It uses lit-html which is not bundled with the package.

Links:

Contents

Installation & usage

As npm package

  1. Install the package.

    npm install yet-another-color-picker
  2. Import the module to define the custom element.

    HTML:

    <color-picker></color-picker>

    JavaScript:

    import 'yet-another-color-picker'
  3. Make sure to load the color picker styles.

    HTML:

    <link rel="stylesheet" href="yet-another-color-picker/styles">

As plain files directly in the browser (no build step)

  1. Download the files.

    curl --remote-name-all 'https://cdn.jsdelivr.net/npm/yet-another-color-picker@latest/dist/ColorPicker.{js,css}'
  2. Define an import map for lit-html.

    Since this package does not bundle its dependencies (e.g. lit-html), the distribution files contain imports from bare module specifiers (e.g. import { render } from 'lit-html'). Browsers don't understand bare module specifiers by default, but with import maps, you can teach them.

    HTML:

    <script type="importmap">
    	{
    		"imports": {
    			"lit-html": "https://unpkg.com/lit-html@latest/lit-html.js?module"
    		}
    	}
    </script>

    This will make imports like the one mentioned above behave as if they reference the provided URL (e.g. import { render } from 'lit-html' will behave like import { render } from 'https://unpkg.com/lit-html@latest/lit-html.js?module'). And that browsers do undertand.

  3. Import the module to define the custom element.

    HTML:

    <color-picker></color-picker>

    JavaScript:

    import './ColorPicker.js'
  4. Make sure to also load the color picker styles.

    HTML:

    <link rel="stylesheet" href="./ColorPicker.css">

Documentation

Properties

Each of the following properties can also be set via its corresponding attribute.

Note: Changing an attribute will be synced to its corresponding property; however, changing a property will not be synced to its corresponding attribute.

activeFormat

  • Description: The currently active format. Changes when interacting with the “Switch format” button or when calling switchFormat().

  • Type: VisibleColorFormat

  • Required: false

  • Default: 'hsl'

  • Attribute: —

  • Usage:

    JavaScript:

     colorPicker.activeFormat = 'hwb'

alphaChannel

  • Description: Whether to show input controls for a color’s alpha channel. If set to 'hide', the alpha range input and the alpha channel input are hidden, the “Copy color” button will copy a CSS color value without alpha channel, and the object emitted in a color-change event will have a cssColor property value without alpha channel.

  • Type: 'show' | 'hide'

  • Required: false

  • Default: 'show'

  • Attribute: alpha-channel

  • Usage:

    JavaScript:

     colorPicker.alphaChannel = 'hide'

    HTML:

     <color-picker alpha-channel="hide"></color-picker>

color

  • Description: Sets the color of the color picker. You can pass any valid CSS color string.

  • Type: string | ColorHsl | ColorHwb | ColorRgb (for string, any valid CSS color string will work)

  • Required: false

  • Default: '#ffffffff'

  • Attribute: color

  • Usage:

    JavaScript:

     colorPicker.color = 'hsl(270 100% 50% / 0.8)'

    JavaScript:

     colorPicker.color = { h: 270, s: 100, l: 50, a: 0.8 }

    HTML:

     <color-picker color="hsl(270 100% 50% / 0.8)"></color-picker>

    HTML:

     <color-picker color="#f80b"></color-picker>

defaultFormat

  • Description: The color format to show by default when rendering the color picker. Must be one of the formats specified in visibleFormats.

  • Type: VisibleColorFormat

  • Required: false

  • Default: 'hsl'

  • Attribute: default-format

  • Usage:

    JavaScript:

     colorPicker.defaultFormat = 'hwb'

    HTML:

     <color-picker default-format="hwb"></color-picker>

id

  • Description: The ID value will be used to prefix all input elements’ id and label elements’ for attribute values. Make sure to set this if you use multiple instances of the component on a page.

  • Type: string

  • Required: false

  • Default: 'color-picker'

  • Attribute: id

  • Usage:

    JavaScript:

     colorPicker.id = 'color-picker-1'

    HTML:

     <color-picker id="color-picker-1"></color-picker>

visibleFormats

  • Description: A list of visible color formats. Controls for which formats the color input elements are shown and in which order the formats will be cycled through when activating the format switch button.

  • Type: VisibleColorFormat (an array of VisibleColorFormats)

  • Required: false

  • Default: ['hex', 'hsl', 'hwb', 'rgb']

  • Attribute: visible-formats

  • Usage:

    JavaScript:

     colorPicker.visibleFormats = ['hsl', 'hwb']

    HTML:

     <color-picker visible-formats="hsl,hwb"></color-picker>

Methods

copyColor()

  • Description: Copies the current color (determined by the active color format).

    This method behaves the same as activating the “Copy color” button.

    Only works in secure browsing contexts (i.e. HTTPS).

  • Return type: Promise<void> (the promise returned by calling window.navigator.clipboard.writeText)

  • Usage:

    JavaScript:

     colorPicker.copyColor()

switchFormat()

  • Description: Sets the next active color format by cycling through colorPicker.visibleFormats. This method behaves the same as activating the “Switch format” button. To set a specific color format, use the activeFormat property.

  • Return type: void

  • Usage:

    JavaScript:

     colorPicker.switchFormat()

Events

color-change

  • Description: The custom event that is emitted each time the internal colors object is updated.

  • Type: CustomEvent<ColorChangeDetail>

  • Data: The custom event emits an object whose detail property contains both the internal colors object and a CSS color value as a string based on the currently active format. The cssColor property will respect alpha-channel.

     {
     	colors: {
     		hex: string
     		hsl: ColorHsl
     		hsv: ColorHsv
     		hwb: ColorHwb
     		rgb: ColorRgb
     	}
     	cssColor: string
     }
  • Usage:

    HTML:

     <color-picker color="hsl(270 100% 50% / 0.8)"></color-picker>

    JavaScript:

     import 'yet-another-color-picker'
    
     const colorPicker = document.querySelector('color-picker')
     colorPicker.addEventListener('color-change', function (event) {
     	console.log(event.detail)
     })

Theming

You can customize the GUI of the color picker using CSS custom properties:

:root {
	--cp-color-focus: tomato;
	--cp-width-border: 2px;
}

Available custom properties and their default values:

Custom property Default value
--cp-color-background-input #fff
--cp-color-background #fff
--cp-color-border #000
--cp-color-focus #19f
--cp-color-text-input currentColor
--cp-color-text currentColor
--cp-font-family -apple-system, BlinkMacSystemFont, Segoe UI, Arial, sans-serif
--cp-font-size 0.8em
--cp-spacing 6px
--cp-width-border 1px
--cp-width-color-space 300px

Versioning

This package uses semantic versioning.

Contributing

See CONTRIBUTING.md.

Design

The color picker consists of the following main elements:

  • Color space:

    For fine-tuning the saturation and lightness/value, a slice of the HSV cylinder for the currently selected hue is shown.

    The HSV cylinder is more convenient for this task than the HSL cylinder as it shows a color at 100% saturation and 100% value in the top right corner (i.e. one can drag the color space thumb into the corner as a quasi shortcut). The HSL cylinder’s slice has this color at the halfway point of the Y axis (i.e. at 50% lightness) which isn’t easy to select.

  • Hue slider:

    A slider for selecting the current hue. This rotates the HSV cylinder; thus, it changes the slice of the HSV cylinder that’s shown in the color space.

  • Alpha slider:

    A slider for selecting the current alpha value.

  • Copy button:

    Copies the color formatted as a CSS color string in the active format.

  • Color inputs:

    A set of text fields which allow you to enter the individual components of each color. The text fields are shown based on the active format.

  • Switch format button:

    Cycles through the available color formats (currently HEX, HSL, HWB, and RGB).

To do

Package Sidebar

Install

npm i yet-another-color-picker

Weekly Downloads

0

Version

3.0.1

License

MIT

Unpacked Size

38.4 kB

Total Files

6

Last publish

Collaborators

  • kleinfreund