Research
Security News
Threat Actor Exposes Playbook for Exploiting npm to Build Blockchain-Powered Botnets
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
@shopify/polaris-tokens
Advanced tools
[![npm version](https://img.shields.io/npm/v/@shopify/polaris-tokens.svg?style=flat)](https://www.npmjs.com/package/@shopify/polaris-tokens)
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
npm install @shopify/polaris-tokens
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.'
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);
}
Accessing a specific token group file via the dist folder
const spacing = require('@shopify/polaris-tokens/json/spacing.json');
Pull requests are welcome. See the contribution guidelines for more information.
FAQs
[![npm version](https://img.shields.io/npm/v/@shopify/polaris-tokens.svg?style=flat)](https://www.npmjs.com/package/@shopify/polaris-tokens)
The npm package @shopify/polaris-tokens receives a total of 89,309 weekly downloads. As such, @shopify/polaris-tokens popularity was classified as popular.
We found that @shopify/polaris-tokens demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 24 open source maintainers collaborating on the project.
Did you know?
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.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
Security News
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.