🚨 Shai-Hulud Strikes Again:834 Packages Compromised.Technical Analysis
Socket
Book a DemoInstallSign in
Socket

@zendeskgarden/react-colorpickers

Package Overview
Dependencies
Maintainers
1
Versions
160
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@zendeskgarden/react-colorpickers

Components related to color pickers in the Garden Design System

Source
npmnpm
Version
9.12.3
Version published
Weekly downloads
27K
30.27%
Maintainers
1
Weekly downloads
 
Created
Source

@zendeskgarden/react-colorpickers npm version

This package includes components related to color pickers in the Garden Design System.

Installation

npm install @zendeskgarden/react-colorpickers

# Peer Dependencies - Also Required
npm install react react-dom styled-components @zendeskgarden/react-theming

Usage

ColorPicker

import { ThemeProvider } from '@zendeskgarden/react-theming';
import { ColorPicker } from '@zendeskgarden/react-colorpickers';


/**
 * Place a `ThemeProvider` at the root of your React application
 */
<ThemeProvider>
  <ColorPicker defaultColor="#17494D">
</ThemeProvider>

ColorPickerDialog

import { ThemeProvider } from '@zendeskgarden/react-theming';
import { ColorPickerDialog } from '@zendeskgarden/react-colorpickers';

/**
 * Place a `ThemeProvider` at the root of your React application
 */
<ThemeProvider>
  <ColorPickerDialog defaultColor="#17494D" buttonProps={{ 'aria-label': 'Example label' }} />
</ThemeProvider>;

ColorSwatch

import { ThemeProvider } from '@zendeskgarden/react-theming';
import { ColorSwatch } from '@zendeskgarden/react-colorpickers';

const colors = [
  [
    { label: 'Green-800', value: '#0b3b29' },
    { label: 'Green-700', value: '#186146' }
  ],
  [
    { label: 'Green-600', value: '#038153' },
    { label: 'Green-500', value: '#228f67' }
  ]
];

/**
 * Place a `ThemeProvider` at the root of your React application
 */
<ThemeProvider>
  <ColorSwatch colors={colors} name="swatch" />
</ThemeProvider>;

ColorSwatchDialog

import { ThemeProvider } from '@zendeskgarden/react-theming';
import { ColorSwatchDialog } from '@zendeskgarden/react-colorpickers';

const colors = [
  [
    { label: 'Green-800', value: '#0b3b29' },
    { label: 'Green-700', value: '#186146' }
  ],
  [
    { label: 'Green-600', value: '#038153' },
    { label: 'Green-500', value: '#228f67' }
  ]
];

/**
 * Place a `ThemeProvider` at the root of your React application
 */
<ThemeProvider>
  <ColorSwatchDialog
    colors={colors}
    name="swatch-dialog"
    buttonProps={{ 'aria-label': 'Example label' }}
  />
</ThemeProvider>;

Keywords

colorpicker

FAQs

Package last updated on 04 Dec 2025

Did you know?

Socket

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