JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 13
  • Score
    100M100P100Q48619F
  • License MIT

A modern, customizable color picker component for Vue 3.

Package Exports

  • pixel-palette
  • pixel-palette/style
  • pixel-palette/style.css

Readme

Pixel Palette

A modern, customizable color picker component for Vue 3.

Features

  • 🎨 Interactive color space and hue slider
  • 🔢 Multiple color formats (HEX, RGB, HSL)
  • 🎯 EyeDropper API support (where available)
  • 🎲 Random color generator
  • 📋 Copy to clipboard with tooltip feedback
  • 🎛️ Alpha channel support
  • 📱 Responsive design

Installation

npm install pixel-palette
# or
pnpm add pixel-palette
# or
yarn add pixel-palette

Usage

Basic Usage

<template>
  <ColorPicker @set-color="handleColorChange" />
</template>

<script setup>
import { ColorPicker } from "pixel-palette";
import "pixel-palette/style.css";

function handleColorChange(color) {
  console.log("Selected color:", color);
}
</script>

With Props

<template>
  <ColorPicker
    title="Primary Color"
    :initial-color="'hsla(210, 100%, 50%, 0.8)'"
    color-mode="hex"
    :enable-alpha="true"
    :open-alpha-by-default="false"
    @set-color="updateColor"
  />
</template>

<script setup>
import { ColorPicker } from "pixel-palette";
import "pixel-palette/style.css";

const updateColor = (color) => {
  // color will be in the current format (HEX, RGB, or HSL)
  console.log("New color:", color);
};
</script>

Props

Prop Type Default Description
title string - Optional title displayed at the top
initialColor string "hsl(0, 100%, 50%)" Initial color value
colorMode hex or rgb or hsl hex Initial color mode value
enableAlpha boolean true Option to enable alpha channel
openAlphaByDefault boolean false Option to show/hide alpha channel

Events

Event Payload Description
set-color string Emitted when color changes

Browser Support

  • Modern browsers with Vue 3 support
  • EyeDropper API requires Chrome 95+ or Edge 95+
  • Requires secure context (HTTPS) for EyeDropper

License

MIT