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

@volue/design-colors

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@volue/design-colors

Color primitives for Volue design primitives


Version published
Maintainers
2
Created

@volue/design-colors

Color primitives/tokens to be used across Volue's products

Screenshot

Installation

npm install @volue/design-colors --save
# or
yarn add @volue/design-colors

Usage

JavaScript

In JavaScript, design token names are formatted in lower camelCase.

const tokens = require('@volue/design-colors');
console.log(tokens.colorBlue100); // rgb(0, 0, 0)

In JSON, design token names are formatted in SNAKE_CASE.

const tokens = require('@volue/design-colors/dist/index.json');
console.log(tokens['COLOR_BLACK']); // rgb(0, 0, 0)

Sass

Sass variables and map keys are formatted in kebab-case.

// Using variables
@import '~@volue/design-colors/dist/index';

a {
  color: $color-accent120;
}

FAQs

Package last updated on 15 Aug 2021

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