logo.html 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1">
  6. <title>Sprint Planner — Logo concepts</title>
  7. <style>
  8. :root {
  9. --light-bg: #ffffff;
  10. --light-fg: #0f172a;
  11. --dark-bg: #0b1020;
  12. --dark-fg: #e2e8f0;
  13. --page-bg: #f1f5f9;
  14. --page-fg: #0f172a;
  15. --page-mute: #64748b;
  16. --page-card: #ffffff;
  17. --page-line: #e2e8f0;
  18. }
  19. @media (prefers-color-scheme: dark) {
  20. :root {
  21. --page-bg: #060912;
  22. --page-fg: #e2e8f0;
  23. --page-mute: #94a3b8;
  24. --page-card: #0d1424;
  25. --page-line: #1e293b;
  26. }
  27. }
  28. * { box-sizing: border-box; }
  29. html, body { margin: 0; padding: 0; }
  30. body {
  31. background: var(--page-bg);
  32. color: var(--page-fg);
  33. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  34. line-height: 1.5;
  35. padding: 32px clamp(16px, 4vw, 48px) 64px;
  36. }
  37. header {
  38. max-width: 1200px;
  39. margin: 0 auto 28px;
  40. }
  41. h1 {
  42. margin: 0 0 6px;
  43. font-size: clamp(22px, 3vw, 30px);
  44. letter-spacing: -0.01em;
  45. }
  46. header p {
  47. margin: 0;
  48. color: var(--page-mute);
  49. font-size: 14px;
  50. max-width: 70ch;
  51. }
  52. code {
  53. background: var(--page-card);
  54. border: 1px solid var(--page-line);
  55. padding: 1px 6px;
  56. border-radius: 4px;
  57. font-size: 12px;
  58. font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  59. }
  60. main {
  61. max-width: 1200px;
  62. margin: 0 auto;
  63. display: grid;
  64. gap: 20px;
  65. }
  66. .card {
  67. background: var(--page-card);
  68. border: 1px solid var(--page-line);
  69. border-radius: 14px;
  70. overflow: hidden;
  71. }
  72. .card-header {
  73. padding: 14px 18px;
  74. border-bottom: 1px solid var(--page-line);
  75. display: flex;
  76. align-items: baseline;
  77. justify-content: space-between;
  78. gap: 12px;
  79. flex-wrap: wrap;
  80. }
  81. .card-header h2 {
  82. margin: 0;
  83. font-size: 15px;
  84. font-weight: 600;
  85. }
  86. .card-header .meta {
  87. font-size: 12px;
  88. color: var(--page-mute);
  89. font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  90. }
  91. .panes {
  92. display: grid;
  93. grid-template-columns: 1fr 1fr;
  94. }
  95. .pane {
  96. padding: 28px 20px;
  97. display: flex;
  98. align-items: center;
  99. justify-content: space-around;
  100. gap: 16px;
  101. flex-wrap: wrap;
  102. }
  103. .pane.light {
  104. background: var(--light-bg);
  105. color: var(--light-fg);
  106. }
  107. .pane.dark {
  108. background: var(--dark-bg);
  109. color: var(--dark-fg);
  110. border-left: 1px solid var(--page-line);
  111. }
  112. @media (max-width: 640px) {
  113. .panes { grid-template-columns: 1fr; }
  114. .pane.dark { border-left: none; border-top: 1px solid var(--page-line); }
  115. }
  116. .sample {
  117. display: flex;
  118. flex-direction: column;
  119. align-items: center;
  120. gap: 8px;
  121. min-width: 0;
  122. }
  123. .sample svg {
  124. display: block;
  125. }
  126. .sample .label {
  127. font-size: 11px;
  128. font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  129. opacity: 0.55;
  130. }
  131. .wordmark {
  132. display: inline-flex;
  133. align-items: center;
  134. gap: 10px;
  135. font-weight: 600;
  136. letter-spacing: -0.01em;
  137. font-size: 18px;
  138. }
  139. .wordmark .name { line-height: 1; }
  140. .wordmark .name small {
  141. display: block;
  142. font-size: 10px;
  143. letter-spacing: 0.08em;
  144. text-transform: uppercase;
  145. font-weight: 500;
  146. opacity: 0.55;
  147. margin-top: 2px;
  148. }
  149. footer {
  150. max-width: 1200px;
  151. margin: 32px auto 0;
  152. color: var(--page-mute);
  153. font-size: 12px;
  154. }
  155. </style>
  156. </head>
  157. <body>
  158. <!-- Hidden symbol library — each <symbol> is the body of one .svg file.
  159. Inline use of <symbol> + <use> lets the surrounding pane's CSS `color`
  160. cascade into the SVG, so currentColor flips per-pane. -->
  161. <svg width="0" height="0" style="position:absolute" aria-hidden="true">
  162. <defs>
  163. <symbol id="logo-1" viewBox="0 0 64 64">
  164. <rect x="6" y="12" width="15" height="40" rx="3" stroke="currentColor" stroke-width="2.5" fill="none"/>
  165. <rect x="24.5" y="12" width="15" height="40" rx="3" stroke="currentColor" stroke-width="2.5" fill="none"/>
  166. <rect x="43" y="12" width="15" height="40" rx="3" stroke="currentColor" stroke-width="2.5" fill="none"/>
  167. <rect x="9" y="17" width="9" height="4.5" rx="1.2" fill="#6366f1"/>
  168. <rect x="9" y="25" width="9" height="4.5" rx="1.2" fill="currentColor" opacity="0.35"/>
  169. <rect x="9" y="33" width="9" height="4.5" rx="1.2" fill="currentColor" opacity="0.35"/>
  170. <rect x="27.5" y="17" width="9" height="4.5" rx="1.2" fill="#6366f1"/>
  171. <rect x="27.5" y="25" width="9" height="4.5" rx="1.2" fill="#6366f1"/>
  172. <rect x="27.5" y="33" width="9" height="4.5" rx="1.2" fill="currentColor" opacity="0.35"/>
  173. <rect x="46" y="17" width="9" height="4.5" rx="1.2" fill="#10b981"/>
  174. <rect x="46" y="25" width="9" height="4.5" rx="1.2" fill="#10b981"/>
  175. <rect x="46" y="33" width="9" height="4.5" rx="1.2" fill="#10b981"/>
  176. </symbol>
  177. <symbol id="logo-2" viewBox="0 0 64 64">
  178. <line x1="6" y1="46" x2="22" y2="46" stroke="currentColor" stroke-width="2" stroke-linecap="round" opacity="0.35"/>
  179. <line x1="10" y1="52" x2="28" y2="52" stroke="currentColor" stroke-width="2" stroke-linecap="round" opacity="0.2"/>
  180. <path d="M14 32 L30 16 L34 20 L22 32 L34 44 L30 48 Z" fill="currentColor" opacity="0.45"/>
  181. <path d="M28 32 L44 16 L48 20 L36 32 L48 44 L44 48 Z" fill="currentColor"/>
  182. <path d="M42 32 L58 16 L62 20 L50 32 L62 44 L58 48 Z" fill="#6366f1"/>
  183. </symbol>
  184. <symbol id="logo-3" viewBox="0 0 64 64">
  185. <path d="M52 32 A20 20 0 1 1 32 12" stroke="currentColor" stroke-width="3.5" stroke-linecap="round" fill="none"/>
  186. <path d="M44 8 L52 12 L48 20" stroke="currentColor" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round" fill="none"/>
  187. <circle cx="32" cy="32" r="5" fill="#6366f1"/>
  188. <circle cx="48" cy="20" r="2.5" fill="currentColor" opacity="0.55"/>
  189. <circle cx="52" cy="40" r="2.5" fill="currentColor" opacity="0.55"/>
  190. <circle cx="40" cy="50" r="2.5" fill="currentColor" opacity="0.55"/>
  191. <circle cx="20" cy="48" r="2.5" fill="currentColor" opacity="0.55"/>
  192. <circle cx="14" cy="32" r="2.5" fill="#10b981"/>
  193. </symbol>
  194. <symbol id="logo-4" viewBox="0 0 64 64">
  195. <rect x="8" y="12" width="48" height="44" rx="4" stroke="currentColor" stroke-width="2.5" fill="none"/>
  196. <path d="M8 24 H56" stroke="currentColor" stroke-width="2.5" fill="none"/>
  197. <line x1="20" y1="8" x2="20" y2="18" stroke="currentColor" stroke-width="3" stroke-linecap="round"/>
  198. <line x1="44" y1="8" x2="44" y2="18" stroke="currentColor" stroke-width="3" stroke-linecap="round"/>
  199. <rect x="14" y="30" width="6" height="6" rx="1" fill="currentColor" opacity="0.35"/>
  200. <rect x="23" y="30" width="6" height="6" rx="1" fill="currentColor" opacity="0.35"/>
  201. <rect x="32" y="30" width="6" height="6" rx="1" fill="#6366f1"/>
  202. <rect x="41" y="30" width="6" height="6" rx="1" fill="currentColor" opacity="0.35"/>
  203. <rect x="14" y="40" width="6" height="6" rx="1" fill="currentColor" opacity="0.35"/>
  204. <rect x="23" y="40" width="6" height="6" rx="1" fill="#6366f1"/>
  205. <rect x="32" y="40" width="6" height="6" rx="1" fill="#6366f1"/>
  206. <rect x="41" y="40" width="6" height="6" rx="1" fill="#10b981"/>
  207. <path d="M33 43.5 L36 46.5 L41 41" stroke="#fff" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round" fill="none"/>
  208. </symbol>
  209. <symbol id="logo-5" viewBox="0 0 64 64">
  210. <rect x="4" y="4" width="56" height="56" rx="12" fill="#6366f1"/>
  211. <path d="M28 18 H18 a4 4 0 0 0 -4 4 v4 a4 4 0 0 0 4 4 h6 a4 4 0 0 1 4 4 v4 a4 4 0 0 1 -4 4 H14"
  212. stroke="#fff" stroke-width="3.2" stroke-linecap="round" stroke-linejoin="round" fill="none"/>
  213. <path d="M34 46 V18 h10 a7 7 0 0 1 0 14 H34"
  214. stroke="#fff" stroke-width="3.2" stroke-linecap="round" stroke-linejoin="round" fill="none"/>
  215. <circle cx="50" cy="46" r="3" fill="#10b981"/>
  216. </symbol>
  217. </defs>
  218. </svg>
  219. <header>
  220. <h1>Sprint Planner — logo concepts</h1>
  221. <p>Five SVG marks rendered against a light and a dark panel. The primary strokes use <code>currentColor</code> so they invert with the surrounding theme; the indigo and emerald accents are picked to hold contrast on both backgrounds. The standalone <code>.svg</code> files include a <code>svg:root</code> + <code>prefers-color-scheme</code> block so they also adapt when used as a favicon, in a README, or otherwise displayed on their own.</p>
  222. </header>
  223. <main>
  224. <section class="card">
  225. <div class="card-header">
  226. <h2>1 — Kanban board</h2>
  227. <span class="meta">logo-1-kanban.svg</span>
  228. </div>
  229. <div class="panes">
  230. <div class="pane light">
  231. <div class="sample"><svg width="96" height="96"><use href="#logo-1"/></svg><span class="label">96 px</span></div>
  232. <div class="sample"><svg width="48" height="48"><use href="#logo-1"/></svg><span class="label">48 px</span></div>
  233. <div class="sample">
  234. <span class="wordmark">
  235. <svg width="32" height="32"><use href="#logo-1"/></svg>
  236. <span class="name">Sprint Planner<small>Kanban</small></span>
  237. </span>
  238. <span class="label">wordmark</span>
  239. </div>
  240. </div>
  241. <div class="pane dark">
  242. <div class="sample"><svg width="96" height="96"><use href="#logo-1"/></svg><span class="label">96 px</span></div>
  243. <div class="sample"><svg width="48" height="48"><use href="#logo-1"/></svg><span class="label">48 px</span></div>
  244. <div class="sample">
  245. <span class="wordmark">
  246. <svg width="32" height="32"><use href="#logo-1"/></svg>
  247. <span class="name">Sprint Planner<small>Kanban</small></span>
  248. </span>
  249. <span class="label">wordmark</span>
  250. </div>
  251. </div>
  252. </div>
  253. </section>
  254. <section class="card">
  255. <div class="card-header">
  256. <h2>2 — Sprint arrow</h2>
  257. <span class="meta">logo-2-sprint.svg</span>
  258. </div>
  259. <div class="panes">
  260. <div class="pane light">
  261. <div class="sample"><svg width="96" height="96"><use href="#logo-2"/></svg><span class="label">96 px</span></div>
  262. <div class="sample"><svg width="48" height="48"><use href="#logo-2"/></svg><span class="label">48 px</span></div>
  263. <div class="sample">
  264. <span class="wordmark">
  265. <svg width="32" height="32"><use href="#logo-2"/></svg>
  266. <span class="name">Sprint Planner<small>Velocity</small></span>
  267. </span>
  268. <span class="label">wordmark</span>
  269. </div>
  270. </div>
  271. <div class="pane dark">
  272. <div class="sample"><svg width="96" height="96"><use href="#logo-2"/></svg><span class="label">96 px</span></div>
  273. <div class="sample"><svg width="48" height="48"><use href="#logo-2"/></svg><span class="label">48 px</span></div>
  274. <div class="sample">
  275. <span class="wordmark">
  276. <svg width="32" height="32"><use href="#logo-2"/></svg>
  277. <span class="name">Sprint Planner<small>Velocity</small></span>
  278. </span>
  279. <span class="label">wordmark</span>
  280. </div>
  281. </div>
  282. </div>
  283. </section>
  284. <section class="card">
  285. <div class="card-header">
  286. <h2>3 — Sprint cycle</h2>
  287. <span class="meta">logo-3-cycle.svg</span>
  288. </div>
  289. <div class="panes">
  290. <div class="pane light">
  291. <div class="sample"><svg width="96" height="96"><use href="#logo-3"/></svg><span class="label">96 px</span></div>
  292. <div class="sample"><svg width="48" height="48"><use href="#logo-3"/></svg><span class="label">48 px</span></div>
  293. <div class="sample">
  294. <span class="wordmark">
  295. <svg width="32" height="32"><use href="#logo-3"/></svg>
  296. <span class="name">Sprint Planner<small>Iterate</small></span>
  297. </span>
  298. <span class="label">wordmark</span>
  299. </div>
  300. </div>
  301. <div class="pane dark">
  302. <div class="sample"><svg width="96" height="96"><use href="#logo-3"/></svg><span class="label">96 px</span></div>
  303. <div class="sample"><svg width="48" height="48"><use href="#logo-3"/></svg><span class="label">48 px</span></div>
  304. <div class="sample">
  305. <span class="wordmark">
  306. <svg width="32" height="32"><use href="#logo-3"/></svg>
  307. <span class="name">Sprint Planner<small>Iterate</small></span>
  308. </span>
  309. <span class="label">wordmark</span>
  310. </div>
  311. </div>
  312. </div>
  313. </section>
  314. <section class="card">
  315. <div class="card-header">
  316. <h2>4 — Planner calendar</h2>
  317. <span class="meta">logo-4-calendar.svg</span>
  318. </div>
  319. <div class="panes">
  320. <div class="pane light">
  321. <div class="sample"><svg width="96" height="96"><use href="#logo-4"/></svg><span class="label">96 px</span></div>
  322. <div class="sample"><svg width="48" height="48"><use href="#logo-4"/></svg><span class="label">48 px</span></div>
  323. <div class="sample">
  324. <span class="wordmark">
  325. <svg width="32" height="32"><use href="#logo-4"/></svg>
  326. <span class="name">Sprint Planner<small>Schedule</small></span>
  327. </span>
  328. <span class="label">wordmark</span>
  329. </div>
  330. </div>
  331. <div class="pane dark">
  332. <div class="sample"><svg width="96" height="96"><use href="#logo-4"/></svg><span class="label">96 px</span></div>
  333. <div class="sample"><svg width="48" height="48"><use href="#logo-4"/></svg><span class="label">48 px</span></div>
  334. <div class="sample">
  335. <span class="wordmark">
  336. <svg width="32" height="32"><use href="#logo-4"/></svg>
  337. <span class="name">Sprint Planner<small>Schedule</small></span>
  338. </span>
  339. <span class="label">wordmark</span>
  340. </div>
  341. </div>
  342. </div>
  343. </section>
  344. <section class="card">
  345. <div class="card-header">
  346. <h2>5 — SP monogram</h2>
  347. <span class="meta">logo-5-monogram.svg</span>
  348. </div>
  349. <div class="panes">
  350. <div class="pane light">
  351. <div class="sample"><svg width="96" height="96"><use href="#logo-5"/></svg><span class="label">96 px</span></div>
  352. <div class="sample"><svg width="48" height="48"><use href="#logo-5"/></svg><span class="label">48 px</span></div>
  353. <div class="sample">
  354. <span class="wordmark">
  355. <svg width="32" height="32"><use href="#logo-5"/></svg>
  356. <span class="name">Sprint Planner<small>Monogram</small></span>
  357. </span>
  358. <span class="label">wordmark</span>
  359. </div>
  360. </div>
  361. <div class="pane dark">
  362. <div class="sample"><svg width="96" height="96"><use href="#logo-5"/></svg><span class="label">96 px</span></div>
  363. <div class="sample"><svg width="48" height="48"><use href="#logo-5"/></svg><span class="label">48 px</span></div>
  364. <div class="sample">
  365. <span class="wordmark">
  366. <svg width="32" height="32"><use href="#logo-5"/></svg>
  367. <span class="name">Sprint Planner<small>Monogram</small></span>
  368. </span>
  369. <span class="label">wordmark</span>
  370. </div>
  371. </div>
  372. </div>
  373. </section>
  374. </main>
  375. <footer>
  376. Open this file directly in a browser. The page itself follows your system theme; each card always shows a light and a dark sample so you can compare the mark in either context.
  377. </footer>
  378. </body>
  379. </html>