logo.html 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410
  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. <radialGradient id="cycle-glow" cx="32" cy="32" r="20" gradientUnits="userSpaceOnUse">
  186. <stop offset="0" stop-color="#6366f1" stop-opacity="0.55"/>
  187. <stop offset="0.6" stop-color="#6366f1" stop-opacity="0.12"/>
  188. <stop offset="1" stop-color="#6366f1" stop-opacity="0"/>
  189. </radialGradient>
  190. <circle cx="32" cy="32" r="20" fill="url(#cycle-glow)"/>
  191. <path d="M52 32 A20 20 0 1 1 32 12" stroke="currentColor" stroke-width="3.5" stroke-linecap="round" fill="none"/>
  192. <path d="M44 8 L52 12 L48 20" stroke="currentColor" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round" fill="none"/>
  193. <circle cx="32" cy="32" r="5" fill="#6366f1"/>
  194. <circle cx="48" cy="20" r="2.5" fill="currentColor" opacity="0.55"/>
  195. <circle cx="52" cy="40" r="2.5" fill="currentColor" opacity="0.55"/>
  196. <circle cx="40" cy="50" r="2.5" fill="currentColor" opacity="0.55"/>
  197. <circle cx="20" cy="48" r="2.5" fill="currentColor" opacity="0.55"/>
  198. <circle cx="14" cy="32" r="2.5" fill="#10b981"/>
  199. </symbol>
  200. <symbol id="logo-4" viewBox="0 0 64 64">
  201. <rect x="8" y="12" width="48" height="44" rx="4" stroke="currentColor" stroke-width="2.5" fill="none"/>
  202. <path d="M8 24 H56" stroke="currentColor" stroke-width="2.5" fill="none"/>
  203. <line x1="20" y1="8" x2="20" y2="18" stroke="currentColor" stroke-width="3" stroke-linecap="round"/>
  204. <line x1="44" y1="8" x2="44" y2="18" stroke="currentColor" stroke-width="3" stroke-linecap="round"/>
  205. <rect x="14" y="30" width="6" height="6" rx="1" fill="currentColor" opacity="0.35"/>
  206. <rect x="23" y="30" width="6" height="6" rx="1" fill="currentColor" opacity="0.35"/>
  207. <rect x="32" y="30" width="6" height="6" rx="1" fill="#6366f1"/>
  208. <rect x="41" y="30" width="6" height="6" rx="1" fill="currentColor" opacity="0.35"/>
  209. <rect x="14" y="40" width="6" height="6" rx="1" fill="currentColor" opacity="0.35"/>
  210. <rect x="23" y="40" width="6" height="6" rx="1" fill="#6366f1"/>
  211. <rect x="32" y="40" width="6" height="6" rx="1" fill="#6366f1"/>
  212. <rect x="41" y="40" width="6" height="6" rx="1" fill="#10b981"/>
  213. <path d="M33 43.5 L36 46.5 L41 41" stroke="#fff" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round" fill="none"/>
  214. </symbol>
  215. <symbol id="logo-5" viewBox="0 0 64 64">
  216. <rect x="4" y="4" width="56" height="56" rx="12" fill="#6366f1"/>
  217. <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"
  218. stroke="#fff" stroke-width="3.2" stroke-linecap="round" stroke-linejoin="round" fill="none"/>
  219. <path d="M34 46 V18 h10 a7 7 0 0 1 0 14 H34"
  220. stroke="#fff" stroke-width="3.2" stroke-linecap="round" stroke-linejoin="round" fill="none"/>
  221. <circle cx="50" cy="46" r="3" fill="#10b981"/>
  222. </symbol>
  223. </defs>
  224. </svg>
  225. <header>
  226. <h1>Sprint Planner — logo concepts</h1>
  227. <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>
  228. </header>
  229. <main>
  230. <section class="card">
  231. <div class="card-header">
  232. <h2>1 — Kanban board</h2>
  233. <span class="meta">logo-1-kanban.svg</span>
  234. </div>
  235. <div class="panes">
  236. <div class="pane light">
  237. <div class="sample"><svg width="96" height="96"><use href="#logo-1"/></svg><span class="label">96 px</span></div>
  238. <div class="sample"><svg width="48" height="48"><use href="#logo-1"/></svg><span class="label">48 px</span></div>
  239. <div class="sample">
  240. <span class="wordmark">
  241. <svg width="32" height="32"><use href="#logo-1"/></svg>
  242. <span class="name">Sprint Planner<small>Kanban</small></span>
  243. </span>
  244. <span class="label">wordmark</span>
  245. </div>
  246. </div>
  247. <div class="pane dark">
  248. <div class="sample"><svg width="96" height="96"><use href="#logo-1"/></svg><span class="label">96 px</span></div>
  249. <div class="sample"><svg width="48" height="48"><use href="#logo-1"/></svg><span class="label">48 px</span></div>
  250. <div class="sample">
  251. <span class="wordmark">
  252. <svg width="32" height="32"><use href="#logo-1"/></svg>
  253. <span class="name">Sprint Planner<small>Kanban</small></span>
  254. </span>
  255. <span class="label">wordmark</span>
  256. </div>
  257. </div>
  258. </div>
  259. </section>
  260. <section class="card">
  261. <div class="card-header">
  262. <h2>2 — Sprint arrow</h2>
  263. <span class="meta">logo-2-sprint.svg</span>
  264. </div>
  265. <div class="panes">
  266. <div class="pane light">
  267. <div class="sample"><svg width="96" height="96"><use href="#logo-2"/></svg><span class="label">96 px</span></div>
  268. <div class="sample"><svg width="48" height="48"><use href="#logo-2"/></svg><span class="label">48 px</span></div>
  269. <div class="sample">
  270. <span class="wordmark">
  271. <svg width="32" height="32"><use href="#logo-2"/></svg>
  272. <span class="name">Sprint Planner<small>Velocity</small></span>
  273. </span>
  274. <span class="label">wordmark</span>
  275. </div>
  276. </div>
  277. <div class="pane dark">
  278. <div class="sample"><svg width="96" height="96"><use href="#logo-2"/></svg><span class="label">96 px</span></div>
  279. <div class="sample"><svg width="48" height="48"><use href="#logo-2"/></svg><span class="label">48 px</span></div>
  280. <div class="sample">
  281. <span class="wordmark">
  282. <svg width="32" height="32"><use href="#logo-2"/></svg>
  283. <span class="name">Sprint Planner<small>Velocity</small></span>
  284. </span>
  285. <span class="label">wordmark</span>
  286. </div>
  287. </div>
  288. </div>
  289. </section>
  290. <section class="card">
  291. <div class="card-header">
  292. <h2>3 — Sprint cycle</h2>
  293. <span class="meta">logo-3-cycle.svg</span>
  294. </div>
  295. <div class="panes">
  296. <div class="pane light">
  297. <div class="sample"><svg width="96" height="96"><use href="#logo-3"/></svg><span class="label">96 px</span></div>
  298. <div class="sample"><svg width="48" height="48"><use href="#logo-3"/></svg><span class="label">48 px</span></div>
  299. <div class="sample">
  300. <span class="wordmark">
  301. <svg width="32" height="32"><use href="#logo-3"/></svg>
  302. <span class="name">Sprint Planner<small>Iterate</small></span>
  303. </span>
  304. <span class="label">wordmark</span>
  305. </div>
  306. </div>
  307. <div class="pane dark">
  308. <div class="sample"><svg width="96" height="96"><use href="#logo-3"/></svg><span class="label">96 px</span></div>
  309. <div class="sample"><svg width="48" height="48"><use href="#logo-3"/></svg><span class="label">48 px</span></div>
  310. <div class="sample">
  311. <span class="wordmark">
  312. <svg width="32" height="32"><use href="#logo-3"/></svg>
  313. <span class="name">Sprint Planner<small>Iterate</small></span>
  314. </span>
  315. <span class="label">wordmark</span>
  316. </div>
  317. </div>
  318. </div>
  319. </section>
  320. <section class="card">
  321. <div class="card-header">
  322. <h2>4 — Planner calendar</h2>
  323. <span class="meta">logo-4-calendar.svg</span>
  324. </div>
  325. <div class="panes">
  326. <div class="pane light">
  327. <div class="sample"><svg width="96" height="96"><use href="#logo-4"/></svg><span class="label">96 px</span></div>
  328. <div class="sample"><svg width="48" height="48"><use href="#logo-4"/></svg><span class="label">48 px</span></div>
  329. <div class="sample">
  330. <span class="wordmark">
  331. <svg width="32" height="32"><use href="#logo-4"/></svg>
  332. <span class="name">Sprint Planner<small>Schedule</small></span>
  333. </span>
  334. <span class="label">wordmark</span>
  335. </div>
  336. </div>
  337. <div class="pane dark">
  338. <div class="sample"><svg width="96" height="96"><use href="#logo-4"/></svg><span class="label">96 px</span></div>
  339. <div class="sample"><svg width="48" height="48"><use href="#logo-4"/></svg><span class="label">48 px</span></div>
  340. <div class="sample">
  341. <span class="wordmark">
  342. <svg width="32" height="32"><use href="#logo-4"/></svg>
  343. <span class="name">Sprint Planner<small>Schedule</small></span>
  344. </span>
  345. <span class="label">wordmark</span>
  346. </div>
  347. </div>
  348. </div>
  349. </section>
  350. <section class="card">
  351. <div class="card-header">
  352. <h2>5 — SP monogram</h2>
  353. <span class="meta">logo-5-monogram.svg</span>
  354. </div>
  355. <div class="panes">
  356. <div class="pane light">
  357. <div class="sample"><svg width="96" height="96"><use href="#logo-5"/></svg><span class="label">96 px</span></div>
  358. <div class="sample"><svg width="48" height="48"><use href="#logo-5"/></svg><span class="label">48 px</span></div>
  359. <div class="sample">
  360. <span class="wordmark">
  361. <svg width="32" height="32"><use href="#logo-5"/></svg>
  362. <span class="name">Sprint Planner<small>Monogram</small></span>
  363. </span>
  364. <span class="label">wordmark</span>
  365. </div>
  366. </div>
  367. <div class="pane dark">
  368. <div class="sample"><svg width="96" height="96"><use href="#logo-5"/></svg><span class="label">96 px</span></div>
  369. <div class="sample"><svg width="48" height="48"><use href="#logo-5"/></svg><span class="label">48 px</span></div>
  370. <div class="sample">
  371. <span class="wordmark">
  372. <svg width="32" height="32"><use href="#logo-5"/></svg>
  373. <span class="name">Sprint Planner<small>Monogram</small></span>
  374. </span>
  375. <span class="label">wordmark</span>
  376. </div>
  377. </div>
  378. </div>
  379. </section>
  380. </main>
  381. <footer>
  382. 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.
  383. </footer>
  384. </body>
  385. </html>