시계와 사람을 포함해 슬로건('당신의 하루에 다녀가다')과 앱 콘셉트(시간
추적)를 직접 표현: 우상단 웜 화이트 시계 링(골드 10:10 바늘) + 그곳을
향해 걷는 웜 화이트 픽토그램 + 지나온 발자국 점 2개. 색 구성은 유지.
iOS·워치·워치 위젯 아이콘과 스플래시 로고 일괄 교체.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_013yKDMhuF39GVYy3FMcGHh7
44 lines
2.3 KiB
XML
44 lines
2.3 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
하루 다님 앱 로고 (원본 소스 오브 트루스) — v3
|
|
콘셉트: "당신의 하루에 다녀가다" — 하루(시계)를 향해 걸어가는 사람.
|
|
- 배경: 딥 그린 그라데이션 (#377A5B → #27573F)
|
|
- 시계: 우상단 웜 화이트 링(중심 726,292 r152 굵기 32) + 골드 시침·분침(10:10) + 골드 중심점
|
|
- 사람: 웜 화이트 걷는 픽토그램 (머리 원 + 라운드 캡 스트로크 몸통/팔/다리)
|
|
- 발자국: 사람 뒤로 이어지는 점 2개 (지나온 길, 뒤로 갈수록 작고 흐리게)
|
|
래스터화는 scratchpad/render_logo.swift (CoreGraphics, 동일 지오메트리) 사용.
|
|
이 파일의 지오메트리를 수정하면 render_logo.swift도 같이 맞출 것.
|
|
-->
|
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1024 1024" width="1024" height="1024">
|
|
<defs>
|
|
<linearGradient id="bg" x1="0" y1="0" x2="1024" y2="1024" gradientUnits="userSpaceOnUse">
|
|
<stop offset="0" stop-color="#377A5B"/>
|
|
<stop offset="1" stop-color="#27573F"/>
|
|
</linearGradient>
|
|
</defs>
|
|
|
|
<!-- 배경 -->
|
|
<rect width="1024" height="1024" fill="url(#bg)"/>
|
|
|
|
<!-- 시계 (하루) -->
|
|
<circle cx="726" cy="292" r="152" fill="none" stroke="#FAFAF6" stroke-width="32"/>
|
|
<!-- 분침 (-60° = 2시 방향), 시침 (-150° = 10시 방향) -->
|
|
<line x1="726" y1="292" x2="774" y2="208.9" stroke="#D9A621" stroke-width="26" stroke-linecap="round"/>
|
|
<line x1="726" y1="292" x2="668.8" y2="259" stroke="#D9A621" stroke-width="26" stroke-linecap="round"/>
|
|
<circle cx="726" cy="292" r="20" fill="#D9A621"/>
|
|
|
|
<!-- 사람 (다님): 시계를 향해 걷는 픽토그램 -->
|
|
<circle cx="495" cy="404" r="57" fill="#FAFAF6"/>
|
|
<g stroke="#FAFAF6" stroke-linecap="round" fill="none">
|
|
<line x1="488" y1="488" x2="458" y2="655" stroke-width="68"/>
|
|
<line x1="480" y1="519" x2="588" y2="594" stroke-width="44"/>
|
|
<line x1="480" y1="519" x2="390" y2="618" stroke-width="44"/>
|
|
<line x1="458" y1="655" x2="581" y2="814" stroke-width="48"/>
|
|
<line x1="458" y1="655" x2="341" y2="825" stroke-width="48"/>
|
|
</g>
|
|
|
|
<!-- 발자국 (지나온 길) -->
|
|
<circle cx="250" cy="886" r="18" fill="#FAFAF6" fill-opacity="0.75"/>
|
|
<circle cx="166" cy="922" r="13" fill="#FAFAF6" fill-opacity="0.45"/>
|
|
</svg>
|