
Security News
Meet Socket at Black Hat Europe and BSides London 2025
Socket is heading to London! Stop by our booth or schedule a meeting to see what we've been working on.
@choiceform/design-tokens
Advanced tools
Design tokens generator for Choiceform Design System - converts TypeScript tokens to W3C format and outputs to multiple formats
A type-safe, W3C-compliant design token system that bridges the gap between design and development.
background.default and text.secondary# npm
npm install @choiceform/design-tokens
# pnpm (recommended)
pnpm add @choiceform/design-tokens
# yarn
yarn add @choiceform/design-tokens
import {
color,
spacing,
shadow,
typography,
radius,
breakpoint,
} from "@choiceform/design-tokens";
// 🎨 Colors with theme support
const styles = {
background: color("background.default"), // Auto theme
color: color("text.secondary", "dark"), // Force dark theme
border: color("border.strong", 0.5), // With opacity
};
// 📏 Spacing system
const layout = {
padding: spacing(4), // → "1rem"
margin: spacing("1/2"), // → "50%"
gap: spacing("[10vh]"), // → "10vh"
};
// ✨ Other tokens
const components = {
borderRadius: radius("md"), // → "0.3125rem"
boxShadow: shadow("lg"), // → theme-aware shadow
fontFamily: typography("heading.large").fontFamily,
zIndex: zIndex("modal"), // → 810
};
// 📱 Responsive breakpoints
const mediaQuery = breakpoint.up("md"); // → "@media screen and (min-width: 48rem)"
/* Import CSS variables */
@import "@choiceform/design-tokens/tokens.css";
.my-component {
background: var(--color-background-default);
color: var(--color-text-secondary);
padding: var(--spacing-4);
border-radius: var(--radius-md);
box-shadow: var(--shadow-lg);
}
// Import functions (must be first)
@import "@choiceform/design-tokens/functions";
// Import mixins (must be second)
@import "@choiceform/design-tokens/mixins";
.component {
// 🎯 Individual values with functions
background: color("background.default");
padding: spacing(4);
border-radius: radius("md");
// 🔥 Multi-property mixins
@include typography-styles("heading.large");
// 📱 Responsive design
@include up("md") {
padding: spacing(6);
@include typography-styles("heading.display");
}
}
// Basic usage
color("background.default"); // Auto theme
color("text.accent", "dark"); // Force theme
color("border.default", 0.8); // With opacity
// Available aliases
color("background.default"); // Background colors
color("text.secondary"); // Text colors
color("border.strong"); // Border colors
color("icon.primary"); // Icon colors
// Numeric scale (0.25rem increments)
spacing(4); // → "1rem"
spacing(8); // → "2rem"
// Percentage values
spacing("1/2"); // → "50%"
spacing("1/3"); // → "33.333333%"
// Custom values
spacing("[10vh]"); // → "10vh"
spacing("[calc(100% - 2rem)]"); // → "calc(100% - 2rem)"
// Multiple values
spacingList([2, 4]); // → "0.5rem 1rem"
// Complete typography objects
const heading = typography("heading.large");
// Returns: { fontFamily, fontSize, fontWeight, lineHeight, letterSpacing }
// CSS string for styled-components
const cssString = typographyStyles("body.medium");
// Individual properties
fontFamily("default"); // → "Inter, system-ui, sans-serif"
fontSize("lg"); // → "1.125rem"
fontWeight("semibold"); // → 600
// Media queries
breakpoint.up("md"); // → "@media screen and (min-width: 48rem)"
breakpoint.down("lg"); // → "@media screen and (max-width: 63.98rem)"
breakpoint.between("sm", "xl"); // → Between sm and xl
breakpoint.only("md"); // → Only md breakpoint
// Device aliases
breakpoint.mobile(); // → Tablet and up
breakpoint.tablet(); // → Tablet only
breakpoint.desktop(); // → Desktop and up
// Auto theme (follows system preference)
const autoStyles = {
background: color("background.default"),
color: color("text.default"),
};
// Manual theme control
const lightStyles = {
background: color("background.default", "light"),
color: color("text.default", "light"),
};
const darkStyles = {
background: color("background.default", "dark"),
color: color("text.default", "dark"),
};
// ✅ Correct import order
@import "@choiceform/design-tokens/functions"; // First
@import "@choiceform/design-tokens/mixins"; // Second
// ✅ Use functions for individual properties
.card {
background: color("background.default");
padding: spacing(4);
border: 1px solid color("border.default");
}
// ✅ Use mixins for complex operations
.heading {
@include typography-styles("heading.large"); // 5 properties at once
@include text-ellipsis(); // Utility mixin
}
// ✅ Responsive patterns
.responsive-component {
@include typography-styles("body.medium");
@include up("md") {
@include typography-styles("body.large");
}
}
// ✅ Tree shaking - import only what you need
import { color } from "@choiceform/design-tokens";
// ✅ Bulk operations
const margins = spacingList([2, 4, 6, 8]);
const shadows = shadowList(["sm", "md"]);
// ✅ Static values are optimized at build time
const styles = {
padding: spacing(4), // Static → "1rem"
margin: spacing(props.size), // Dynamic → runtime
};
| Type | Count | Examples |
|---|---|---|
| Colors | 243 | background.*, text.*, border.*, icon.* |
| Typography | 39 | heading.large, body.medium, code.small |
| Spacing | Flexible | spacing(4), spacing("1/2"), custom values |
| Shadows | 22 | sm, md, lg, xl (with theme variants) |
| Breakpoints | 6 | xs, sm, md, lg, xl, 2xl |
| Radius | 3 | sm, md, lg |
| Z-Index | 9 | sticky, modal, tooltip, etc. |
// CSS files
import "@choiceform/design-tokens/tokens.css"; // CSS custom properties
import "@choiceform/design-tokens/preflight.css"; // Reset styles
// SCSS files
@import "@choiceform/design-tokens/functions"; // SCSS functions
@import "@choiceform/design-tokens/mixins"; // SCSS mixins
@import "@choiceform/design-tokens/tokens"; // SCSS variables
// JavaScript/TypeScript
import {
color, spacing, shadow, typography, radius, zIndex,
spacingList, shadowList, typographyStyles,
breakpoint, fontFamily, fontSize, fontWeight
} from "@choiceform/design-tokens";
MIT License - see the LICENSE file for details.
Built with ❤️ by the Choiceform Design System Team
Examples · Documentation · npm
FAQs
Design tokens generator for Choiceform Design System - converts TypeScript tokens to W3C format and outputs to multiple formats
The npm package @choiceform/design-tokens receives a total of 145 weekly downloads. As such, @choiceform/design-tokens popularity was classified as not popular.
We found that @choiceform/design-tokens demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 10 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.

Security News
Socket is heading to London! Stop by our booth or schedule a meeting to see what we've been working on.

Security News
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.