Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

magic-color

Package Overview
Dependencies
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

magic-color

Magic color creator.

  • 1.0.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
26
decreased by-65.79%
Maintainers
1
Weekly downloads
 
Created
Source

magic-color NPM version Netlify Status

Make the colors be magical.

You can watch my talk to learn more basic knowledge points.

Features

  • 💫 Support multi-color model conversion.
  • 📦 Built-in color related components.
  • 🚀 Provides utility toolset functions
  • 🦄 Theme color generator and fully customizable.
  • 🥳 esm only & 0 dependencies.

Usage

pnpm add magic-color

A lot of color tool functions for you to use, providing easy conversion, generation, parsing, comparison, operation and other functions.

basic

import { MagicColor } from 'magic-color'

const mc = new MagicColor('#ffffff') // auto parse color
const mc = new MagicColor('#ffffff', 'hex') // specify color type
const mc = new MagicColor('#ffffff', 'hex', 1) // specify opacity

MagicColor will automatically infer the input color type and the opacity.

Now support color types: RGB, HEX, HSL, HSB, Keyword.

You can convert between supported types.

mc.toRgb() // RGB value: [255, 255, 255]
mc.toHex() // HEX value: '#ffffff'
mc.toHsl() // HSL value: [0, 0, 100]
mc.toHsb() // HSB value: [0, 0, 100]

// or you can use the `to` method
mc.to('your transformed type')

If you want to output a color string, you can use the toString method, and you can choose whether you need opacity.

mc.toString() // '#ffffff'
// with opacity
mc.toString(true) // '#ffffffff'
mc.toRgb().toString(true) // 'rgba(255, 255, 255, 100%)'

Refer to the type documentation for more information.

And more...

theme

Well, you can use it to create a theme color.

import { theme } from 'magic-color'

theme('#9955ff')

// Will output:
// {
//   "50": "#faf7ff",
//   "100": "#f5eeff",
//   "200": "#e6d5ff",
//   "300": "#d6bbff",
//   "400": "#b888ff",
//   "500": "#9955ff",
//   "600": "#8a4de6",
//   "700": "#5c3399",
//   "800": "#452673",
//   "900": "#2e1a4d",
//   "950": "#1f1133",
// }

And you can custom it with themeOptions.

export interface ThemeOptions {
  /**
   * Output color type
   *
   * @default same type as input
   */
  type?: ColorType

  /**
   * Custom render output color
   *
   * @param meta [name, color]
   * @returns [CustomedName, CustomedColor]
   */
  render?: (meta: [string, string]) => [string, string]
}
import { theme } from 'magic-color'

theme('#9955ff', {
  type: 'rgb',
  render: (meta) => {
    return [
      `--color-primary-${meta[0]}`,
      meta[1].replace(/rgb\((.*)\)/, '$1').replace(/,/g, ''),
    ]
  },
})

// Will output:
// {
//   "--color-primary-50": "250 247 255",
//   "--color-primary-100": "245 238 255",
//   "--color-primary-200": "230 213 255",
//   "--color-primary-300": "214 187 255",
//   "--color-primary-400": "184 136 255",
//   "--color-primary-500": "153 85 255",
//   "--color-primary-600": "138 77 230",
//   "--color-primary-700": "92 51 153",
//   "--color-primary-800": "69 38 115",
//   "--color-primary-900": "46 26 77",
//   "--color-primary-950": "31 17 51",
// }

Credits

license

MIT

Keywords

FAQs

Package last updated on 28 May 2024

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc