---
code: "SCH-27"
id: "c-sch-wireframe"
tab: "schemas"
kind: "schema"
title: "Wireframe · 화면 레이아웃"
library: "SVG"
deps: ["svg"]
load: "low"
pasteKind: "schema-svg"
family: "layout"
dataShape: "5-cell diagram with 화면 영역분할 axis"
tasks: ["structure ideas", "explain process", "choose communication frame"]
tags: ["layout", "화면 영역분할", "5cells", "Wireframe", "UI", "레이아웃", "반응형"]
gallery: "https://graph.heal7.com/#SCH-27"
js: "/sku/SCH-27.js"
---

# [SCH-27] Wireframe · 화면 레이아웃

> AI 붙여넣기 카드. 갤러리 런타임(`main.js`)이 아니라 이 파일을 가져와라.

## 언제 가져가나
화면 영역 분할 기본형 — Header/Sidebar/Content/Aside/Footer 5영역.

**응용** 화면 와이어프레임, UI 영역 정책, 반응형 그리드 설계.

## 데이터 모양
- family: `layout`
- dataShape: 5-cell diagram with 화면 영역분할 axis
- tasks: structure ideas, explain process, choose communication frame
- tags: layout, 화면 영역분할, 5cells, Wireframe, UI, 레이아웃, 반응형

- schema.type: `layout`
- schema.cells: `5`
- schema.axis: `화면 영역분할`


## 의존
svg · load `low` · library `SVG`

## 붙여넣는 법
1. 라이브러리 없음. svg viewBox 0 0 400 240
2. 아래 body 를 svg 안에 넣는다
3. 색 변수(`${gold}` 등)는 T 토큰으로 치환한다

```js
const T = {
  "bg": "transparent",
  "fg": "#ece8f5",
  "sub": "#a59bbd",
  "grid": "rgba(255,255,255,.08)",
  "gold": "#e8c069",
  "royal": "#6b8cff",
  "rose": "#e07a9f",
  "teal": "#6dd2c4",
  "plum": "#b487e8"
};
const gold = T.gold, royal = T.royal, rose = T.rose, teal = T.teal, plum = T.plum, fg = T.fg, sub = T.sub;
const stroke = 'rgba(255,255,255,.18)';
const fill1 = 'rgba(232,192,105,.10)';
const fill2 = 'rgba(107,140,255,.10)';
const host = document.querySelector('#chart');
const body = `
    <rect x="20" y="20" width="360" height="32" rx="4" fill="rgba(232,192,105,.16)" stroke="${gold}" stroke-width="1.5"/>
    <text x="200" y="40" text-anchor="middle" fill="${gold}" font-size="11" font-weight="700">Header / Nav</text>
    <rect x="20" y="62" width="80" height="120" rx="4" fill="rgba(107,140,255,.12)" stroke="${royal}" stroke-width="1.5"/>
    <text x="60" y="125" text-anchor="middle" fill="${fg}" font-size="11" font-weight="600">Sidebar</text>
    <rect x="110" y="62" width="200" height="120" rx="4" fill="rgba(255,255,255,.05)" stroke="${stroke}" stroke-width="1.5" stroke-dasharray="4 4"/>
    <text x="210" y="105" text-anchor="middle" fill="${fg}" font-size="13" font-weight="700">Content</text>
    <text x="210" y="128" text-anchor="middle" fill="${sub}" font-size="10">메인 콘텐츠 영역</text>
    <rect x="320" y="62" width="60" height="120" rx="4" fill="rgba(180,135,232,.12)" stroke="${plum}" stroke-width="1.5"/>
    <text x="350" y="125" text-anchor="middle" fill="${fg}" font-size="10" font-weight="600">Aside</text>
    <rect x="20" y="192" width="360" height="28" rx="4" fill="rgba(255,255,255,.04)" stroke="${stroke}" stroke-width="1.5"/>
    <text x="200" y="210" text-anchor="middle" fill="${sub}" font-size="11" font-weight="600">Footer</text>
  `;
host.innerHTML = '<svg viewBox="0 0 400 240" width="100%" height="100%" preserveAspectRatio="xMidYMid meet" style="overflow:visible">' + (typeof body === 'string' ? body : '') + '</svg>';
```

## 원본 factory (갤러리 정본 발췌)
- file: `frontend/js/graph-gallery/main.js`
- lines: 3911-4470
- gallery: https://graph.heal7.com/#SCH-27
- raw js: https://graph.heal7.com/sku/SCH-27.js

```js
`
    <rect x="20" y="20" width="360" height="32" rx="4" fill="rgba(232,192,105,.16)" stroke="${gold}" stroke-width="1.5"/>
    <text x="200" y="40" text-anchor="middle" fill="${gold}" font-size="11" font-weight="700">Header / Nav</text>
    <rect x="20" y="62" width="80" height="120" rx="4" fill="rgba(107,140,255,.12)" stroke="${royal}" stroke-width="1.5"/>
    <text x="60" y="125" text-anchor="middle" fill="${fg}" font-size="11" font-weight="600">Sidebar</text>
    <rect x="110" y="62" width="200" height="120" rx="4" fill="rgba(255,255,255,.05)" stroke="${stroke}" stroke-width="1.5" stroke-dasharray="4 4"/>
    <text x="210" y="105" text-anchor="middle" fill="${fg}" font-size="13" font-weight="700">Content</text>
    <text x="210" y="128" text-anchor="middle" fill="${sub}" font-size="10">메인 콘텐츠 영역</text>
    <rect x="320" y="62" width="60" height="120" rx="4" fill="rgba(180,135,232,.12)" stroke="${plum}" stroke-width="1.5"/>
    <text x="350" y="125" text-anchor="middle" fill="${fg}" font-size="10" font-weight="600">Aside</text>
    <rect x="20" y="192" width="360" height="28" rx="4" fill="rgba(255,255,255,.04)" stroke="${stroke}" stroke-width="1.5"/>
    <text x="200" y="210" text-anchor="middle" fill="${sub}" font-size="11" font-weight="600">Footer</text>
  `
```

## 시나리오
- 웹 와이어프레임
- 앱 화면 영역 정책
- 반응형 그리드 설계
- 관리자 대시보드 레이아웃

## 관련 SKU
`c-sch-quad`, `c-sch-9block`

