-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
725 lines (692 loc) · 42.2 KB
/
index.html
File metadata and controls
725 lines (692 loc) · 42.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BlockRun.ai Brand Kit</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
background: #09090b;
color: #fafafa;
padding: 60px;
min-height: 100vh;
}
h1 {
font-size: 2.5rem;
font-weight: 600;
margin-bottom: 8px;
letter-spacing: -1px;
}
.subtitle {
color: #71717a;
margin-bottom: 60px;
}
.section {
margin-bottom: 80px;
}
.section-title {
font-size: 0.7rem;
color: #3b82f6;
letter-spacing: 3px;
text-transform: uppercase;
margin-bottom: 24px;
}
.grid {
display: flex;
flex-wrap: wrap;
gap: 24px;
}
.card {
background: #18181b;
border: 1px solid #27272a;
border-radius: 20px;
padding: 30px;
display: flex;
flex-direction: column;
align-items: center;
gap: 16px;
}
.card.light {
background: #ffffff;
border-color: #e4e4e7;
}
.card.dark {
background: #000000;
}
.card.blue {
background: #2563EB;
}
.logo-box {
display: flex;
align-items: center;
justify-content: center;
}
.card-label {
font-size: 0.65rem;
color: #71717a;
letter-spacing: 1px;
}
.card.light .card-label {
color: #52525b;
}
.download-btn {
background: #2563EB;
color: white;
border: none;
padding: 8px 16px;
border-radius: 8px;
font-size: 0.75rem;
cursor: pointer;
transition: background 0.2s;
}
.download-btn:hover {
background: #1d4ed8;
}
.sizes-row {
display: flex;
align-items: flex-end;
gap: 40px;
}
.size-item {
display: flex;
flex-direction: column;
align-items: center;
gap: 12px;
}
.color-info {
display: flex;
gap: 40px;
margin-top: 20px;
}
.color-swatch {
display: flex;
align-items: center;
gap: 12px;
}
.swatch {
width: 40px;
height: 40px;
border-radius: 8px;
border: 1px solid #27272a;
}
.color-text {
font-size: 0.85rem;
}
.color-hex {
color: #71717a;
font-family: monospace;
}
.divider {
height: 1px;
background: #27272a;
margin: 60px 0;
}
footer {
text-align: center;
color: #3f3f46;
padding-top: 40px;
}
.usage-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 24px;
}
.usage-card {
background: #18181b;
border: 1px solid #27272a;
border-radius: 16px;
padding: 24px;
}
.usage-title {
font-size: 0.9rem;
font-weight: 500;
margin-bottom: 8px;
}
.usage-desc {
font-size: 0.8rem;
color: #71717a;
line-height: 1.5;
}
</style>
</head>
<body>
<h1>BlockRun.ai</h1>
<p class="subtitle">Brand Kit — Speed Block Logo</p>
<!-- PRIMARY LOGO -->
<div class="section">
<h2 class="section-title">Primary Logo</h2>
<div class="grid">
<div class="card light">
<div class="logo-box">
<svg id="logo-primary-black" width="200" height="200" viewBox="0 0 100 100" fill="none">
<rect x="30" y="20" width="55" height="60" rx="14" stroke="#000000" stroke-width="8" fill="none"/>
<path d="M15 35 L25 35" stroke="#000000" stroke-width="6" stroke-linecap="round"/>
<path d="M10 50 L25 50" stroke="#000000" stroke-width="6" stroke-linecap="round"/>
<path d="M15 65 L25 65" stroke="#000000" stroke-width="6" stroke-linecap="round"/>
</svg>
</div>
<span class="card-label">PRIMARY BLACK</span>
<button class="download-btn" onclick="downloadSVG('logo-primary-black', 'blockrun-logo-black')">Download SVG</button>
</div>
<div class="card dark">
<div class="logo-box">
<svg id="logo-primary-white" width="200" height="200" viewBox="0 0 100 100" fill="none">
<rect x="30" y="20" width="55" height="60" rx="14" stroke="#FFFFFF" stroke-width="8" fill="none"/>
<path d="M15 35 L25 35" stroke="#FFFFFF" stroke-width="6" stroke-linecap="round"/>
<path d="M10 50 L25 50" stroke="#FFFFFF" stroke-width="6" stroke-linecap="round"/>
<path d="M15 65 L25 65" stroke="#FFFFFF" stroke-width="6" stroke-linecap="round"/>
</svg>
</div>
<span class="card-label" style="color:#71717a;">PRIMARY WHITE</span>
<button class="download-btn" onclick="downloadSVG('logo-primary-white', 'blockrun-logo-white')">Download SVG</button>
</div>
</div>
</div>
<!-- SECONDARY LOGO (BLUE) -->
<div class="section">
<h2 class="section-title">Secondary Logo</h2>
<div class="grid">
<div class="card">
<div class="logo-box">
<svg id="logo-secondary-blue" width="200" height="200" viewBox="0 0 100 100" fill="none">
<rect x="30" y="20" width="55" height="60" rx="14" stroke="#2563EB" stroke-width="8" fill="none"/>
<path d="M15 35 L25 35" stroke="#2563EB" stroke-width="6" stroke-linecap="round"/>
<path d="M10 50 L25 50" stroke="#2563EB" stroke-width="6" stroke-linecap="round"/>
<path d="M15 65 L25 65" stroke="#2563EB" stroke-width="6" stroke-linecap="round"/>
</svg>
</div>
<span class="card-label">SECONDARY BLUE</span>
<button class="download-btn" onclick="downloadSVG('logo-secondary-blue', 'blockrun-logo-blue')">Download SVG</button>
</div>
</div>
</div>
<!-- WORDMARK (Logo + Company Name) -->
<div class="section">
<h2 class="section-title">Wordmark (Logo + Name)</h2>
<div class="grid">
<div class="card light" style="min-width: 360px;">
<div class="logo-box">
<svg id="wordmark-black" width="362" height="100" viewBox="0 0 362 100" fill="none">
<!-- BlockRun.ai - Wordmark (Logo + Text) - Manrope ExtraBold, outlined -->
<!-- Black on transparent -->
<rect x="30" y="20" width="55" height="60" rx="14" stroke="#000000" stroke-width="8" fill="none"/>
<path d="M15 35 L25 35" stroke="#000000" stroke-width="6" stroke-linecap="round"/>
<path d="M10 50 L25 50" stroke="#000000" stroke-width="6" stroke-linecap="round"/>
<path d="M15 65 L25 65" stroke="#000000" stroke-width="6" stroke-linecap="round"/>
<g transform="translate(105 70) scale(0.02800 -0.02800)">
<path d="M140 0V1440H716Q870 1440 965.0 1378.5Q1060 1317 1104.0 1224.0Q1148 1131 1148 1036Q1148 915 1093.5 835.0Q1039 755 944 728V778Q1079 750 1146.5 653.0Q1214 556 1214 436Q1214 307 1166.5 209.0Q1119 111 1022.0 55.5Q925 0 778 0ZM416 256H750Q805 256 848.0 279.5Q891 303 915.5 345.5Q940 388 940 446Q940 497 919.0 537.0Q898 577 855.5 600.5Q813 624 750 624H416ZM416 878H712Q758 878 794.0 894.0Q830 910 851.0 943.5Q872 977 872 1030Q872 1096 831.0 1141.0Q790 1186 712 1186H416Z" transform="translate(0.00 0)" fill="#000000"/>
<path d="M160 0V1470H432V0Z" transform="translate(1214.00 0)" fill="#000000"/>
<path d="M626 -30Q463 -30 340.0 43.0Q217 116 148.5 244.5Q80 373 80 540Q80 709 150.0 837.5Q220 966 343.0 1038.0Q466 1110 626 1110Q789 1110 912.5 1037.0Q1036 964 1105.0 835.5Q1174 707 1174 540Q1174 372 1104.5 243.5Q1035 115 911.5 42.5Q788 -30 626 -30ZM626 224Q757 224 821.5 312.5Q886 401 886 540Q886 684 820.5 770.0Q755 856 626 856Q537 856 480.0 816.0Q423 776 395.5 705.0Q368 634 368 540Q368 395 433.5 309.5Q499 224 626 224Z" transform="translate(1746.00 0)" fill="#000000"/>
<path d="M616 -30Q448 -30 328.0 45.0Q208 120 144.0 249.0Q80 378 80 540Q80 704 146.5 833.0Q213 962 334.0 1036.0Q455 1110 620 1110Q811 1110 940.5 1013.5Q1070 917 1106 750L834 678Q810 762 750.5 809.0Q691 856 616 856Q530 856 475.0 814.5Q420 773 394.0 701.5Q368 630 368 540Q368 399 430.5 311.5Q493 224 616 224Q708 224 756.0 266.0Q804 308 828 386L1106 328Q1060 156 932.0 63.0Q804 -30 616 -30Z" transform="translate(2940.00 0)" fill="#000000"/>
<path d="M138 0 140 1440H416V560L782 1080H1118L728 540L1144 0H790L416 520V0Z" transform="translate(4046.00 0)" fill="#000000"/>
<path d="M140 0V1440H748Q769 1440 804.5 1438.5Q840 1437 868 1432Q997 1412 1079.5 1347.0Q1162 1282 1201.0 1183.5Q1240 1085 1240 964Q1240 783 1150.0 654.5Q1060 526 868 496L748 488H412V0ZM952 0 668 586 948 640 1260 0ZM412 742H736Q757 742 782.0 744.0Q807 746 828 752Q883 767 913.0 802.5Q943 838 954.5 881.5Q966 925 966 964Q966 1003 954.5 1046.5Q943 1090 913.0 1125.5Q883 1161 828 1176Q807 1182 782.0 1184.0Q757 1186 736 1186H412Z" transform="translate(5090.00 0)" fill="#000000"/>
<path d="M542 -32Q415 -32 335.0 11.0Q255 54 210.5 120.0Q166 186 147.0 257.5Q128 329 124.0 388.0Q120 447 120 474V1080H396V570Q396 533 400.0 475.5Q404 418 425.0 360.0Q446 302 493.5 263.0Q541 224 628 224Q663 224 703.0 235.0Q743 246 778.0 277.5Q813 309 835.5 370.5Q858 432 858 532L1014 458Q1014 330 962.0 218.0Q910 106 805.5 37.0Q701 -32 542 -32ZM892 0V358H858V1080H1132V0Z" transform="translate(6370.00 0)" fill="#000000"/>
<path d="M876 0V510Q876 547 872.0 604.5Q868 662 847.0 720.0Q826 778 778.5 817.0Q731 856 644 856Q609 856 569.0 845.0Q529 834 494.0 802.5Q459 771 436.5 710.0Q414 649 414 548L258 622Q258 750 310.0 862.0Q362 974 466.5 1043.0Q571 1112 730 1112Q857 1112 937.0 1069.0Q1017 1026 1061.5 960.0Q1106 894 1125.0 822.5Q1144 751 1148.0 692.0Q1152 633 1152 606V0ZM138 0V1080H380V722H414V0Z" transform="translate(7582.00 0)" fill="#000000"/>
</g>
</svg>
</div>
<span class="card-label">BLACK WORDMARK</span>
<button class="download-btn" onclick="downloadSVG('wordmark-black', 'blockrun-wordmark-black')">SVG</button>
<button class="download-btn" onclick="downloadWordmarkPNG('wordmark-black', 'blockrun-wordmark-black')">PNG</button>
</div>
<div class="card dark" style="min-width: 360px;">
<div class="logo-box">
<svg id="wordmark-white" width="362" height="100" viewBox="0 0 362 100" fill="none">
<!-- BlockRun.ai - Wordmark (Logo + Text) - Manrope ExtraBold, outlined -->
<!-- White on transparent -->
<rect x="30" y="20" width="55" height="60" rx="14" stroke="#FFFFFF" stroke-width="8" fill="none"/>
<path d="M15 35 L25 35" stroke="#FFFFFF" stroke-width="6" stroke-linecap="round"/>
<path d="M10 50 L25 50" stroke="#FFFFFF" stroke-width="6" stroke-linecap="round"/>
<path d="M15 65 L25 65" stroke="#FFFFFF" stroke-width="6" stroke-linecap="round"/>
<g transform="translate(105 70) scale(0.02800 -0.02800)">
<path d="M140 0V1440H716Q870 1440 965.0 1378.5Q1060 1317 1104.0 1224.0Q1148 1131 1148 1036Q1148 915 1093.5 835.0Q1039 755 944 728V778Q1079 750 1146.5 653.0Q1214 556 1214 436Q1214 307 1166.5 209.0Q1119 111 1022.0 55.5Q925 0 778 0ZM416 256H750Q805 256 848.0 279.5Q891 303 915.5 345.5Q940 388 940 446Q940 497 919.0 537.0Q898 577 855.5 600.5Q813 624 750 624H416ZM416 878H712Q758 878 794.0 894.0Q830 910 851.0 943.5Q872 977 872 1030Q872 1096 831.0 1141.0Q790 1186 712 1186H416Z" transform="translate(0.00 0)" fill="#FFFFFF"/>
<path d="M160 0V1470H432V0Z" transform="translate(1214.00 0)" fill="#FFFFFF"/>
<path d="M626 -30Q463 -30 340.0 43.0Q217 116 148.5 244.5Q80 373 80 540Q80 709 150.0 837.5Q220 966 343.0 1038.0Q466 1110 626 1110Q789 1110 912.5 1037.0Q1036 964 1105.0 835.5Q1174 707 1174 540Q1174 372 1104.5 243.5Q1035 115 911.5 42.5Q788 -30 626 -30ZM626 224Q757 224 821.5 312.5Q886 401 886 540Q886 684 820.5 770.0Q755 856 626 856Q537 856 480.0 816.0Q423 776 395.5 705.0Q368 634 368 540Q368 395 433.5 309.5Q499 224 626 224Z" transform="translate(1746.00 0)" fill="#FFFFFF"/>
<path d="M616 -30Q448 -30 328.0 45.0Q208 120 144.0 249.0Q80 378 80 540Q80 704 146.5 833.0Q213 962 334.0 1036.0Q455 1110 620 1110Q811 1110 940.5 1013.5Q1070 917 1106 750L834 678Q810 762 750.5 809.0Q691 856 616 856Q530 856 475.0 814.5Q420 773 394.0 701.5Q368 630 368 540Q368 399 430.5 311.5Q493 224 616 224Q708 224 756.0 266.0Q804 308 828 386L1106 328Q1060 156 932.0 63.0Q804 -30 616 -30Z" transform="translate(2940.00 0)" fill="#FFFFFF"/>
<path d="M138 0 140 1440H416V560L782 1080H1118L728 540L1144 0H790L416 520V0Z" transform="translate(4046.00 0)" fill="#FFFFFF"/>
<path d="M140 0V1440H748Q769 1440 804.5 1438.5Q840 1437 868 1432Q997 1412 1079.5 1347.0Q1162 1282 1201.0 1183.5Q1240 1085 1240 964Q1240 783 1150.0 654.5Q1060 526 868 496L748 488H412V0ZM952 0 668 586 948 640 1260 0ZM412 742H736Q757 742 782.0 744.0Q807 746 828 752Q883 767 913.0 802.5Q943 838 954.5 881.5Q966 925 966 964Q966 1003 954.5 1046.5Q943 1090 913.0 1125.5Q883 1161 828 1176Q807 1182 782.0 1184.0Q757 1186 736 1186H412Z" transform="translate(5090.00 0)" fill="#FFFFFF"/>
<path d="M542 -32Q415 -32 335.0 11.0Q255 54 210.5 120.0Q166 186 147.0 257.5Q128 329 124.0 388.0Q120 447 120 474V1080H396V570Q396 533 400.0 475.5Q404 418 425.0 360.0Q446 302 493.5 263.0Q541 224 628 224Q663 224 703.0 235.0Q743 246 778.0 277.5Q813 309 835.5 370.5Q858 432 858 532L1014 458Q1014 330 962.0 218.0Q910 106 805.5 37.0Q701 -32 542 -32ZM892 0V358H858V1080H1132V0Z" transform="translate(6370.00 0)" fill="#FFFFFF"/>
<path d="M876 0V510Q876 547 872.0 604.5Q868 662 847.0 720.0Q826 778 778.5 817.0Q731 856 644 856Q609 856 569.0 845.0Q529 834 494.0 802.5Q459 771 436.5 710.0Q414 649 414 548L258 622Q258 750 310.0 862.0Q362 974 466.5 1043.0Q571 1112 730 1112Q857 1112 937.0 1069.0Q1017 1026 1061.5 960.0Q1106 894 1125.0 822.5Q1144 751 1148.0 692.0Q1152 633 1152 606V0ZM138 0V1080H380V722H414V0Z" transform="translate(7582.00 0)" fill="#FFFFFF"/>
</g>
</svg>
</div>
<span class="card-label" style="color:#71717a;">WHITE WORDMARK</span>
<button class="download-btn" onclick="downloadSVG('wordmark-white', 'blockrun-wordmark-white')">SVG</button>
<button class="download-btn" onclick="downloadWordmarkPNG('wordmark-white', 'blockrun-wordmark-white')">PNG</button>
</div>
<div class="card" style="min-width: 360px;">
<div class="logo-box">
<svg id="wordmark-blue" width="362" height="100" viewBox="0 0 362 100" fill="none">
<!-- BlockRun.ai - Wordmark (Logo + Text) - Manrope ExtraBold, outlined -->
<!-- Primary blue on transparent -->
<rect x="30" y="20" width="55" height="60" rx="14" stroke="#2563EB" stroke-width="8" fill="none"/>
<path d="M15 35 L25 35" stroke="#2563EB" stroke-width="6" stroke-linecap="round"/>
<path d="M10 50 L25 50" stroke="#2563EB" stroke-width="6" stroke-linecap="round"/>
<path d="M15 65 L25 65" stroke="#2563EB" stroke-width="6" stroke-linecap="round"/>
<g transform="translate(105 70) scale(0.02800 -0.02800)">
<path d="M140 0V1440H716Q870 1440 965.0 1378.5Q1060 1317 1104.0 1224.0Q1148 1131 1148 1036Q1148 915 1093.5 835.0Q1039 755 944 728V778Q1079 750 1146.5 653.0Q1214 556 1214 436Q1214 307 1166.5 209.0Q1119 111 1022.0 55.5Q925 0 778 0ZM416 256H750Q805 256 848.0 279.5Q891 303 915.5 345.5Q940 388 940 446Q940 497 919.0 537.0Q898 577 855.5 600.5Q813 624 750 624H416ZM416 878H712Q758 878 794.0 894.0Q830 910 851.0 943.5Q872 977 872 1030Q872 1096 831.0 1141.0Q790 1186 712 1186H416Z" transform="translate(0.00 0)" fill="#2563EB"/>
<path d="M160 0V1470H432V0Z" transform="translate(1214.00 0)" fill="#2563EB"/>
<path d="M626 -30Q463 -30 340.0 43.0Q217 116 148.5 244.5Q80 373 80 540Q80 709 150.0 837.5Q220 966 343.0 1038.0Q466 1110 626 1110Q789 1110 912.5 1037.0Q1036 964 1105.0 835.5Q1174 707 1174 540Q1174 372 1104.5 243.5Q1035 115 911.5 42.5Q788 -30 626 -30ZM626 224Q757 224 821.5 312.5Q886 401 886 540Q886 684 820.5 770.0Q755 856 626 856Q537 856 480.0 816.0Q423 776 395.5 705.0Q368 634 368 540Q368 395 433.5 309.5Q499 224 626 224Z" transform="translate(1746.00 0)" fill="#2563EB"/>
<path d="M616 -30Q448 -30 328.0 45.0Q208 120 144.0 249.0Q80 378 80 540Q80 704 146.5 833.0Q213 962 334.0 1036.0Q455 1110 620 1110Q811 1110 940.5 1013.5Q1070 917 1106 750L834 678Q810 762 750.5 809.0Q691 856 616 856Q530 856 475.0 814.5Q420 773 394.0 701.5Q368 630 368 540Q368 399 430.5 311.5Q493 224 616 224Q708 224 756.0 266.0Q804 308 828 386L1106 328Q1060 156 932.0 63.0Q804 -30 616 -30Z" transform="translate(2940.00 0)" fill="#2563EB"/>
<path d="M138 0 140 1440H416V560L782 1080H1118L728 540L1144 0H790L416 520V0Z" transform="translate(4046.00 0)" fill="#2563EB"/>
<path d="M140 0V1440H748Q769 1440 804.5 1438.5Q840 1437 868 1432Q997 1412 1079.5 1347.0Q1162 1282 1201.0 1183.5Q1240 1085 1240 964Q1240 783 1150.0 654.5Q1060 526 868 496L748 488H412V0ZM952 0 668 586 948 640 1260 0ZM412 742H736Q757 742 782.0 744.0Q807 746 828 752Q883 767 913.0 802.5Q943 838 954.5 881.5Q966 925 966 964Q966 1003 954.5 1046.5Q943 1090 913.0 1125.5Q883 1161 828 1176Q807 1182 782.0 1184.0Q757 1186 736 1186H412Z" transform="translate(5090.00 0)" fill="#2563EB"/>
<path d="M542 -32Q415 -32 335.0 11.0Q255 54 210.5 120.0Q166 186 147.0 257.5Q128 329 124.0 388.0Q120 447 120 474V1080H396V570Q396 533 400.0 475.5Q404 418 425.0 360.0Q446 302 493.5 263.0Q541 224 628 224Q663 224 703.0 235.0Q743 246 778.0 277.5Q813 309 835.5 370.5Q858 432 858 532L1014 458Q1014 330 962.0 218.0Q910 106 805.5 37.0Q701 -32 542 -32ZM892 0V358H858V1080H1132V0Z" transform="translate(6370.00 0)" fill="#2563EB"/>
<path d="M876 0V510Q876 547 872.0 604.5Q868 662 847.0 720.0Q826 778 778.5 817.0Q731 856 644 856Q609 856 569.0 845.0Q529 834 494.0 802.5Q459 771 436.5 710.0Q414 649 414 548L258 622Q258 750 310.0 862.0Q362 974 466.5 1043.0Q571 1112 730 1112Q857 1112 937.0 1069.0Q1017 1026 1061.5 960.0Q1106 894 1125.0 822.5Q1144 751 1148.0 692.0Q1152 633 1152 606V0ZM138 0V1080H380V722H414V0Z" transform="translate(7582.00 0)" fill="#2563EB"/>
</g>
</svg>
</div>
<span class="card-label">BLUE WORDMARK</span>
<button class="download-btn" onclick="downloadSVG('wordmark-blue', 'blockrun-wordmark-blue')">SVG</button>
<button class="download-btn" onclick="downloadWordmarkPNG('wordmark-blue', 'blockrun-wordmark-blue')">PNG</button>
</div>
</div>
</div>
<!-- SIZES -->
<div class="section">
<h2 class="section-title">Size Variants</h2>
<div class="card light" style="width: 100%;">
<div class="sizes-row">
<div class="size-item">
<svg width="512" height="512" viewBox="0 0 100 100" fill="none" id="size-512">
<rect x="30" y="20" width="55" height="60" rx="14" stroke="#000000" stroke-width="8" fill="none"/>
<path d="M15 35 L25 35" stroke="#000000" stroke-width="6" stroke-linecap="round"/>
<path d="M10 50 L25 50" stroke="#000000" stroke-width="6" stroke-linecap="round"/>
<path d="M15 65 L25 65" stroke="#000000" stroke-width="6" stroke-linecap="round"/>
</svg>
<span class="card-label">512px</span>
<button class="download-btn" onclick="downloadPNG('size-512', 512, 'blockrun-512')">PNG</button>
</div>
<div class="size-item">
<svg width="256" height="256" viewBox="0 0 100 100" fill="none" id="size-256">
<rect x="30" y="20" width="55" height="60" rx="14" stroke="#000000" stroke-width="8" fill="none"/>
<path d="M15 35 L25 35" stroke="#000000" stroke-width="6" stroke-linecap="round"/>
<path d="M10 50 L25 50" stroke="#000000" stroke-width="6" stroke-linecap="round"/>
<path d="M15 65 L25 65" stroke="#000000" stroke-width="6" stroke-linecap="round"/>
</svg>
<span class="card-label">256px</span>
<button class="download-btn" onclick="downloadPNG('size-256', 256, 'blockrun-256')">PNG</button>
</div>
<div class="size-item">
<svg width="128" height="128" viewBox="0 0 100 100" fill="none" id="size-128">
<rect x="30" y="20" width="55" height="60" rx="14" stroke="#000000" stroke-width="8" fill="none"/>
<path d="M15 35 L25 35" stroke="#000000" stroke-width="6" stroke-linecap="round"/>
<path d="M10 50 L25 50" stroke="#000000" stroke-width="6" stroke-linecap="round"/>
<path d="M15 65 L25 65" stroke="#000000" stroke-width="6" stroke-linecap="round"/>
</svg>
<span class="card-label">128px</span>
<button class="download-btn" onclick="downloadPNG('size-128', 128, 'blockrun-128')">PNG</button>
</div>
<div class="size-item">
<svg width="64" height="64" viewBox="0 0 100 100" fill="none" id="size-64">
<rect x="30" y="20" width="55" height="60" rx="14" stroke="#000000" stroke-width="10" fill="none"/>
<path d="M15 35 L25 35" stroke="#000000" stroke-width="8" stroke-linecap="round"/>
<path d="M10 50 L25 50" stroke="#000000" stroke-width="8" stroke-linecap="round"/>
<path d="M15 65 L25 65" stroke="#000000" stroke-width="8" stroke-linecap="round"/>
</svg>
<span class="card-label">64px</span>
<button class="download-btn" onclick="downloadPNG('size-64', 64, 'blockrun-64')">PNG</button>
</div>
<div class="size-item">
<svg width="32" height="32" viewBox="0 0 100 100" fill="none" id="size-32">
<rect x="28" y="18" width="60" height="64" rx="16" stroke="#000000" stroke-width="14" fill="none"/>
<path d="M8 50 L22 50" stroke="#000000" stroke-width="10" stroke-linecap="round"/>
</svg>
<span class="card-label">32px</span>
<button class="download-btn" onclick="downloadPNG('size-32', 32, 'blockrun-32')">PNG</button>
</div>
<div class="size-item">
<svg width="16" height="16" viewBox="0 0 100 100" fill="none" id="size-16">
<rect x="25" y="15" width="65" height="70" rx="18" stroke="#000000" stroke-width="18" fill="none"/>
</svg>
<span class="card-label">16px</span>
<button class="download-btn" onclick="downloadPNG('size-16', 16, 'blockrun-16')">PNG</button>
</div>
</div>
</div>
</div>
<div class="divider"></div>
<!-- BACKGROUND VARIANTS -->
<div class="section">
<h2 class="section-title">Background Variants</h2>
<div class="grid">
<!-- White on Dark -->
<div class="card dark">
<div class="logo-box">
<svg width="120" height="120" viewBox="0 0 100 100" fill="none" id="logo-white-dark">
<rect x="30" y="20" width="55" height="60" rx="14" stroke="#FFFFFF" stroke-width="8" fill="none"/>
<path d="M15 35 L25 35" stroke="#FFFFFF" stroke-width="6" stroke-linecap="round"/>
<path d="M10 50 L25 50" stroke="#FFFFFF" stroke-width="6" stroke-linecap="round"/>
<path d="M15 65 L25 65" stroke="#FFFFFF" stroke-width="6" stroke-linecap="round"/>
</svg>
</div>
<span class="card-label" style="color:#71717a;">WHITE ON BLACK</span>
<button class="download-btn" onclick="downloadPNGWithBg('logo-white-dark', 512, 'blockrun-white-on-black', '#000000')">PNG</button>
</div>
<!-- Black on Light -->
<div class="card light">
<div class="logo-box">
<svg width="120" height="120" viewBox="0 0 100 100" fill="none" id="logo-black-light">
<rect x="30" y="20" width="55" height="60" rx="14" stroke="#000000" stroke-width="8" fill="none"/>
<path d="M15 35 L25 35" stroke="#000000" stroke-width="6" stroke-linecap="round"/>
<path d="M10 50 L25 50" stroke="#000000" stroke-width="6" stroke-linecap="round"/>
<path d="M15 65 L25 65" stroke="#000000" stroke-width="6" stroke-linecap="round"/>
</svg>
</div>
<span class="card-label">BLACK ON WHITE</span>
<button class="download-btn" onclick="downloadPNGWithBg('logo-black-light', 512, 'blockrun-black-on-white', '#FFFFFF')">PNG</button>
</div>
<!-- White on Blue -->
<div class="card blue">
<div class="logo-box">
<svg width="120" height="120" viewBox="0 0 100 100" fill="none" id="logo-white-blue">
<rect x="30" y="20" width="55" height="60" rx="14" stroke="#FFFFFF" stroke-width="8" fill="none"/>
<path d="M15 35 L25 35" stroke="#FFFFFF" stroke-width="6" stroke-linecap="round"/>
<path d="M10 50 L25 50" stroke="#FFFFFF" stroke-width="6" stroke-linecap="round"/>
<path d="M15 65 L25 65" stroke="#FFFFFF" stroke-width="6" stroke-linecap="round"/>
</svg>
</div>
<span class="card-label" style="color:rgba(255,255,255,0.7);">WHITE ON BLUE</span>
<button class="download-btn" style="background:#fff;color:#2563EB;" onclick="downloadPNGWithBg('logo-white-blue', 512, 'blockrun-white-on-blue', '#2563EB')">PNG</button>
</div>
<!-- Transparent -->
<div class="card" style="background: repeating-conic-gradient(#27272a 0% 25%, #18181b 0% 50%) 50% / 20px 20px;">
<div class="logo-box">
<svg width="120" height="120" viewBox="0 0 100 100" fill="none" id="logo-transparent">
<rect x="30" y="20" width="55" height="60" rx="14" stroke="#2563EB" stroke-width="8" fill="none"/>
<path d="M15 35 L25 35" stroke="#2563EB" stroke-width="6" stroke-linecap="round"/>
<path d="M10 50 L25 50" stroke="#2563EB" stroke-width="6" stroke-linecap="round"/>
<path d="M15 65 L25 65" stroke="#2563EB" stroke-width="6" stroke-linecap="round"/>
</svg>
</div>
<span class="card-label">TRANSPARENT</span>
<button class="download-btn" onclick="downloadPNG('logo-transparent', 512, 'blockrun-transparent')">PNG</button>
</div>
</div>
</div>
<div class="divider"></div>
<!-- FAVICON -->
<div class="section">
<h2 class="section-title">Favicon</h2>
<div class="grid">
<div class="card light">
<div class="sizes-row">
<div class="size-item">
<svg width="48" height="48" viewBox="0 0 100 100" fill="none" id="favicon-48">
<rect x="28" y="18" width="60" height="64" rx="16" stroke="#000000" stroke-width="14" fill="none"/>
<path d="M8 50 L22 50" stroke="#000000" stroke-width="10" stroke-linecap="round"/>
</svg>
<span class="card-label">48px</span>
</div>
<div class="size-item">
<svg width="32" height="32" viewBox="0 0 100 100" fill="none" id="favicon-32">
<rect x="28" y="18" width="60" height="64" rx="16" stroke="#000000" stroke-width="14" fill="none"/>
<path d="M8 50 L22 50" stroke="#000000" stroke-width="10" stroke-linecap="round"/>
</svg>
<span class="card-label">32px</span>
</div>
<div class="size-item">
<svg width="16" height="16" viewBox="0 0 100 100" fill="none" id="favicon-16">
<rect x="25" y="15" width="65" height="70" rx="18" stroke="#000000" stroke-width="18" fill="none"/>
</svg>
<span class="card-label">16px</span>
</div>
</div>
<button class="download-btn" onclick="downloadFavicons()">Download All Favicons</button>
</div>
</div>
</div>
<div class="divider"></div>
<!-- SOCIAL MEDIA -->
<div class="section">
<h2 class="section-title">Social Media</h2>
<div class="grid">
<div class="card">
<div class="logo-box" style="width:200px;height:200px;background:#000000;border-radius:50%;display:flex;align-items:center;justify-content:center;">
<svg width="120" height="120" viewBox="0 0 100 100" fill="none" id="social-profile">
<rect x="30" y="20" width="55" height="60" rx="14" stroke="#FFFFFF" stroke-width="8" fill="none"/>
<path d="M15 35 L25 35" stroke="#FFFFFF" stroke-width="6" stroke-linecap="round"/>
<path d="M10 50 L25 50" stroke="#FFFFFF" stroke-width="6" stroke-linecap="round"/>
<path d="M15 65 L25 65" stroke="#FFFFFF" stroke-width="6" stroke-linecap="round"/>
</svg>
</div>
<span class="card-label">PROFILE DARK (400x400)</span>
<button class="download-btn" onclick="downloadSocialProfile('#000000')">PNG</button>
</div>
<div class="card">
<div class="logo-box" style="width:200px;height:200px;background:#FFFFFF;border:1px solid #e4e4e7;border-radius:50%;display:flex;align-items:center;justify-content:center;">
<svg width="120" height="120" viewBox="0 0 100 100" fill="none" id="social-profile-light">
<rect x="30" y="20" width="55" height="60" rx="14" stroke="#000000" stroke-width="8" fill="none"/>
<path d="M15 35 L25 35" stroke="#000000" stroke-width="6" stroke-linecap="round"/>
<path d="M10 50 L25 50" stroke="#000000" stroke-width="6" stroke-linecap="round"/>
<path d="M15 65 L25 65" stroke="#000000" stroke-width="6" stroke-linecap="round"/>
</svg>
</div>
<span class="card-label">PROFILE LIGHT (400x400)</span>
<button class="download-btn" onclick="downloadSocialProfile('#FFFFFF', 'social-profile-light')">PNG</button>
</div>
<div class="card" style="width:320px;">
<div class="logo-box" style="width:280px;height:147px;background:#000000;border-radius:12px;display:flex;align-items:center;justify-content:center;" id="og-preview">
<svg width="80" height="80" viewBox="0 0 100 100" fill="none">
<rect x="30" y="20" width="55" height="60" rx="14" stroke="#FFFFFF" stroke-width="8" fill="none"/>
<path d="M15 35 L25 35" stroke="#FFFFFF" stroke-width="6" stroke-linecap="round"/>
<path d="M10 50 L25 50" stroke="#FFFFFF" stroke-width="6" stroke-linecap="round"/>
<path d="M15 65 L25 65" stroke="#FFFFFF" stroke-width="6" stroke-linecap="round"/>
</svg>
</div>
<span class="card-label">OG IMAGE DARK (1200x630)</span>
<button class="download-btn" onclick="downloadOGImage('#000000')">PNG</button>
</div>
<div class="card" style="width:320px;">
<div class="logo-box" style="width:280px;height:147px;background:#FFFFFF;border:1px solid #e4e4e7;border-radius:12px;display:flex;align-items:center;justify-content:center;" id="og-preview-light">
<svg width="80" height="80" viewBox="0 0 100 100" fill="none">
<rect x="30" y="20" width="55" height="60" rx="14" stroke="#000000" stroke-width="8" fill="none"/>
<path d="M15 35 L25 35" stroke="#000000" stroke-width="6" stroke-linecap="round"/>
<path d="M10 50 L25 50" stroke="#000000" stroke-width="6" stroke-linecap="round"/>
<path d="M15 65 L25 65" stroke="#000000" stroke-width="6" stroke-linecap="round"/>
</svg>
</div>
<span class="card-label">OG IMAGE LIGHT (1200x630)</span>
<button class="download-btn" onclick="downloadOGImage('#FFFFFF')">PNG</button>
</div>
</div>
</div>
<div class="divider"></div>
<!-- BRAND COLORS -->
<div class="section">
<h2 class="section-title">Brand Colors</h2>
<div class="color-info">
<div class="color-swatch">
<div class="swatch" style="background:#000000;"></div>
<div>
<div class="color-text">Primary Black</div>
<div class="color-hex">#000000</div>
</div>
</div>
<div class="color-swatch">
<div class="swatch" style="background:#FFFFFF;border:1px solid #27272a;"></div>
<div>
<div class="color-text">Primary White</div>
<div class="color-hex">#FFFFFF</div>
</div>
</div>
<div class="color-swatch">
<div class="swatch" style="background:#2563EB;"></div>
<div>
<div class="color-text">Secondary Blue</div>
<div class="color-hex">#2563EB</div>
</div>
</div>
<div class="color-swatch">
<div class="swatch" style="background:#1d4ed8;"></div>
<div>
<div class="color-text">Dark Blue</div>
<div class="color-hex">#1D4ED8</div>
</div>
</div>
</div>
</div>
<div class="divider"></div>
<!-- USAGE GUIDELINES -->
<div class="section">
<h2 class="section-title">Usage Guidelines</h2>
<div class="usage-grid">
<div class="usage-card">
<div class="usage-title">Clear Space</div>
<div class="usage-desc">Maintain minimum clear space equal to the height of the speed lines around the logo.</div>
</div>
<div class="usage-card">
<div class="usage-title">Minimum Size</div>
<div class="usage-desc">Do not use the logo smaller than 16px. At 16px, use the simplified favicon version.</div>
</div>
<div class="usage-card">
<div class="usage-title">Background</div>
<div class="usage-desc">Use white logo on dark backgrounds. Use black or blue logo on light backgrounds.</div>
</div>
<div class="usage-card">
<div class="usage-title">Don't</div>
<div class="usage-desc">Don't rotate, skew, add effects, or change the logo colors outside the brand palette.</div>
</div>
</div>
</div>
<footer>
<p>BlockRun.ai Brand Kit</p>
<p style="margin-top:8px;">Speed Block Logo — Primary: #000000 / #FFFFFF — Secondary: #2563EB</p>
</footer>
<script>
// Download SVG
function downloadSVG(svgId, filename) {
const svg = document.getElementById(svgId);
const svgData = new XMLSerializer().serializeToString(svg);
const blob = new Blob([svgData], {type: 'image/svg+xml'});
const url = URL.createObjectURL(blob);
const a = document.createElement('a');
a.href = url;
a.download = filename + '.svg';
a.click();
URL.revokeObjectURL(url);
}
// Download PNG (transparent background)
function downloadPNG(svgId, size, filename) {
const svg = document.getElementById(svgId);
const canvas = document.createElement('canvas');
canvas.width = size;
canvas.height = size;
const ctx = canvas.getContext('2d');
const svgData = new XMLSerializer().serializeToString(svg);
const img = new Image();
img.onload = function() {
ctx.drawImage(img, 0, 0, size, size);
const a = document.createElement('a');
a.href = canvas.toDataURL('image/png');
a.download = filename + '.png';
a.click();
};
img.src = 'data:image/svg+xml;base64,' + btoa(unescape(encodeURIComponent(svgData)));
}
// Download Wordmark PNG (wider format)
function downloadWordmarkPNG(svgId, filename) {
const svg = document.getElementById(svgId);
const width = 640;
const height = 200;
const canvas = document.createElement('canvas');
canvas.width = width;
canvas.height = height;
const ctx = canvas.getContext('2d');
const svgData = new XMLSerializer().serializeToString(svg);
const img = new Image();
img.onload = function() {
ctx.drawImage(img, 0, 0, width, height);
const a = document.createElement('a');
a.href = canvas.toDataURL('image/png');
a.download = filename + '.png';
a.click();
};
img.src = 'data:image/svg+xml;base64,' + btoa(unescape(encodeURIComponent(svgData)));
}
// Download PNG with background
function downloadPNGWithBg(svgId, size, filename, bgColor) {
const svg = document.getElementById(svgId);
const canvas = document.createElement('canvas');
canvas.width = size;
canvas.height = size;
const ctx = canvas.getContext('2d');
// Fill background
ctx.fillStyle = bgColor;
ctx.fillRect(0, 0, size, size);
const svgData = new XMLSerializer().serializeToString(svg);
const img = new Image();
img.onload = function() {
ctx.drawImage(img, 0, 0, size, size);
const a = document.createElement('a');
a.href = canvas.toDataURL('image/png');
a.download = filename + '.png';
a.click();
};
img.src = 'data:image/svg+xml;base64,' + btoa(unescape(encodeURIComponent(svgData)));
}
// Download Favicons
function downloadFavicons() {
downloadPNG('favicon-48', 48, 'favicon-48');
setTimeout(() => downloadPNG('favicon-32', 32, 'favicon-32'), 100);
setTimeout(() => downloadPNG('favicon-16', 16, 'favicon-16'), 200);
}
// Download Social Profile
function downloadSocialProfile(bgColor = '#000000', svgId = 'social-profile') {
const size = 400;
const canvas = document.createElement('canvas');
canvas.width = size;
canvas.height = size;
const ctx = canvas.getContext('2d');
// Background
ctx.fillStyle = bgColor;
ctx.fillRect(0, 0, size, size);
// Draw logo centered
const svg = document.getElementById(svgId);
const svgData = new XMLSerializer().serializeToString(svg);
const img = new Image();
img.onload = function() {
const logoSize = 240;
const offset = (size - logoSize) / 2;
ctx.drawImage(img, offset, offset, logoSize, logoSize);
const a = document.createElement('a');
a.href = canvas.toDataURL('image/png');
const suffix = bgColor === '#FFFFFF' ? 'light' : 'dark';
a.download = `blockrun-profile-${suffix}-400.png`;
a.click();
};
img.src = 'data:image/svg+xml;base64,' + btoa(unescape(encodeURIComponent(svgData)));
}
// Download OG Image
function downloadOGImage(bgColor = '#000000') {
const width = 1200;
const height = 630;
const canvas = document.createElement('canvas');
canvas.width = width;
canvas.height = height;
const ctx = canvas.getContext('2d');
// Solid background
ctx.fillStyle = bgColor;
ctx.fillRect(0, 0, width, height);
// Draw logo centered
const svgId = bgColor === '#FFFFFF' ? 'social-profile-light' : 'social-profile';
const svg = document.getElementById(svgId);
const svgData = new XMLSerializer().serializeToString(svg);
const img = new Image();
img.onload = function() {
const logoSize = 300;
const offsetX = (width - logoSize) / 2;
const offsetY = (height - logoSize) / 2;
ctx.drawImage(img, offsetX, offsetY, logoSize, logoSize);
const a = document.createElement('a');
a.href = canvas.toDataURL('image/png');
const suffix = bgColor === '#FFFFFF' ? 'light' : 'dark';
a.download = `blockrun-og-${suffix}-1200x630.png`;
a.click();
};
img.src = 'data:image/svg+xml;base64,' + btoa(unescape(encodeURIComponent(svgData)));
}
</script>
</body>
</html>