Socket
Socket
Sign inDemoInstall

@ch-ui/colors

Package Overview
Dependencies
0
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @ch-ui/colors

Procedural color algorithms based upon drawing helical bézier curves in LAB space.


Version published
Maintainers
1
Install size
95.6 kB
Created

Readme

Source

LAB curved color system tooling

This package exports functions that help generate sRGB color systems by drawing bézier curves through CIELAB color space.

This package is a direct successor to thure/cielab-curved-palette, which has substantially better documentation, so go there if you want to read how this works in greater detail, but file issues here if you have any questions or encounter issues.

Unlike that project, this package has no dependencies, so @ch-ui/colors can be used anywhere TypeScript can transpile to.

Usage

The most often used top-level function is hexColorsFromPalette. Fluent Blocks React uses it (generally) like so:

import { hexColorsFromPalette, hex_to_LCH } from '@fluent-blocks/colors'

const paletteConfig = {
  nShades: 16,
  range: [1.42, 83.57],
  linearity: 0.77,
}

const hexColors = hexColorsFromPalette(
  {
    keyColor: hex_to_LCH('#6264a7'),
    darkCp: 2 / 3,
    lightCp: 1 / 3,
    hueTorsion: 0,
  },
  paletteConfig.nShades,
  paletteConfig.range,
  paletteConfig.linearity
)

console.log('[hex colors]\n', hexColors)

FAQs

Last updated on 05 Feb 2024

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