# Weather SVG Creator — Reference ## SVG Template ```svg Unit: [Celsius/Fahrenheit] [value]°[C/F] Dubai, UAE ``` ### Placeholders | Placeholder | Replace with | Example | |-------------|-------------|---------| | `[Celsius/Fahrenheit]` | Full unit name from input | `Celsius` | | `[value]` | Numeric temperature from input | `26.2` | | `[C/F]` | Unit abbreviation | `C` or `F` | ### Design Specs | Property | Value | |----------|-------| | Dimensions | 300 x 160 px | | Corner radius | 12 px | | Background | `#1a1a2e` (dark navy) | | Unit label | `#8892b0` (muted blue), 14px | | Temperature | `#ccd6f6` (light blue), 42px bold | | Location | `#64ffda` (teal accent), 16px | | Font | `system-ui` | | All text | Centered (`text-anchor="middle"` at x=150) | --- ## Output Markdown Template ```markdown # Weather Result ## Temperature [value]°[C/F] ## Location Dubai, UAE ## Unit [Celsius/Fahrenheit] ## SVG Card ![Weather Card](weather.svg) ``` --- ## Output Paths | File | Path | |------|------| | SVG card | `orchestration-workflow/weather.svg` | | Markdown summary | `orchestration-workflow/output.md` |