New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@carbon/colors

Package Overview
Dependencies
Maintainers
11
Versions
243
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@carbon/colors

> Colors for digital and software products using the Carbon Design System.

  • 0.0.1-alpha.21
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
101K
decreased by-4.84%
Maintainers
11
Weekly downloads
 
Created
Source

@carbon/colors

Colors for digital and software products using the Carbon Design System.

Getting Started

Run the following command using npm:

npm install -S @carbon/colors

If you prefer Yarn, use the following command instead:

yarn add @carbon/colors

Usage

You can use the @carbon/colors module in your JavaScript, in addition to your Sass.

JavaScript

For JavaScript, you can import and use this module by doing the following in your code:

// ESM
import { colors, tokens } from '@carbon/colors';

// CommonJS
const { colors, tokens } = require('@carbon/colors');

Each color swatch is exported on the colors object and can be called by specifying the name and grade, for example:

colors.black;
colors.blue50;
colors.warmGray100;

Similary, you can access tokens on the tokens object, for example:

tokens.brand01;
tokens.activePrimary;

Sass

In Sass, you can import the files individual by doing:

@import '@carbon/colors/scss/colors';
@import '@carbon/colors/scss/tokens';

This will make all the colors and token variables available to you in your file. They are named with the following structure: $ibm-color__swatch--grade, for example:

$ibm-color__blue--50;
$ibm-color__warm-gray--100;

Similarly, you can access the tokens variables after including them.

🤲 Contributing

To learn more about how to contribute, look here!

Keywords

FAQs

Package last updated on 04 Dec 2018

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