Socket
Socket
Sign inDemoInstall

@shopify/polaris-tokens

Package Overview
Dependencies
1
Maintainers
24
Versions
844
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

@shopify/polaris-tokens


Version published
Maintainers
24
Created

Package description

What is @shopify/polaris-tokens?

@shopify/polaris-tokens is a package that provides design tokens for Shopify's Polaris design system. These tokens include values for colors, spacing, typography, and other design-related properties that can be used to ensure consistency across applications built with Polaris.

What are @shopify/polaris-tokens's main functionalities?

Color Tokens

Provides a set of predefined color tokens that can be used to maintain color consistency across your application.

{
  "import": "import { color } from '@shopify/polaris-tokens';",
  "usage": "const primaryColor = color['color-primary'];"
}

Spacing Tokens

Offers a set of spacing tokens to ensure consistent spacing and layout throughout your application.

{
  "import": "import { spacing } from '@shopify/polaris-tokens';",
  "usage": "const smallSpacing = spacing['spacing-small'];"
}

Typography Tokens

Includes typography tokens for font sizes, weights, and other text-related properties to maintain typographic consistency.

{
  "import": "import { typography } from '@shopify/polaris-tokens';",
  "usage": "const baseFontSize = typography['font-size-base'];"
}

Other packages similar to @shopify/polaris-tokens

Readme

Source

Polaris Tokens

npm version

Design tokens for Polaris, Shopify’s design system.

Design tokens originated at Salesforce, and the best way to describe them is to simply quote their documentation:

Design tokens are the visual design atoms of the design system — specifically, they are named entities that store visual design attributes. We use them in place of hard-coded values (such as hex values for color or pixel values for spacing) in order to maintain a scalable and consistent visual system for UI development – Salesforce UX

Installation

npm install @shopify/polaris-tokens

Usage

Javascript

Accessing all of the available token groups

// Token values only
import {tokens} from '@shopify/polaris-tokens';

console.log(tokens.color['color-bg']); // 'rgba(...)'

// Tokens with metadata
import {metadata} from '@shopify/polaris-tokens';

console.log(metadata.color['color-bg'].value); // 'rgba(...)'
console.log(metadata.color['color-bg'].description); // 'For use as a background color, in components such as Page and Frame backgrounds.'
CSS

Importing all of the css variables. CSS variables are prefixed with --p to signal that these variables are Polaris variables.

import '@shopify/polaris-tokens/css/styles.css';

div {
  background: var(--p-color-bg-surface);
}
JSON

Accessing a specific token group file via the dist folder

const spacing = require('@shopify/polaris-tokens/json/spacing.json');

Contributing

Pull requests are welcome. See the contribution guidelines for more information.

Licenses

  • Source code is under a custom license based on MIT. The license restricts Polaris usage to applications that integrate or interoperate with Shopify software or services, with additional restrictions for external, stand-alone applications.

FAQs

Last updated on 04 Jul 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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc