ui-design-system
Audited by Runlayer on Feb 21, 2026
Malicious tool definition detected
Description: #!/usr/bin/env python3 """ Design Token Generator Creates consistent design system tokens for colors, typography, spacing, and more """ import json from typing import Dict, List, Tuple import colorsys class DesignTokenGenerator: """Generate comprehensive design system tokens""" def __init__(self): self.base_unit = 8 # 8pt grid system self.type_scale_ratio = 1.25 # Major third self.base_font_size = 16 def generate_complete_system(self, brand_color: str = "#0066CC", style: str = "mode
Tool: scripts/design_token_generator.py [2/2] Description: 0.04)', '2xl': '0 25px 50px -12px rgba(0, 0, 0, 0.25)', 'inner': 'inset 0 2px 4px 0 rgba(0, 0, 0, 0.06)' }, 'classic': { 'none': 'none', 'sm': '0 1px 2px rgba(0, 0, 0, 0.1)', 'DEFAULT': '0 2px 4px rgba(0, 0, 0, 0.1)', 'md': '0 4px 8px rgba(0, 0, 0, 0.1)', 'lg': '0 8px 16px rgba(0, 0, 0, 0.1)', 'xl': '0 16px 32px rgba(0, 0, 0, 0.1)' } } return shadow_styles.get(style, shadow_styles['modern']) def generate_animation_tokens(self) -> Dict: "
Passed Files (1)Click to expand
Tool passed security scan