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

@flip-app/swirl-tokens

Package Overview
Dependencies
Maintainers
2
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@flip-app/swirl-tokens

Design tokens represent design decisions such as color, spacing, and typography. Each token has a unique name that references a specific value.

  • 0.0.13
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
2
Created
Source

Swirl Tokens

When using design systems colors, you would usually start with a color palette consisting of values from 100 to 900, like green600. These values are static and are not themable. In Swirl, we intentionally skip this core layer and instead work with the semantic color tokens.

Semantic color tokens represent not just a color value but also a semantic role it's used for. By assigning semantic roles to colors, we achieve predictable theming and dark mode support.

We use generic names for the color tokens, which means that color names don't rely on our component inventory. So you can build your custom components using the same color tokens, and they will still automatically support theming and dark mode.

Installation

npm install @flip/swirl-tokens

Usage

Javascript

Accessing all of the available token groups

import { tokens } from "@flip-app/swirl-tokens";

console.log(tokens.colors);
CSS

Importing all of the css variables. CSS variables are prefixed with --s

import '@flip-app/swirl-tokens/css/styles.css';

div {
  background: var(--s-background);
}
JSON

Accessing a specific token group file via the dist folder

const spacing = require("@flip/swirl-tokens/json/spacing.json");

FAQs

Package last updated on 22 Jul 2022

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