New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@johnqh/design_system

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@johnqh/design_system

Design system library with tokens, colors, typography and variants

latest
Source
npmnpm
Version
1.0.25
Version published
Maintainers
1
Created
Source

@johnqh/design-system

A comprehensive design system library providing semantic design tokens, colors, typography, and component variants for consistent UI development.

Features

  • Complete Color System - Raw, semantic, and component-specific colors with dark mode support
  • Design Tokens - Comprehensive spacing, typography, animation, and layout tokens
  • Typography System - Semantic text variants and typography scales
  • Component Variants - Pre-built styles for buttons, cards, badges, inputs, and alerts
  • AI-Optimized - Semantic helpers and validation utilities for better AI-assisted development
  • Theme Management - Dynamic theme creation and application utilities
  • Type-Safe - Full TypeScript support with comprehensive type definitions
  • Tree-Shakeable - Optimized bundle size with named exports

Installation

npm install @johnqh/design-system

Peer dependencies:

npm install clsx tailwind-merge

Quick Start

import { colors, designTokens, textVariants, variants } from '@johnqh/design-system';

// Use semantic colors
const primaryText = colors.semantic.primary.DEFAULT;

// Use design tokens
const spacing = designTokens.spacing.margin.md;

// Use typography variants
const heading = textVariants.h1;

// Use component variants
const buttonClass = variants.button.primary;

Core Modules

Colors

import { colors } from '@johnqh/design-system';

// Raw colors (use sparingly)
colors.raw.blue[500];

// Semantic colors (recommended)
colors.semantic.primary.DEFAULT;
colors.semantic.success.light;

// Component-specific colors
colors.component.button.primary;
colors.component.alert.error;

Design Tokens

import { designTokens } from '@johnqh/design-system';

// Spacing
designTokens.spacing.margin.md;  // 16px
designTokens.spacing.padding.lg; // 24px

// Typography
designTokens.typography.fontSize.lg;
designTokens.typography.fontWeight.semibold;

// Animation
designTokens.animation.duration.normal;
designTokens.animation.easing.inOut;

// Layout
designTokens.layout.container.maxWidth;
designTokens.layout.grid.cols.desktop;

Typography

import { textVariants } from '@johnqh/design-system';

// Headings
textVariants.h1;  // 'text-4xl font-bold text-gray-900 dark:text-gray-100'
textVariants.h2;  // 'text-3xl font-semibold text-gray-900 dark:text-gray-100'

// Body text
textVariants.body;
textVariants.bodyLarge;
textVariants.bodySmall;

// Special text
textVariants.code;
textVariants.caption;

Component Variants

import { variants } from '@johnqh/design-system';

// Buttons
variants.button.primary;
variants.button.secondary;
variants.button.destructive;

// Cards
variants.card.default;
variants.card.elevated;
variants.card.interactive;

// Badges
variants.badge.success;
variants.badge.warning;
variants.badge.error;

// Inputs
variants.input.default;
variants.input.search;

Simple Variants System

For easier theming and variant management:

import { simpleVariants, createSimpleVariants } from '@johnqh/design-system';

// Use pre-configured variants
const buttonClass = simpleVariants.get('button', 'primary');

// Create custom variants
const customVariants = createSimpleVariants({
  myComponent: {
    default: () => 'bg-white text-black',
    primary: () => 'bg-blue-500 text-white',
    secondary: () => 'bg-gray-500 text-white'
  }
});

const myClass = customVariants.get('myComponent', 'primary');

AI-Assisted Development

Semantic Helpers

import {
  getSemanticColor,
  applyUIPattern,
  createComponentWithIntent
} from '@johnqh/design-system';

// Semantic color mapping
const errorText = getSemanticColor('error');
const successButton = getSemanticColor('success');

// UI patterns
const container = applyUIPattern('centeredContainer');
const card = applyUIPattern('elevatedCard', 'p-6');

// Intent-based components
const primaryButton = createComponentWithIntent({
  intent: 'primary',
  size: 'md',
  pattern: 'clickable',
  additional: 'rounded-md font-medium'
});

Validation Utilities

import {
  validateVariantConfig,
  safeResolveVariant,
  analyzeVariantUsage
} from '@johnqh/design-system';

// Validate configuration
const validation = validateVariantConfig(config, {
  requireDefault: true,
  checkTypes: true
});

// Safe variant resolution
const result = safeResolveVariant(config, 'button', 'primary', {
  strict: false,
  logWarnings: true
});

// Analyze usage patterns
const analysis = analyzeVariantUsage(config);
console.log('Optimization suggestions:', analysis.optimizationSuggestions);

Theme Management

import { createTheme, applyTheme, getThemeColors } from '@johnqh/design-system';

// Create a custom theme
const theme = createTheme({
  primary: '#007AFF',
  secondary: '#5856D6',
  accent: '#FF3B30'
});

// Apply theme to component
const themedButton = applyTheme(theme, 'button');

// Get theme colors
const colors = getThemeColors(theme);

Component Helpers

import { createComponentHelpers } from '@johnqh/design-system';

const helpers = createComponentHelpers({
  baseClass: 'rounded-lg transition-colors',
  variants: {
    size: {
      sm: 'px-2 py-1 text-sm',
      md: 'px-4 py-2 text-base',
      lg: 'px-6 py-3 text-lg'
    },
    variant: {
      primary: 'bg-blue-500 text-white',
      secondary: 'bg-gray-500 text-white'
    }
  }
});

const buttonClass = helpers.getClasses({ size: 'md', variant: 'primary' });

UI Constants

import { uiConstants } from '@johnqh/design-system';

// Layout constants
uiConstants.layout.container;
uiConstants.layout.section;

// Typography constants
uiConstants.typography.heading;
uiConstants.typography.body;

// Interactive constants
uiConstants.interactive.button;
uiConstants.interactive.link;

TypeScript Support

The library includes comprehensive TypeScript definitions:

import type {
  ComponentSize,
  ComponentVariant,
  TypedVariantConfig,
  VariantResolutionResult
} from '@johnqh/design-system';

// Type-safe variant configuration
const config: TypedVariantConfig = {
  button: {
    primary: () => 'bg-blue-500 text-white',
    secondary: () => 'bg-gray-500 text-white'
  }
};

Testing

Run the test suite:

npm test                # Run tests
npm run test:ui         # Run tests with UI
npm run test:coverage   # Run tests with coverage

Development

npm run dev             # Development mode with watch
npm run build           # Build library
npm run type-check      # TypeScript type checking
npm run lint            # ESLint and TypeScript check
npm run format          # Format code with Prettier

Design Philosophy

4px Grid System

All spacing values are based on consistent 4px increments for visual harmony.

Semantic Naming

Colors and tokens use purpose-based naming (primary, secondary, success, error) rather than color names.

Dark Mode First

Full support for light and dark color schemes with automatic switching.

Component-Specific

Pre-built color combinations for common UI patterns reduce the need for custom styling.

AI-Optimized

Semantic helpers and validation functions make it easier for AI assistants to generate consistent, correct code.

License

MIT

Author

John Q Huang

Contributing

Please see CONTRIBUTING.md for contribution guidelines.

Changelog

See CHANGELOG.md for version history and updates.

Keywords

design-system

FAQs

Package last updated on 11 Oct 2025

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