Collection Hub [BRAND NAME] v1.2 Triple-Platform

System Core Strategy

"Provide a brief one-line conceptual overview of this application's user experience mission."

Describe the UX philosophy here. Why was this product built, and how does the visual aesthetic directly resolve user friction points or reinforce the brand story? Use standard visual dividers to break up text gracefully.

Brand Color Palette

Map out your visual hierarchy. Highlight brand primary anchors, system background defaults, and success/warning state accents.

#3B82F6
Brand Primary

Primary buttons, links, core focus state highlights.

#6B7280
Brand Secondary

Auxiliary elements, quiet borders, inactive states.

Typography Scale

A structured hierarchy configured in the layout engine for editorial headers and clean digital reading.

Display Header H1 (Serif)

This is a main page header

Sub-heading H3 (Serif)

This is a section subheader

Body Text (Sans-Serif)

Our core UI body text uses a highly structured sans-serif typeface, optimized for sharp digital rendering, long paragraphs, form field descriptions, and mobile layouts.

Mobile & iOS Native Layout Metrics

Core spatial configurations to align designs flawlessly with iOS Human Interface Guidelines (HIG) and cross-platform native specifications.

44pt

Minimum Touch Target

All tap gestures must span at least $44 \times 44\text{pt}$. In SwiftUI, use transparent pads with .contentShape(Rectangle()) to extend hitboxes on tiny icons.

iOS Safe Area Margins

SwiftUI handles sensor notches and home indicators natively. Avoid custom offsets; use `.safeAreaPadding()` or `.ignoresSafeArea(.container)` for immersive photo views.

SF Symbols Standard

When designing for Apple platforms, map custom icons to corresponding Apple **SF Symbols** when possible. This preserves native semantic scaling and weight compatibility.

Buttons & States

Reusable interactive triggers. Standardize focus outlines, hover states, and disabled behaviors.

Primary Button
<button class="px-6 py-2.5 bg-brand-500 hover:bg-brand-600 text-white text-sm font-medium rounded transition">
  Action Trigger
</button>

Form Inputs

Clean text blocks and selection nodes. Ensure consistent border states on keyboard selection.

Mobile UI Patterns

Pre-designed layout components specifically styled for native applications and mobile-first responsive screens.

Mobile Bottom Tab Navigator

Designed to rest cleanly at the foot of mobile screens, taking the safe area bottom spacing into account.

[ Simulated Mobile Screen Canvas ]

Design Tokens (JSON)

Standardized token output designed to align design tools directly with code components.

{
  "brand": {
    "primary": "#3B82F6",
    "primary_hover": "#2563EB",
    "background_light": "#F5F7FA"
  },
  "typography": {
    "family_sans": "Inter, sans-serif",
    "family_serif": "Merriweather, serif"
  }
}
Design tokens copied to clipboard.