Socket
Socket
Sign inDemoInstall

@getcircuit/colors

Package Overview
Dependencies
Maintainers
19
Versions
216
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@getcircuit/colors

## Install


Version published
Weekly downloads
0
Maintainers
19
Weekly downloads
 
Created
Source

@getcircuit/colors

Install

yarn add @getcircuit/colors

Routes

Exports two values:

  • ColorList - Ordered list of color preset names
  • ColorMap - Map of color presets

And some utility methods:

  • getPresetByName - Gets the color preset by a given name.
  • getOrderedPresetName - Gets the color preset name by a given ordered number.
  • getOrderedPreset - Gets the color preset by a given ordered number.

Usage

import { getOrderedPreset } from '@getcircuit/colors/routes'

const firstColour = getOrderedPreset(0)

// {
//   active: '#476FF1',
//   inactive: '#CFD9FC',
//   text: '#2450E1',
// }
console.log(firstColour)

ColorMap

An object of colors with objects with their colour types and HEX.

export const ColorMap = {
  azure: {
    name: 'azure'
    index: 3,
    active: '#40B2F9',
    inactive: '#BFE2F8',
    text: '#1994E1',
  },
  blue: {
    name: 'blue',
    index: 10,
    active: '#3F90FA',
    inactive: '#D0E3FB',
    text: '#0D73F8',
  },
  // ...

ColorList

An array with the order of routes colors to be used.

export const ColorList = [
  'marine',
  'turqoise',
  'purple',
  // ...

FAQs

Package last updated on 23 Jan 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