📅 You're Invited: Meet the Socket team at RSAC (April 28 – May 1).RSVP
Socket
Sign inDemoInstall
Socket

@uiw/react-color-saturation

Package Overview
Dependencies
Maintainers
2
Versions
95
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@uiw/react-color-saturation

Color Saturation

2.5.2
Source
npm
Version published
Weekly downloads
63K
-9.84%
Maintainers
2
Weekly downloads
 
Created
Source

React Color Saturation

Buy me a coffee npm bundle size npm version Open in unpkg

Saturation Component is a subcomponent of @react-color.

react-color-saturation

Install

npm i @uiw/react-color-saturation

Usage

import React, { useState } from 'react';
import Saturation from '@uiw/react-color-saturation';

export default function Demo() {
  const [hsva, setHsva] = useState({ h: 0, s: 0, v: 68, a: 1 });
  return (
    <Saturation
      hsva={hsva}
      onChange={(newColor) => {
        setHsva({ ...hsva, ...newColor, a: hsva.a });
      }}
    />
  );
}

The value of hsva does not exist

import React from 'react';
import Saturation from '@uiw/react-color-saturation';

export default function Demo() {
  return (
    <div style={{ display: 'flex', gap: 10 }}>
      <Saturation hue={122} />
      <Saturation hue={210} />
      <Saturation hue={23} />
    </div>
  );
}

Props

import React from 'react';
import { HsvaColor } from '@uiw/color-convert';
import { PointerProps } from './Pointer';
export interface SaturationProps extends Omit<React.HTMLAttributes<HTMLDivElement>, 'onChange'> {
  prefixCls?: string;
  /** hsva => `{ h: 0, s: 75, v: 82, a: 1 }` */
  hsva?: HsvaColor;
  hue?: number;
  radius?: React.CSSProperties['borderRadius'];
  /** React Component, Custom pointer component */
  pointer?: ({ prefixCls, left, top, color }: PointerProps) => JSX.Element;
  onChange?: (newColor: HsvaColor) => void;
}
declare const Saturation: React.ForwardRefExoticComponent<SaturationProps & React.RefAttributes<HTMLDivElement>>;
export default Saturation;

Contributors

As always, thanks to our amazing contributors!

Made with contributors.

License

Licensed under the MIT License.

Keywords

react

FAQs

Package last updated on 29 Apr 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