# Time SVG Creator — Reference ## SVG Template ```svg Dubai Time {{TIME}} {{TIMEZONE}} Dubai, UAE {{DATE}} ``` ### Placeholders | Placeholder | Replace with | Example | |-------------|-------------|---------| | `{{TIME}}` | The `time` value from input | `14:30:45` | | `{{TIMEZONE}}` | The `timezone` value from input | `GST (UTC+4)` | | `{{DATE}}` | Date extracted from `formatted` (first 10 chars) | `2026-03-12` | | `{{FORMATTED}}` | The full `formatted` string (used in markdown only) | `2026-03-12 14:30:45 +04` | ### Design Specs | Property | Value | |----------|-------| | Dimensions | 400 x 250 px | | Corner radius | 16 px | | Background | Linear gradient: `#0a1628` → `#1a2744` (deep navy to dark blue) | | Title | `#8892b0` (muted blue), 16px semibold | | Time display | `#ffffff` (white), 52px bold | | Timezone | `#64ffda` (teal accent), 16px | | Location | `#ccd6f6` (light blue), 14px | | Date | `#8892b0` (muted blue), 12px | | Font | `sans-serif` | | All text | Centered (`text-anchor="middle"` at x=200) | --- ## Output Markdown Template ```markdown # Dubai Time Card - **Time**: {{TIME}} - **Timezone**: {{TIMEZONE}} - **Date**: {{DATE}} - **Full**: {{FORMATTED}} - **SVG**: `agent-teams/output/dubai-time.svg` Generated by time-svg-creator skill. ``` --- ## Output Paths | File | Path | |------|------| | SVG card | `agent-teams/output/dubai-time.svg` | | Markdown summary | `agent-teams/output/output.md` |