571 lines
14 KiB
Bash
Executable File
571 lines
14 KiB
Bash
Executable File
#!/bin/bash
|
||
|
||
# Frontend Designer - Design System Setup
|
||
# Initialize a complete design system with tokens, components, and documentation
|
||
|
||
set -e
|
||
|
||
# Colors for output
|
||
RED='\033[0;31m'
|
||
GREEN='\033[0;32m'
|
||
YELLOW='\033[1;33m'
|
||
BLUE='\033[0;34m'
|
||
NC='\033[0m' # No Color
|
||
|
||
# Helper functions
|
||
print_success() {
|
||
echo -e "${GREEN}✓ $1${NC}"
|
||
}
|
||
|
||
print_error() {
|
||
echo -e "${RED}✗ $1${NC}"
|
||
}
|
||
|
||
print_info() {
|
||
echo -e "${BLUE}ℹ $1${NC}"
|
||
}
|
||
|
||
print_warning() {
|
||
echo -e "${YELLOW}⚠ $1${NC}"
|
||
}
|
||
|
||
prompt_input() {
|
||
local prompt="$1"
|
||
local var_name="$2"
|
||
local default="${3:-}"
|
||
|
||
echo -e "${BLUE}${prompt}${NC}"
|
||
if [ -n "$default" ]; then
|
||
echo -e "${YELLOW}(default: $default)${NC}"
|
||
fi
|
||
read -r input
|
||
|
||
if [ -z "$input" ]; then
|
||
input="$default"
|
||
fi
|
||
|
||
eval "$var_name='$input'"
|
||
}
|
||
|
||
prompt_confirm() {
|
||
local prompt="$1"
|
||
echo -e "${BLUE}${prompt} (y/n):${NC}"
|
||
read -r response
|
||
[[ "$response" =~ ^[Yy]$ ]]
|
||
}
|
||
|
||
# Banner
|
||
echo ""
|
||
echo "╔════════════════════════════════════════════════════════════╗"
|
||
echo "║ ║"
|
||
echo "║ Frontend Designer - Design System Setup ║"
|
||
echo "║ ║"
|
||
echo "╚════════════════════════════════════════════════════════════╝"
|
||
echo ""
|
||
|
||
# Configuration
|
||
print_info "Step 1/5: Project Configuration"
|
||
prompt_input "Design system name:" DS_NAME "design-system"
|
||
prompt_input "Primary brand color (hex):" PRIMARY_COLOR "#0066FF"
|
||
prompt_input "Base font size (px):" BASE_FONT_SIZE "16"
|
||
prompt_input "Output directory:" OUTPUT_DIR "./design-system"
|
||
|
||
# Create directory structure
|
||
print_info "Step 2/5: Creating Directory Structure"
|
||
mkdir -p "$OUTPUT_DIR"/{tokens,components,utilities,docs,examples}
|
||
print_success "Created directory structure"
|
||
|
||
# Generate design tokens
|
||
print_info "Step 3/5: Generating Design Tokens"
|
||
generate_design_tokens
|
||
|
||
# Generate base components
|
||
print_info "Step 4/5: Generating Base Components"
|
||
if prompt_confirm "Generate base component library?"; then
|
||
generate_base_components
|
||
fi
|
||
|
||
# Generate documentation
|
||
print_info "Step 5/5: Generating Documentation"
|
||
generate_documentation
|
||
|
||
# Summary
|
||
echo ""
|
||
echo "╔════════════════════════════════════════════════════════════╗"
|
||
echo "║ Setup Complete! ║"
|
||
echo "╚════════════════════════════════════════════════════════════╝"
|
||
echo ""
|
||
print_success "Design system created: $OUTPUT_DIR"
|
||
echo ""
|
||
print_info "Next steps:"
|
||
echo " 1. Review tokens in $OUTPUT_DIR/tokens/"
|
||
echo " 2. Customize brand colors and typography"
|
||
echo " 3. Import tokens in your app"
|
||
echo " 4. Use components from $OUTPUT_DIR/components/"
|
||
echo " 5. Read documentation in $OUTPUT_DIR/docs/"
|
||
echo ""
|
||
|
||
generate_design_tokens() {
|
||
# Color tokens
|
||
cat > "$OUTPUT_DIR/tokens/colors.css" << EOF
|
||
/**
|
||
* Color Tokens
|
||
* Generated by Frontend Designer
|
||
*/
|
||
|
||
:root {
|
||
/* Brand Colors */
|
||
--color-primary: $PRIMARY_COLOR;
|
||
--color-primary-hover: color-mix(in srgb, var(--color-primary) 85%, black);
|
||
--color-primary-active: color-mix(in srgb, var(--color-primary) 75%, black);
|
||
--color-primary-subtle: color-mix(in srgb, var(--color-primary) 10%, white);
|
||
|
||
--color-secondary: #6B7280;
|
||
--color-secondary-hover: #4B5563;
|
||
--color-secondary-subtle: #F3F4F6;
|
||
|
||
/* Semantic Colors */
|
||
--color-success: #10B981;
|
||
--color-success-hover: #059669;
|
||
--color-success-subtle: #D1FAE5;
|
||
|
||
--color-warning: #F59E0B;
|
||
--color-warning-hover: #D97706;
|
||
--color-warning-subtle: #FEF3C7;
|
||
|
||
--color-error: #EF4444;
|
||
--color-error-hover: #DC2626;
|
||
--color-error-subtle: #FEE2E2;
|
||
|
||
--color-info: #3B82F6;
|
||
--color-info-hover: #2563EB;
|
||
--color-info-subtle: #DBEAFE;
|
||
|
||
/* Neutral Colors */
|
||
--color-white: #FFFFFF;
|
||
--color-black: #000000;
|
||
|
||
--color-gray-50: #F9FAFB;
|
||
--color-gray-100: #F3F4F6;
|
||
--color-gray-200: #E5E7EB;
|
||
--color-gray-300: #D1D5DB;
|
||
--color-gray-400: #9CA3AF;
|
||
--color-gray-500: #6B7280;
|
||
--color-gray-600: #4B5563;
|
||
--color-gray-700: #374151;
|
||
--color-gray-800: #1F2937;
|
||
--color-gray-900: #111827;
|
||
|
||
/* Surface Colors */
|
||
--color-surface: var(--color-white);
|
||
--color-surface-hover: var(--color-gray-50);
|
||
--color-surface-subtle: var(--color-gray-100);
|
||
|
||
--color-background: var(--color-white);
|
||
--color-background-alt: var(--color-gray-50);
|
||
|
||
/* Text Colors */
|
||
--color-text: var(--color-gray-900);
|
||
--color-text-secondary: var(--color-gray-600);
|
||
--color-text-tertiary: var(--color-gray-400);
|
||
--color-text-inverse: var(--color-white);
|
||
|
||
/* Border Colors */
|
||
--color-border: var(--color-gray-200);
|
||
--color-border-hover: var(--color-gray-300);
|
||
--color-border-focus: var(--color-primary);
|
||
|
||
/* Focus Ring */
|
||
--color-focus: var(--color-primary);
|
||
--color-focus-ring: color-mix(in srgb, var(--color-primary) 50%, transparent);
|
||
}
|
||
|
||
/* Dark Mode */
|
||
@media (prefers-color-scheme: dark) {
|
||
:root {
|
||
--color-surface: var(--color-gray-800);
|
||
--color-surface-hover: var(--color-gray-700);
|
||
--color-surface-subtle: var(--color-gray-900);
|
||
|
||
--color-background: var(--color-gray-900);
|
||
--color-background-alt: var(--color-gray-800);
|
||
|
||
--color-text: var(--color-gray-50);
|
||
--color-text-secondary: var(--color-gray-300);
|
||
--color-text-tertiary: var(--color-gray-500);
|
||
|
||
--color-border: var(--color-gray-700);
|
||
--color-border-hover: var(--color-gray-600);
|
||
}
|
||
}
|
||
EOF
|
||
|
||
# Typography tokens
|
||
cat > "$OUTPUT_DIR/tokens/typography.css" << EOF
|
||
/**
|
||
* Typography Tokens
|
||
* Generated by Frontend Designer
|
||
*/
|
||
|
||
:root {
|
||
/* Font Families */
|
||
--font-base: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
||
--font-heading: var(--font-base);
|
||
--font-mono: "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;
|
||
|
||
/* Font Sizes - Fluid Typography */
|
||
--text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
|
||
--text-sm: clamp(0.875rem, 0.825rem + 0.25vw, 1rem);
|
||
--text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
|
||
--text-lg: clamp(1.125rem, 1.05rem + 0.375vw, 1.25rem);
|
||
--text-xl: clamp(1.25rem, 1.15rem + 0.5vw, 1.5rem);
|
||
--text-2xl: clamp(1.5rem, 1.35rem + 0.75vw, 1.875rem);
|
||
--text-3xl: clamp(1.875rem, 1.65rem + 1.125vw, 2.25rem);
|
||
--text-4xl: clamp(2.25rem, 1.95rem + 1.5vw, 3rem);
|
||
--text-5xl: clamp(3rem, 2.55rem + 2.25vw, 3.75rem);
|
||
|
||
/* Font Weights */
|
||
--font-light: 300;
|
||
--font-normal: 400;
|
||
--font-medium: 500;
|
||
--font-semibold: 600;
|
||
--font-bold: 700;
|
||
--font-extrabold: 800;
|
||
|
||
/* Line Heights */
|
||
--leading-none: 1;
|
||
--leading-tight: 1.25;
|
||
--leading-snug: 1.375;
|
||
--leading-normal: 1.5;
|
||
--leading-relaxed: 1.625;
|
||
--leading-loose: 2;
|
||
|
||
/* Letter Spacing */
|
||
--tracking-tighter: -0.05em;
|
||
--tracking-tight: -0.025em;
|
||
--tracking-normal: 0;
|
||
--tracking-wide: 0.025em;
|
||
--tracking-wider: 0.05em;
|
||
--tracking-widest: 0.1em;
|
||
}
|
||
EOF
|
||
|
||
# Spacing tokens
|
||
cat > "$OUTPUT_DIR/tokens/spacing.css" << EOF
|
||
/**
|
||
* Spacing Tokens
|
||
* Generated by Frontend Designer
|
||
*/
|
||
|
||
:root {
|
||
/* Base spacing scale */
|
||
--space-0: 0;
|
||
--space-px: 1px;
|
||
--space-0-5: 0.125rem; /* 2px */
|
||
--space-1: 0.25rem; /* 4px */
|
||
--space-1-5: 0.375rem; /* 6px */
|
||
--space-2: 0.5rem; /* 8px */
|
||
--space-2-5: 0.625rem; /* 10px */
|
||
--space-3: 0.75rem; /* 12px */
|
||
--space-3-5: 0.875rem; /* 14px */
|
||
--space-4: 1rem; /* 16px */
|
||
--space-5: 1.25rem; /* 20px */
|
||
--space-6: 1.5rem; /* 24px */
|
||
--space-7: 1.75rem; /* 28px */
|
||
--space-8: 2rem; /* 32px */
|
||
--space-9: 2.25rem; /* 36px */
|
||
--space-10: 2.5rem; /* 40px */
|
||
--space-12: 3rem; /* 48px */
|
||
--space-14: 3.5rem; /* 56px */
|
||
--space-16: 4rem; /* 64px */
|
||
--space-20: 5rem; /* 80px */
|
||
--space-24: 6rem; /* 96px */
|
||
--space-32: 8rem; /* 128px */
|
||
|
||
/* Container widths */
|
||
--container-xs: 20rem; /* 320px */
|
||
--container-sm: 24rem; /* 384px */
|
||
--container-md: 28rem; /* 448px */
|
||
--container-lg: 32rem; /* 512px */
|
||
--container-xl: 36rem; /* 576px */
|
||
--container-2xl: 42rem; /* 672px */
|
||
--container-3xl: 48rem; /* 768px */
|
||
--container-4xl: 56rem; /* 896px */
|
||
--container-5xl: 64rem; /* 1024px */
|
||
--container-6xl: 72rem; /* 1152px */
|
||
--container-7xl: 80rem; /* 1280px */
|
||
}
|
||
EOF
|
||
|
||
# Shadow tokens
|
||
cat > "$OUTPUT_DIR/tokens/shadows.css" << EOF
|
||
/**
|
||
* Shadow Tokens
|
||
* Generated by Frontend Designer
|
||
*/
|
||
|
||
:root {
|
||
/* Box Shadows */
|
||
--shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
|
||
--shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
|
||
--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
|
||
--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
|
||
--shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
|
||
--shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
|
||
|
||
/* Inner Shadow */
|
||
--shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
|
||
|
||
/* Focus Shadow */
|
||
--shadow-focus: 0 0 0 3px var(--color-focus-ring);
|
||
}
|
||
|
||
/* Dark Mode Shadows */
|
||
@media (prefers-color-scheme: dark) {
|
||
:root {
|
||
--shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.4);
|
||
--shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.5), 0 1px 2px 0 rgba(0, 0, 0, 0.4);
|
||
--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.5), 0 2px 4px -1px rgba(0, 0, 0, 0.4);
|
||
--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -2px rgba(0, 0, 0, 0.4);
|
||
--shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 10px 10px -5px rgba(0, 0, 0, 0.4);
|
||
--shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
|
||
}
|
||
}
|
||
EOF
|
||
|
||
# Border radius tokens
|
||
cat > "$OUTPUT_DIR/tokens/borders.css" << EOF
|
||
/**
|
||
* Border Tokens
|
||
* Generated by Frontend Designer
|
||
*/
|
||
|
||
:root {
|
||
/* Border Radius */
|
||
--radius-none: 0;
|
||
--radius-sm: 0.125rem; /* 2px */
|
||
--radius-md: 0.375rem; /* 6px */
|
||
--radius-lg: 0.5rem; /* 8px */
|
||
--radius-xl: 0.75rem; /* 12px */
|
||
--radius-2xl: 1rem; /* 16px */
|
||
--radius-3xl: 1.5rem; /* 24px */
|
||
--radius-full: 9999px;
|
||
|
||
/* Border Widths */
|
||
--border-0: 0;
|
||
--border-1: 1px;
|
||
--border-2: 2px;
|
||
--border-4: 4px;
|
||
--border-8: 8px;
|
||
}
|
||
EOF
|
||
|
||
# Z-index tokens
|
||
cat > "$OUTPUT_DIR/tokens/zindex.css" << EOF
|
||
/**
|
||
* Z-Index Tokens
|
||
* Generated by Frontend Designer
|
||
*/
|
||
|
||
:root {
|
||
--z-0: 0;
|
||
--z-10: 10;
|
||
--z-20: 20;
|
||
--z-30: 30;
|
||
--z-40: 40;
|
||
--z-50: 50;
|
||
|
||
/* Semantic z-index */
|
||
--z-dropdown: 1000;
|
||
--z-sticky: 1020;
|
||
--z-fixed: 1030;
|
||
--z-modal-backdrop: 1040;
|
||
--z-modal: 1050;
|
||
--z-popover: 1060;
|
||
--z-tooltip: 1070;
|
||
}
|
||
EOF
|
||
|
||
# Main tokens file
|
||
cat > "$OUTPUT_DIR/tokens/index.css" << EOF
|
||
/**
|
||
* Design Tokens - $DS_NAME
|
||
* Generated by Frontend Designer
|
||
*
|
||
* Import this file in your app to use all design tokens
|
||
*/
|
||
|
||
@import './colors.css';
|
||
@import './typography.css';
|
||
@import './spacing.css';
|
||
@import './shadows.css';
|
||
@import './borders.css';
|
||
@import './zindex.css';
|
||
|
||
/* Base Reset */
|
||
*,
|
||
*::before,
|
||
*::after {
|
||
box-sizing: border-box;
|
||
}
|
||
|
||
* {
|
||
margin: 0;
|
||
}
|
||
|
||
html {
|
||
font-size: ${BASE_FONT_SIZE}px;
|
||
-webkit-font-smoothing: antialiased;
|
||
-moz-osx-font-smoothing: grayscale;
|
||
}
|
||
|
||
body {
|
||
font-family: var(--font-base);
|
||
font-size: var(--text-base);
|
||
line-height: var(--leading-normal);
|
||
color: var(--color-text);
|
||
background-color: var(--color-background);
|
||
}
|
||
|
||
/* Accessibility */
|
||
:focus-visible {
|
||
outline: 2px solid var(--color-focus);
|
||
outline-offset: 2px;
|
||
}
|
||
|
||
/* Reduced Motion */
|
||
@media (prefers-reduced-motion: reduce) {
|
||
*,
|
||
*::before,
|
||
*::after {
|
||
animation-duration: 0.01ms !important;
|
||
animation-iteration-count: 1 !important;
|
||
transition-duration: 0.01ms !important;
|
||
}
|
||
}
|
||
EOF
|
||
|
||
print_success "Generated design tokens"
|
||
}
|
||
|
||
generate_base_components() {
|
||
# This would generate base components
|
||
# For now, just create placeholder
|
||
cat > "$OUTPUT_DIR/components/README.md" << EOF
|
||
# Components
|
||
|
||
Base component library for $DS_NAME.
|
||
|
||
## Usage
|
||
|
||
Import components from this directory:
|
||
|
||
\`\`\`tsx
|
||
import { Button } from './components/Button';
|
||
import { Card } from './components/Card';
|
||
\`\`\`
|
||
|
||
## Available Components
|
||
|
||
- Button (multiple variants and sizes)
|
||
- Card (container component)
|
||
- Input (form input with validation)
|
||
- Modal (accessible dialog)
|
||
- Dropdown (accessible select)
|
||
|
||
Generate components using:
|
||
|
||
\`\`\`bash
|
||
./scripts/generate_component.sh
|
||
\`\`\`
|
||
EOF
|
||
|
||
print_success "Created components directory"
|
||
}
|
||
|
||
generate_documentation() {
|
||
cat > "$OUTPUT_DIR/docs/README.md" << EOF
|
||
# $DS_NAME Documentation
|
||
|
||
Complete design system documentation and guidelines.
|
||
|
||
## Getting Started
|
||
|
||
1. **Install design tokens**
|
||
|
||
\`\`\`css
|
||
@import 'design-system/tokens/index.css';
|
||
\`\`\`
|
||
|
||
2. **Use design tokens**
|
||
|
||
\`\`\`css
|
||
.my-component {
|
||
color: var(--color-primary);
|
||
padding: var(--space-4);
|
||
border-radius: var(--radius-md);
|
||
}
|
||
\`\`\`
|
||
|
||
3. **Import components**
|
||
|
||
\`\`\`tsx
|
||
import { Button } from 'design-system/components';
|
||
\`\`\`
|
||
|
||
## Design Tokens
|
||
|
||
### Colors
|
||
|
||
- **Brand**: \`--color-primary\`, \`--color-secondary\`
|
||
- **Semantic**: \`--color-success\`, \`--color-warning\`, \`--color-error\`
|
||
- **Neutral**: \`--color-gray-*\` (50-900)
|
||
|
||
### Typography
|
||
|
||
- **Font families**: \`--font-base\`, \`--font-heading\`, \`--font-mono\`
|
||
- **Sizes**: \`--text-xs\` through \`--text-5xl\`
|
||
- **Weights**: \`--font-light\` through \`--font-extrabold\`
|
||
|
||
### Spacing
|
||
|
||
- **Scale**: \`--space-0\` through \`--space-32\`
|
||
- **Containers**: \`--container-xs\` through \`--container-7xl\`
|
||
|
||
### Shadows
|
||
|
||
- **Elevation**: \`--shadow-xs\` through \`--shadow-2xl\`
|
||
- **Focus**: \`--shadow-focus\`
|
||
|
||
### Border Radius
|
||
|
||
- **Sizes**: \`--radius-sm\` through \`--radius-3xl\`
|
||
- **Full**: \`--radius-full\` (pills/circles)
|
||
|
||
## Accessibility
|
||
|
||
This design system follows WCAG 2.1 AA guidelines:
|
||
|
||
- ✅ Color contrast ratios: 4.5:1 for text, 3:1 for UI
|
||
- ✅ Touch targets: 44x44px minimum
|
||
- ✅ Keyboard navigation support
|
||
- ✅ Focus indicators
|
||
- ✅ Reduced motion support
|
||
- ✅ Dark mode support
|
||
- ✅ High contrast mode support
|
||
|
||
## Browser Support
|
||
|
||
- Chrome (last 2 versions)
|
||
- Firefox (last 2 versions)
|
||
- Safari (last 2 versions)
|
||
- Edge (last 2 versions)
|
||
|
||
## Contributing
|
||
|
||
See CONTRIBUTING.md for contribution guidelines.
|
||
EOF
|
||
|
||
print_success "Created documentation"
|
||
}
|