Files
dt-design-system/packages/tokens
michael e74c285b70 Add storefront component migration: cards, badges, progress bars, animations, and React wrapper package
Major feature migration from dt-shopify-storefront into the design system:

- Card system: per-card color modes (normal/emphasis/warning/success/other),
  progress bars, full-bleed card body (card-body-flush), image bevel clip-paths,
  and visible structural borders at bevel corners
- Badge system: dt-card-badge with position-aware offsets for cards vs media frames
- Media frames: dt-bevel-media with inner surface fill, image clipping, and
  "MISSING MEDIA" placeholder for empty containers
- Interactive bevel buttons: dt-btn with hover/selected states and pulse animation
- Menu items: dt-menu-item with active states and level indentation
- Animations: scale-in, fade-in, slide-up, pulse, ping, spin keyframes
- Feature legend: CSS grid for product feature icons with state colors
- Scrollbar styling for DT brand
- New @dangerousthings/react package wrapping web CSS components
- New @dangerousthings/tailwind-preset package
- New @dangerousthings/hex-background package
- Desktop showcase rewritten in React with Tailwind CSS
- Mobile showcase updated with new screens (animations, filters, advanced cards)
- Tokens: added mode color tokens, RGB variants, and selected-state tokens

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-06 10:18:39 -08:00
..
2026-03-04 04:36:26 +00:00
2026-03-04 04:36:26 +00:00
2026-03-03 17:59:56 -08:00

@dangerousthings/tokens

Canonical design tokens for the Dangerous Things design system — colors, typography, and shape values defined in TypeScript and exported as CSS custom properties.

Install

npm install @dangerousthings/tokens

Brands

Two brand themes are included:

Brand Description
dt Neon cyberpunk — Tektur font, beveled corners, cyan/yellow/magenta palette
classic Dark navy with magenta accents, standard border radius

Each brand provides dark and light mode values.

Usage

TypeScript / JavaScript

import { dt } from "@dangerousthings/tokens/brands/dt";

console.log(dt.color.dark.primary);  // "#00ffff"
console.log(dt.typography.heading);  // "Tektur Variable"
console.log(dt.shape.bevelMd);       // "2rem"

Import all brands at once:

import { brands } from "@dangerousthings/tokens";

Object.keys(brands); // ["dt", "classic"]

Types

import type { BrandTokens, ColorTokens, ThemeBrand } from "@dangerousthings/tokens";

CSS Custom Properties

Generated CSS files are available per brand:

@import "@dangerousthings/tokens/css/dt.css";

This provides custom properties like --color-primary, --color-primary-rgb, --font-heading, --bevel-md, etc.

Exports

Path Description
@dangerousthings/tokens All brands, theme definitions, and types
@dangerousthings/tokens/brands/dt DT brand tokens
@dangerousthings/tokens/brands/classic Classic brand tokens
@dangerousthings/tokens/css/dt.css DT CSS custom properties
@dangerousthings/tokens/css/classic.css Classic CSS custom properties

Token Categories

  • Color — background, surface, text, brand primary/secondary/accent, semantic (success, warning, error, info)
  • Typography — heading, body, and mono font families
  • Shape — bevel sizes (sm/md/lg) and border radius (sm/md/lg)

License

MIT