-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1719 lines (1295 loc) · 103 KB
/
Copy pathindex.html
File metadata and controls
1719 lines (1295 loc) · 103 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
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"
/>
<title>Pixel Art Sprite Mixer!</title>
<link rel='stylesheet' href='style.css'>
</head>
<body>
<div id=all>
<img style="image-rendering: smooth !important; image-rendering: high-quality !important; image-rendering: crisp-edges !important;" width="52%" src="media/backgrounds/Mixer_V5.png" title="Pixel Art Sprite Mixer! Mix parts, color styles, build sprites for your game, randomize characters and generate avatars.
Use for your game, tilesheets, art or story. Art you create is produced free for personal and commercial use.
Do NOT use for NFT, Crypto, Blockchain or AI systems.">
<!-- br><input title="Choose one file upload character" id=importconfig type=file></input><br><br-->
<div style="display: flex; margin-top: -15px;">
<div style="position: relative; cursor: url('Arrow_Yellow.png'), default;">
<br>
<canvas style="cursor: url('Arrow_Yellow.png'), default;" id=c></canvas>
<div id="say" style="cursor: url('Arrow_Yellow.png'), default;"></div>
<div id="debug" style="cursor: url('Arrow_Yellow.png'), default;">
<div class="toolbar" style="cursor: url('Arrow_Yellow.png'), default;">
<button title="--- Save spritesheet of only the current animation 🖼️" id=exportsinglebtn style="width: 166px; cursor: url('Arrow_Yellow.png'), default; background: #fff6db"><b style="cursor: url('Arrow_Yellow.png'), default;">Save This Animation</b><small> 🖼️</small></button>
<br>
<button title="--- Donate to keep it free for everyone" style="background: #fff6db; width: 166px; cursor: url('Arrow_Yellow.png'), default;" onclick=" window.open('https://kingbell.itch.io/pixel-sprite-mixer/donate','_blank')"><b style="cursor: url('Arrow_Yellow.png'), default;"><a style="cursor: url('Arrow_Yellow.png'), default; text-decoration: none; color: black;" href="https://kingbell.itch.io/pixel-sprite-mixer/donate" target="_blank">Donate Support 😍</a></b></button>
<br>
<button title="--- Review & share feedback" style="background: #fff6db; width: 166px; cursor: url('Arrow_Yellow.png'), default;" onclick=" window.open('https://kingbell.itch.io/pixel-sprite-mixer/purchase','_blank')"><b style="cursor: url('Arrow_Yellow.png'), default;"><a style="cursor: url('Arrow_Yellow.png'), default; text-decoration: none; color: black;" href="https://kingbell.itch.io/pixel-sprite-mixer/rate" target="_blank">Rate & Review 🤩</a></b></button>
<!-- button class="btn btn-success" title="--- Rate it 5 stars to help it grow" style="background: #fff6db; width: 166px; cursor: url('Arrow_Yellow.png'), default;" onclick=" window.open('https://kingbell.itch.io/pixel-sprite-mixer/rate','_blank')"><b style="cursor: url('Arrow_Yellow.png'), default;"><a style="cursor: url('Arrow_Yellow.png'), default; text-decoration: none; color: black;" href="https://kingbell.itch.io/pixel-sprite-mixer/rate" target="_blank">Rate 5 Stars 🤩</a></b></button -->
<br>
<br><br><br><br><br><br><br>
<button id=exportposebtn title="--- Save for Unity Mythril2D core anims + layout 🖼️" style="width: 155px; cursor: url('Arrow_Yellow.png'), default;"><small style="width: 155px; cursor: url('Arrow_Yellow.png'), default;">Save for Mythril2D 🌄</small></button>
<br>
<button id=exportspritebtn title="--- Save Image Spritesheet of all animations 🖼️" style="cursor: url('Arrow_Yellow.png'), default; width: 155px;"><small style="cursor: url('Arrow_Yellow.png'), default;">All Anims as Image 🖼️</small></button>
<br>
<button id=exportzipbtn title="--- Save all animations as Frames in a .zip folder 📂" style="width: 155px; cursor: url('Arrow_Yellow.png'), default;"><small style="cursor: url('Arrow_Yellow.png'), default;">All Anims as Frames</small>
<br>
<progress style="width: 70px;" id="progressBar" value="0" max="100"></progress> <small id="status">📶 📁</small></button>
<br>
<button id=exportjustonebtn title="--- Save only the Stand pose as one image 🖼️" style="display: none; width: 155px; cursor: url('Arrow_Yellow.png'), default;"><small style="width: 155px; cursor: url('Arrow_Yellow.png'), default;" hidden>Only Stand Pose 🖼️</small></button>
<br>
</div>
<br>
<input id="nameentry" type=text class="hex" value="" display="none" hidden></input>
<button id="savestate" style="text-align: left;" display="none" hidden> 💾 Save <br> Checkpoint </button>
<button id="resetstate" style="text-align: left;" display="none" hidden>↩️ Load <br> Checkpoint</button>
<label id=sharecode style="background-color: white; border-color: #767676; border-style: solid; border-width: 1px; border-radius: 3px; padding: 4px; text-align: left; " display="none" hidden></label>
</div>
</div>
<div>
<div class="mytabs" style="padding-left: 15px;">
<input type="radio" id="tabgold" name="mytabs" checked="checked">
<label for="tabgold" title="--- pick hats, armor, items and clothes to make your hero!" style="background-color: #93c7ff;">Styles 🧝🧙🏼♂️</label>
<div class="tab" style="text-align: left; height: 520px;">
<div class="sliders" style="padding-top: 15px; background-color: #095698; border-top-right-radius: 15px; border-top-left-radius: 15px; text-align: left; width: 589px;">
<div class="slider;">
<b style="color: white; font-size: 14px; vertical-align: middle;"> STYLES</b>
<input style="vertical-align: middle; cursor: url('Arrow_Yellow.png'), default; width: 190px;" type="range" min=0 max=0 value=9 id="sliderHeads">
<input id="inputSliderHeads" type="number" min="0" max="99" style="width: 45px; vertical-align: middle;"></input>
<button onclick=pick_item_Hd_Max(); title="reset to pick from all items" style="width: 65px; vertical-align: middle;">🔄<small><small> </small></small>mix</button>
<button onclick=pick_item_Hd_Range(0,0); title="--- reset to remove all items on your sprite" style="width: 76px; vertical-align: middle;"><small><small>❌ </small></small>clear</button>
<button onclick=randomizeColor(); title="--- mix up the colors on your sprite" style="width: 76px; vertical-align: middle;">🎨<small><small> </small></small>color</button>
</div>
</div>
<text style="padding-top: -20px; padding-right: 291px; padding-left: 291px; background-color: #095698; text-align: center;">
_
</text>
<br>
<table style="width: 589px;" class="styled-table">
<thead>
<tr>
<th style="background: white;"></th>
</tr>
</thead>
<tbody style="font-size: 10px; vertical-align: center; text-align: center;">
<tr> <td>
<br><br><br>
<div class="tooltip top">
<button onclick=pick_item_Head(0,33); style="width: 72px;">Knights<br><br><a href="" onclick="return false;"><img src="media/1_knights/1.png" id="1_knights"></a></button>
<span class="tooltiptext"> <img src="media/buttons/btn_1_knights.gif" style="height: auto;"></img></span>
</div>
<div class="tooltip top">
<button onclick=pick_item_Head(34,50); style="width: 72px;">Mages<br><br><a href="" onclick="return false;"><img src="media/2_mages/1.png" id="2_mages"></a></button>
<span class="tooltiptext"> <img src="media/buttons/btn_2_mages.gif" style="height: auto;"></img></span>
</div>
<div class="tooltip top">
<button onclick=pick_item_Head(51,62); style="width: 72px;">Archers<br><br><a href="" onclick="return false;"><img src="media/3_archers/1.png" id="3_archers"></a></button>
<span class="tooltiptext"> <img src="media/buttons/btn_3_archers.gif" style="height: auto;"></img></span>
</div>
<div class="tooltip top">
<button onclick=pick_item_Head(63,101); style="width: 72px;">Animals<br><br><a href="" onclick="return false;"><img src="media/4_animals/1.png" id="4_animals"></a></button>
<span class="tooltiptext"> <img src="media/buttons/btn_4_animals.gif" style="height: auto;"></img></span>
</div>
<div class="tooltip top">
<button onclick=pick_item_Head(102,126); style="width: 72px;"> Pets <br><br><a href="" onclick="return false;"><img src="media/5_pets/1.png" id="5_pets"></a></button>
<span class="tooltiptext"> <img src="media/buttons/btn_5_pets.gif" style="height: auto;"></img></span>
</div>
<div class="tooltip top">
<button onclick=pick_item_Head(127,149); style="width: 72px;">Monsters<br><br><a href="" onclick="return false;"><img src="media/6_monsters/1.png" id="6_monsters"></a></button>
<span class="tooltiptext"> <img src="media/buttons/btn_6_monsters.gif" style="height: auto;"></img></span>
</div>
<div class="tooltip top">
<button onclick=pick_item_Head(150,163); style="width: 72px;"> TVs <br><br><a href="" onclick="return false;"><img src="media/7_tvs/1.png" id="7_tvs"></a></button>
<span class="tooltiptext"> <img src="media/buttons/btn_7_tvs.gif" style="height: auto;"></img></span>
</div>
<br><br><br><br><br><br><br>
<div class="tooltip top">
<button onclick=pick_item_Head(164,199); style="width: 72px;">Helmets<br><br><a href="" onclick="return false;"><img src="media/8_helmets/1.png" id="8_helmets"></a></button>
<span class="tooltiptext"> <img src="media/buttons/btn_8_helmets.gif" style="height: auto;"></img></span>
</div>
<div class="tooltip top">
<button onclick=pick_item_Head(200,209); style="width: 72px;">Bands<br><br><a href="" onclick="return false;"><img src="media/9_bands/1.png" id="9_bands"></a></button>
<span class="tooltiptext"> <img src="media/buttons/btn_9_bands.gif" style="height: auto;"></img></span>
</div>
<div class="tooltip top">
<button onclick=pick_item_Head(210,239); style="width: 72px;"> Masks <br><br><a href="" onclick="return false;"><img src="media/10_masks/1.png" id="10_masks"></a></button>
<span class="tooltiptext"> <img src="media/buttons/btn_10_masks.gif" style="height: auto;"></img></span>
</div>
<div class="tooltip top">
<button onclick=pick_item_Head(240,273); style="width: 72px;">Hoods<br><br><a href="" onclick="return false;"><img src="media/11_hoods/1.png" id="11_hoods"></a></button>
<span class="tooltiptext"> <img src="media/buttons/btn_11_hoods.gif" style="height: auto;"></img></span>
</div>
<div class="tooltip top">
<button onclick=pick_item_Head(274,305); style="width: 72px;">Space<br><br><a href="" onclick="return false;"><img src="media/12_space/1.png" id="12_space"></a></button>
<span class="tooltiptext"> <img src="media/buttons/btn_12_space.gif" style="height: auto;"></img></span>
</div>
<div class="tooltip top">
<button onclick=pick_item_Head(306,317); style="width: 72px;">Shades<br><br><a href="" onclick="return false;"><img src="media/13_shades/1.png" id="13_shades"></a></button>
<span class="tooltiptext"> <img src="media/buttons/btn_13_shades.gif" style="height: auto;"></img></span>
</div>
<div class="tooltip top">
<button onclick=pick_item_Head(318,332); style="width: 72px;"> Mechs <br><br><a href="" onclick="return false;"><img src="media/14_mechs/1.png" id="14_mechs"></a></button>
<span class="tooltiptext"> <img src="media/buttons/btn_14_mechs.gif" style="height: auto;"></img></span>
</div>
<br><br>
</td> </tr>
</tbody>
<tfoot>
<tr>
<th scope="row" colspan="4" style="background-color: #095698; border-bottom-right-radius: 15px; border-bottom-left-radius: 15px; text-align: center;">
<div class="toolbar" style="font-size: 12.5px; text-align: center; cursor: url('Arrow_Yellow.png'), default;">
<button class="btn btn-success" title="--- Tip or Donate for more items & animations" style="background: #fff6db; width: 240px; cursor: url('Arrow_Yellow.png'), default;" onclick=" window.open('https://kingbell.itch.io/pixel-sprite-mixer/donate','_blank')"><b style="cursor: url('Arrow_Yellow.png'), default;"><a style="cursor: url('Arrow_Yellow.png'), default; text-decoration: none; color: black;" href="https://kingbell.itch.io/pixel-sprite-mixer/donate" target="_blank">Donate to keep it Free-4-all ❤️</a></b></button>
<button class="btn btn-success" title="--- Rate it 5 stars to help it grow" style="background: #fff6db; width: 240px; cursor: url('Arrow_Yellow.png'), default;" onclick=" window.open('https://kingbell.itch.io/pixel-sprite-mixer/rate','_blank')"><b style="cursor: url('Arrow_Yellow.png'), default;"><a style="cursor: url('Arrow_Yellow.png'), default; text-decoration: none; color: black;" href="https://kingbell.itch.io/pixel-sprite-mixer/rate" target="_blank">Rate to help it grow 🤩</a></b></button>
</div>
</th>
</tr>
</tfoot>
</table>
<br>
<p>
<div class="sliders">
<div class="slider;" style="display: none;" hidden>
Body Type:
<input style="cursor: url('Arrow_Yellow.png'), default; width: 390px;" type="range" min=0 max=0 id="sliderBases">
<input id="inputSliderBases" type="number" min="0" max="99" style="width: 46px;"></input>
</div>
</div>
<p><br><br><br></p>
<!-- textarea name="paragraph_text" cols="75" rows="5" title="--- make notes here for heroes you design and items you like" placeholder=" Makes Notes here for heroes you design and items you like." style="resize: none; border-radius: 5px; padding-left: 10px;"></textarea -->
</p>
</div>
<input type="radio" id="tabnotes" name="mytabs">
<label for="tabnotes" title="--- pick role types like ninja, spy or warrior plus more" style="background-color: #93c7ff;">Types 🦸♀️</label>
<div class="tab" style="text-align: left; height: 520px;">
<div class="sliders" style="display: none; padding-top: 10px; background-color: #009879; border-top-right-radius: 15px; border-top-left-radius: 15px; text-align: left; width: 560px;" hidden>
<div class="slider;">
<b style="color: white; font-size: 14px; vertical-align: middle;"> 🐱🐹🐲🦄 FACE</b>
</div>
</div>
<text style="font-size: 0.8em; font-family: verdana; font-weight: bold; background: linear-gradient(#0276CC, #0276CC); -webkit-text-fill-color: transparent; -webkit-background-clip: text; ">Hero Types and Roles</text>
<br><br>
<table border="0" style="border-radius: 8px; text-align: justify; margin-left: 60px;">
<tr>
<td style="vertical-align: top;"></td>
<td style="font-size: 19px;">🗡️ 🛡️ </td>
<td><button id=type_champion style="border-radius: 3px; border-color: #BADBFF; width: 114px;">champion</button> </td>
<td><button id=type_warrior style="border-radius: 3px; border-color: #BADBFF; width: 114px;">warrior</button> </td>
<td><button id=type_samurai style="border-radius: 3px; border-color: #BADBFF; width: 114px;">samurai</button></td>
<tr>
<td> </td><td> </td>
</tr>
<tr>
<td style="vertical-align: top;"></td>
<td style="font-size: 19px;">🧙🏼♂️ 🧙🏼♀️</td>
<td><button id=type_magician style="border-radius: 3px; border-color: #BADBFF; width: 114px;">magician</button></td>
<td><button id=type_wizard style="border-radius: 3px; border-color: #BADBFF; width: 114px;">wizard</button></td>
<td><button id=type_sage style="border-radius: 3px; border-color: #BADBFF; width: 114px;">sage</button></td>
</tr>
<tr>
<td> </td><td> </td>
</tr>
<tr>
<td style="vertical-align: top;"></td>
<td style="font-size: 19px;">🦹 🧝 </td>
<td><button id=type_rogue style="border-radius: 3px; border-color: #BADBFF; width: 114px;">rogue</button></td>
<td><button id=type_pirate style="border-radius: 3px; border-color: #BADBFF; width: 114px;">pirate</button></td>
<td><button id=type_scout style="border-radius: 3px; border-color: #BADBFF; width: 114px;">scout</button></td>
<tr>
<td> </td><td> </td>
</tr>
<tr>
<td style="vertical-align: top;"></td>
<td style="font-size: 19px;">🥷 👤 </td>
<td><button id=type_ninja style="border-radius: 3px; border-color: #BADBFF; width: 114px;">ninja</button></td>
<td><button id=type_spy style="border-radius: 3px; border-color: #BADBFF; width: 114px;">spy</button></td>
<td><button id=type_hunter style="border-radius: 3px; border-color: #BADBFF; width: 114px;">hunter</button></td>
<tr>
<td> </td><td> </td>
</tr>
<tr>
<td style="vertical-align: top;"></td>
<td style="font-size: 19px;">🧝🏻♀️ 🏹 </td>
<td><button id=type_king_queen style="border-radius: 3px; border-color: #BADBFF; width: 114px;">king-queen</button></td>
<td><button id=type_archer style="border-radius: 3px; border-color: #BADBFF; width: 114px;">archer</button></td>
<td><button onclick="pick_item_Fc_Max(); randomizeColor();" style="border-radius: 3px; border-color: #BADBFF; width: 114px;">villager npc</button></td>
</tr>
<tr>
<td> </td><td> </td>
</tr>
<tr>
<td> </td><td> </td>
</tr>
<tr>
<td> </td><td> </td>
</tr>
<tr>
<td style="vertical-align: top;"></td>
<td style="font-size: 19px;">🐱 🐲 </td>
<td><button id=type_pets style="border-radius: 3px; border-color: #BADBFF; width: 114px;">cute pet</button></td>
<td><button id=type_dragon_dino style="border-radius: 3px; border-color: #BADBFF; width: 114px;">dino dragon</button></td>
<td><button id=type_animals style="border-radius: 3px; border-color: #BADBFF; width: 114px;">animals</button></td>
</tr>
<tr>
<td> </td><td> </td>
</tr>
<tr>
<td style="vertical-align: top;"></td>
<td style="font-size: 19px;">👨🏼🚀 🚀 </td>
<td><button id=type_super_soldier style="border-radius: 3px; border-color: #BADBFF; width: 114px;">super soldier</button></td>
<td><button id=type_space_racer style="border-radius: 3px; border-color: #BADBFF; width: 114px;">space racer</button></td>
<td><button id=type_cyber_android style="border-radius: 3px; border-color: #BADBFF; width: 114px;">cyber android</button></td>
</tr>
<tr>
<td> </td><td> </td>
</tr>
<tr>
<td style="vertical-align: top;"></td>
<td style="font-size: 19px;">🤖 📺 </td>
<td><button id=type_tvbmo style="border-radius: 3px; border-color: #BADBFF; width: 114px;">cute tv bmo</button></td>
<td><button id=type_robots style="border-radius: 3px; border-color: #BADBFF; width: 114px;">mech robots</button></td>
</tr>
<tr>
<td> </td><td> </td>
</tr>
<tr>
<td style="vertical-align: top;"></td>
<td style="font-size: 19px;">🧌 🧞♀️ </td>
<td><button id=type_aliens style="border-radius: 3px; border-color: #BADBFF; width: 114px;">monsters</button></td>
<td><button id=type_orcs_ogre style="border-radius: 3px; border-color: #BADBFF; width: 114px;">ogre orc gobs</button></td>
</tr>
</table>
<br>
<br>
</div>
<input type="radio" id="tabfree" name="mytabs">
<label for="tabfree" title="--- pick from 8 color themes to find your own style!" style="background-color: #93c7ff;">Color 🎨</label>
<div class="tab" style="height: 520px;">
<br>
<button id="randomizeclr" title="--- mix up the colors on your sprite" style="width: 170px">Mix Colors 🎨</button>
<button id="set_pal_shift" value="0" title="--- mix up the theme style and color palette" style="width: 170px;">Mix Theme 📚</button>
<text style="font-family: monospace;
accent-color: #44262e;
vertical-align: top;
width: 182px;
height: 23.5px;
display: inline-block;
appearance: auto;
text-rendering: auto;
color: buttontext;
text-align: center;
background-color: buttonface;
border-radius: 2px;
border-width: 1px;
border-style: solid;
border-color: #767676;
border-image: initial;"> Outline <div id="color_outline" style="display: inline-block; width: 72px;"></div> <button id="set_pal_reset_outline" style="height: 22px; width: 35px;"><small>🔃 </small></button> </text>
<br><br>
<p>
<div id="palBody" class="pal" title="--- pick eye color"></div>
<div id="palEyes" class="pal" title="--- pick body skin color"></div>
<div id="palSuit" class="pal" title="--- pick body clothes color"></div>
<div id="palItem" class="pal" title="--- pick items color"></div>
<div id="palMore" class="pal" title="--- pick background and effects color"></div>
</p>
<hr>
<p>
👇 Pick a Color Set. (Or <a style="font-size: small; cursor: url('Arrow_Yellow.png'), default;" href="https://kingbell.itch.io/pixel-sprite-mixer/purchase" target="_blank">Download Color Palette</a>.)
<br><br>
<div>
<button id="set_pal_pdm1" style="width:170px">adventure rpg 🏰️🌍
<text style="color: #945542;">■</text><text style="color: #ca7538;">■</text><text style="color: #f5b97d;">■</text><text style="color: #ffdbb5;">■</text><text style="color: #ca5954;">■</text><text style="color: #e56f4b;">■</text><text style="color: #e39347;">■</text><text style="color: #e8c65b;">■</text><text style="color: #f1dd9e;">■</text><text style="color: #8b9150;">■</text><text style="color: #557d55;">■</text><text style="color: #a8c8a6;">■</text><text style="color: #8bb0ad;">■</text><text style="color: #668da9;">■</text><text style="color: #acc1e4;">■</text><text style="color: #947a9d;">■</text><text style="color: #bc87a5;">■</text><text style="color: #d9a6a6;">■</text>
</button>
<button id="set_pal_endesga32" style="width:170px">light sharp 🌅💎
<text style="color: #eb6b6f;">■</text><text style="color: #f9a875;">■</text><text style="color: #fff6d3;">■</text><text style="color: #831c5d;">■</text><text style="color: #f48cb6;">■</text><text style="color: #e3c896;">■</text><text style="color: #a96868;">■</text><text style="color: #0b8a8f;">■</text><text style="color: #1ebc73;">■</text><text style="color: #91db69;">■</text><text style="color: #fbff86;">■</text><text style="color: #a884f3;">■</text><text style="color: #eaaded;">■</text><text style="color: #8fd3ff;">■</text><text style="color: #4d9be6;">■</text><text style="color: #4d65b4;">■</text><text style="color: #30e1b9;">■</text><text style="color: #8ff8e2;">■</text>
</button>
</div>
<br>
<div>
<button id="set_pal_zughy32" style="width:170px">dark earthy 🏜️🌴
<text style="color: #1a1a1a;">■</text><text style="color: #fbf5ef;">■</text><text style="color: #956040;">■</text><text style="color: #9a9a97;">■</text><text style="color: #c5ccb8;">■</text><text style="color: #8b5580;">■</text><text style="color: #c38890;">■</text><text style="color: #665092;">■</text><text style="color: #c28d75;">■</text><text style="color: #7ca1c0;">■</text><text style="color: #416aa3;">■</text><text style="color: #6eaa78;">■</text><text style="color: #d08159;">■</text><text style="color: #ffaa5e;">■</text><text style="color: #ffd4a3;">■</text><text style="color: #927441;">■</text><text style="color: #4d4539;">■</text><text style="color: #d2c9a5;">■</text>
</button>
<button id="set_pal_vinik24" style="width:170px">shiny pastel 🦄🌸
<text style="color: #beffe0;">■</text><text style="color: #a2d9be;">■</text><text style="color: #ead4aa;">■</text><text style="color: #e8b796;">■</text><text style="color: #b08b9d;">■</text><text style="color: #98ff6a;">■</text><text style="color: #83de6d;">■</text><text style="color: #ffa296;">■</text><text style="color: #d8677a;">■</text><text style="color: #b6587c;">■</text><text style="color: #ff65ed;">■</text><text style="color: #cf53cf;">■</text><text style="color: #fffd95;">■</text><text style="color: #4c549b;">■</text><text style="color: #ffc337;">■</text><text style="color: #be8042;">■</text><text style="color: #ff6932;">■</text><text style="color: #b14a50;">■</text>
</button>
</div>
<br><br>
<div>
<button id="set_pal_cc29" style="width:170px">space tech neon 🚀🤖
<text style="color: #2d1b00;">■</text><text style="color: #608fcf;">■</text><text style="color: #8be5ff;">■</text><text style="color: #cef1ff;">■</text><text style="color: #46878f;">■</text><text style="color: #5ab9a8;">■</text><text style="color: #c4f0c2;">■</text><text style="color: #ff0546;">■</text><text style="color: #9c173b;">■</text><text style="color: #c53a9d;">■</text><text style="color: #ff8e80;">■</text><text style="color: #ffd080;">■</text><text style="color: #7550e8;">■</text><text style="color: #94e344;">■</text><text style="color: #bdff8c;">■</text><text style="color: #f2ff66;">■</text><text style="color: #9af089;">■</text><text style="color: #38d88e;">■</text><text style="color: #778299;">■</text><text style="color: #9caebb;">■</text>
</button>
<button id="set_pal_steam_lords" style="width:170px">candy sweets 🍪🍬
<text style="color: #9d6341;">■</text><text style="color: #bb7f5c;">■</text><text style="color: #6e51c8;">■</text><text style="color: #a065cd;">■</text><text style="color: #ce79d2;">■</text><text style="color: #d68fb8;">■</text><text style="color: #eac4ae;">■</text><text style="color: #f2eef1;">■</text><text style="color: #ffa7bf;">■</text><text style="color: #e64667;">■</text><text style="color: #e18434;">■</text><text style="color: #ffa01b;">■</text><text style="color: #fcd48b;">■</text><text style="color: #9ED8DB;">■</text><text style="color: #72A7BA;">■</text><text style="color: #B1FFFF;">■</text><text style="color: #36e377;">■</text><text style="color: #ce2b1a;">■</text>
</button>
<button id="set_pal_island_joy_16" style="width:170px">retro 8-bit 👾🎮
<text style="color: #332c50;">■</text><text style="color: #46878f;">■</text><text style="color: #94e344;">■</text><text style="color: #e2f3e4;">■</text><text style="color: #fbbbad;">■</text><text style="color: #ee8695;">■</text><text style="color: #4a7a96;">■</text><text style="color: #622e4c;">■</text><text style="color: #7550e8;">■</text><text style="color: #608fcf;">■</text><text style="color: #8be5ff;">■</text><text style="color: #fbf5ef;">■</text><text style="color: #f2d3ab;">■</text><text style="color: #c69fa5;">■</text><text style="color: #96fbc7;">■</text><text style="color: #c6b7be;">■</text><text style="color: #555568;">■</text><text style="color: #a0a08b;">■</text><text style="color: #f7ffae;">■</text><text style="color: #d8bfd8;">■</text>
</button>
</div>
</p>
</div>
<input type="radio" id="tabhairs" name="mytabs">
<label for="tabhairs" title="--- 100 hair styles to pick from" style="background-color: #93c7ff;">Hair 👨🏻🦱👩🏼🦰</label>
<div class="tab" style="text-align: left; height: 520px;">
<div class="sliders" style="padding-top: 10px; background-color: #095698; border-top-right-radius: 15px; border-top-left-radius: 15px; text-align: left; width: 560px;">
<div class="slider;">
<b style="color: white; font-size: 14px; vertical-align: middle;"> HAIR</b>
<input style="vertical-align: middle; cursor: url('Arrow_Yellow.png'), default; width: 190px;" type="range" min=0 max=0 id="sliderFaces">
<input id="inputSliderFaces" type="number" min="0" max="99" style="width: 45px; vertical-align: middle;"></input>
<button onclick=pick_item_Fc_Max(); title="reset to pick from all items 👨🏾🦱👩🏽🦱👩🏼🦰🧑🏻🦱" style="width: 65px; vertical-align: middle;">🔄<small><small> </small></small>mix</button>
<button onclick=pick_item_Fc_Range(0,0); title="--- reset to remove all items on your sprite" style="width: 72px; vertical-align: middle;"><small><small>❌ </small></small>clear</button>
<button onclick=randomizeColor(); title="--- mix up the colors on your sprite" style="width: 76px; vertical-align: middle;">🎨<small><small> </small></small>color</button>
</div>
</div>
<text style="padding-top: -20px; padding-right: 276px; padding-left: 277px; background-color: #095698; text-align: center;">
.
</text>
<div style="height: 450px;" class="scrollit">
<table style="width: 560px;" class="styled-table">
<thead style="display: none;" hidden>
<tr>
<th style="border-top-right-radius: 15px; border-top-left-radius: 15px; font-size: 16px; vertical-align: center; text-align: center;"><b>PICK HAIR STYLE</b></th>
</tr>
</thead>
<tbody style="font-size: 10px; vertical-align: center; text-align: center;">
<tr> <td>
<br>
<button onClick=pick_face_Hair(1) style="width: 72px;" ><img src="media/buttons/hair_list/hair_1.png"></img>
</button><button onClick=pick_face_Hair(2) style="width: 72px;"><img src="media/buttons/hair_list/hair_2.png"></img>
</button><button onClick=pick_face_Hair(3) style="width: 72px;"><img src="media/buttons/hair_list/hair_3.png"></img>
</button><button onClick=pick_face_Hair(4) style="width: 72px;"><img src="media/buttons/hair_list/hair_4.png"></img>
</button><button onClick=pick_face_Hair(5) style="width: 72px;"><img src="media/buttons/hair_list/hair_5.png"></img>
</button><button onClick=pick_face_Hair(6) style="width: 72px;"><img src="media/buttons/hair_list/hair_6.png"></img>
</button>
<br>
<button onClick=pick_face_Hair(7) style="width: 72px;" ><img src="media/buttons/hair_list/hair_7.png"></img>
</button><button onClick=pick_face_Hair(8) style="width: 72px;"><img src="media/buttons/hair_list/hair_8.png"></img>
</button><button onClick=pick_face_Hair(9) style="width: 72px;"><img src="media/buttons/hair_list/hair_9.png"></img>
</button><button onClick=pick_face_Hair(10) style="width: 72px;"><img src="media/buttons/hair_list/hair_10.png"></img>
</button><button onClick=pick_face_Hair(11) style="width: 72px;"><img src="media/buttons/hair_list/hair_11.png"></img>
</button><button onClick=pick_face_Hair(12) style="width: 72px;"><img src="media/buttons/hair_list/hair_12.png"></img>
</button>
<br><br><br><br><br>
<button onClick=pick_face_Hair(13) style="width: 72px;" ><img src="media/buttons/hair_list/hair_13.png"></img>
</button><button onClick=pick_face_Hair(14) style="width: 72px;"><img src="media/buttons/hair_list/hair_14.png"></img>
</button><button onClick=pick_face_Hair(15) style="width: 72px;"><img src="media/buttons/hair_list/hair_15.png"></img>
</button><button onClick=pick_face_Hair(16) style="width: 72px;"><img src="media/buttons/hair_list/hair_16.png"></img>
</button><button onClick=pick_face_Hair(17) style="width: 72px;"><img src="media/buttons/hair_list/hair_17.png"></img>
</button><button onClick=pick_face_Hair(18) style="width: 72px;"><img src="media/buttons/hair_list/hair_18.png"></img>
</button>
<br>
<button onClick=pick_face_Hair(19) style="width: 72px;" ><img src="media/buttons/hair_list/hair_19.png"></img>
</button><button onClick=pick_face_Hair(20) style="width: 72px;"><img src="media/buttons/hair_list/hair_20.png"></img>
</button><button onClick=pick_face_Hair(21) style="width: 72px;"><img src="media/buttons/hair_list/hair_21.png"></img>
</button><button onClick=pick_face_Hair(22) style="width: 72px;"><img src="media/buttons/hair_list/hair_22.png"></img>
</button><button onClick=pick_face_Hair(23) style="width: 72px;"><img src="media/buttons/hair_list/hair_23.png"></img>
</button><button onClick=pick_face_Hair(24) style="width: 72px;"><img src="media/buttons/hair_list/hair_24.png"></img>
</button>
<br>
<button onClick=pick_face_Hair(25) style="width: 72px;" ><img src="media/buttons/hair_list/hair_25.png"></img>
</button><button onClick=pick_face_Hair(26) style="width: 72px;"><img src="media/buttons/hair_list/hair_26.png"></img>
</button><button onClick=pick_face_Hair(27) style="width: 72px;"><img src="media/buttons/hair_list/hair_27.png"></img>
</button><button onClick=pick_face_Hair(28) style="width: 72px;"><img src="media/buttons/hair_list/hair_28.png"></img>
</button><button onClick=pick_face_Hair(29) style="width: 72px;"><img src="media/buttons/hair_list/hair_29.png"></img>
</button><button onClick=pick_face_Hair(30) style="width: 72px;"><img src="media/buttons/hair_list/hair_30.png"></img>
</button>
<br><br><br><br><br>
<button onClick=pick_face_Hair(31) style="width: 72px;" ><img src="media/buttons/hair_list/hair_31.png"></img>
</button><button onClick=pick_face_Hair(32) style="width: 72px;"><img src="media/buttons/hair_list/hair_32.png"></img>
</button><button onClick=pick_face_Hair(33) style="width: 72px;"><img src="media/buttons/hair_list/hair_33.png"></img>
</button><button onClick=pick_face_Hair(34) style="width: 72px;"><img src="media/buttons/hair_list/hair_34.png"></img>
</button><button onClick=pick_face_Hair(35) style="width: 72px;"><img src="media/buttons/hair_list/hair_35.png"></img>
</button><button onClick=pick_face_Hair(36) style="width: 72px;"><img src="media/buttons/hair_list/hair_36.png"></img>
</button>
<br><br><br><br><br>
<button onClick=pick_face_Hair(37) style="width: 72px;" ><img src="media/buttons/hair_list/hair_37.png"></img>
</button><button onClick=pick_face_Hair(38) style="width: 72px;"><img src="media/buttons/hair_list/hair_38.png"></img>
</button><button onClick=pick_face_Hair(39) style="width: 72px;"><img src="media/buttons/hair_list/hair_39.png"></img>
</button><button onClick=pick_face_Hair(40) style="width: 72px;"><img src="media/buttons/hair_list/hair_40.png"></img>
</button><button onClick=pick_face_Hair(41) style="width: 72px;"><img src="media/buttons/hair_list/hair_41.png"></img>
</button><button onClick=pick_face_Hair(42) style="width: 72px;"><img src="media/buttons/hair_list/hair_42.png"></img>
</button>
<br>
<button onClick=pick_face_Hair(43) style="width: 72px;" ><img src="media/buttons/hair_list/hair_43.png"></img>
</button><button onClick=pick_face_Hair(44) style="width: 72px;"><img src="media/buttons/hair_list/hair_44.png"></img>
</button><button onClick=pick_face_Hair(45) style="width: 72px;"><img src="media/buttons/hair_list/hair_45.png"></img>
</button><button onClick=pick_face_Hair(46) style="width: 72px;"><img src="media/buttons/hair_list/hair_46.png"></img>
</button><button onClick=pick_face_Hair(47) style="width: 72px;"><img src="media/buttons/hair_list/hair_47.png"></img>
</button><button onClick=pick_face_Hair(48) style="width: 72px;"><img src="media/buttons/hair_list/hair_48.png"></img>
</button>
<br>
<button onClick=pick_face_Hair(49) style="width: 72px;" ><img src="media/buttons/hair_list/hair_49.png"></img>
</button><button onClick=pick_face_Hair(50) style="width: 72px;"><img src="media/buttons/hair_list/hair_50.png"></img>
</button><button onClick=pick_face_Hair(51) style="width: 72px;"><img src="media/buttons/hair_list/hair_51.png"></img>
</button><button onClick=pick_face_Hair(52) style="width: 72px;"><img src="media/buttons/hair_list/hair_52.png"></img>
</button><button onClick=pick_face_Hair(53) style="width: 72px;"><img src="media/buttons/hair_list/hair_53.png"></img>
</button><button onClick=pick_face_Hair(54) style="width: 72px;"><img src="media/buttons/hair_list/hair_54.png"></img>
</button>
<br><br><br><br><br>
<button onClick=pick_face_Hair(55) style="width: 72px;" ><img src="media/buttons/hair_list/hair_55.png"></img>
</button><button onClick=pick_face_Hair(56) style="width: 72px;"><img src="media/buttons/hair_list/hair_56.png"></img>
</button><button onClick=pick_face_Hair(57) style="width: 72px;"><img src="media/buttons/hair_list/hair_57.png"></img>
</button><button onClick=pick_face_Hair(58) style="width: 72px;"><img src="media/buttons/hair_list/hair_58.png"></img>
</button><button onClick=pick_face_Hair(59) style="width: 72px;"><img src="media/buttons/hair_list/hair_59.png"></img>
</button><button onClick=pick_face_Hair(60) style="width: 72px;"><img src="media/buttons/hair_list/hair_60.png"></img>
</button>
<br>
<button onClick=pick_face_Hair(61) style="width: 72px;" ><img src="media/buttons/hair_list/hair_61.png"></img>
</button><button onClick=pick_face_Hair(62) style="width: 72px;"><img src="media/buttons/hair_list/hair_62.png"></img>
</button><button onClick=pick_face_Hair(63) style="width: 72px;"><img src="media/buttons/hair_list/hair_63.png"></img>
</button><button onClick=pick_face_Hair(64) style="width: 72px;"><img src="media/buttons/hair_list/hair_64.png"></img>
</button><button onClick=pick_face_Hair(65) style="width: 72px;"><img src="media/buttons/hair_list/hair_65.png"></img>
</button><button onClick=pick_face_Hair(66) style="width: 72px;"><img src="media/buttons/hair_list/hair_66.png"></img>
</button>
<br><br><br><br><br>
<button onClick=pick_face_Hair(67) style="width: 72px;" ><img src="media/buttons/hair_list/hair_67.png"></img>
</button><button onClick=pick_face_Hair(68) style="width: 72px;"><img src="media/buttons/hair_list/hair_68.png"></img>
</button><button onClick=pick_face_Hair(69) style="width: 72px;"><img src="media/buttons/hair_list/hair_69.png"></img>
</button><button onClick=pick_face_Hair(70) style="width: 72px;"><img src="media/buttons/hair_list/hair_70.png"></img>
</button><button onClick=pick_face_Hair(71) style="width: 72px;"><img src="media/buttons/hair_list/hair_71.png"></img>
</button><button onClick=pick_face_Hair(72) style="width: 72px;"><img src="media/buttons/hair_list/hair_72.png"></img>
</button>
<br>
<button onClick=pick_face_Hair(73) style="width: 72px;" ><img src="media/buttons/hair_list/hair_73.png"></img>
</button><button onClick=pick_face_Hair(74) style="width: 72px;"><img src="media/buttons/hair_list/hair_74.png"></img>
</button><button onClick=pick_face_Hair(75) style="width: 72px;"><img src="media/buttons/hair_list/hair_75.png"></img>
</button><button onClick=pick_face_Hair(76) style="width: 72px;"><img src="media/buttons/hair_list/hair_76.png"></img>
</button><button onClick=pick_face_Hair(77) style="width: 72px;"><img src="media/buttons/hair_list/hair_77.png"></img>
</button><button onClick=pick_face_Hair(78) style="width: 72px;"><img src="media/buttons/hair_list/hair_78.png"></img>
</button>
<br><br><br><br><br>
<button onClick=pick_face_Hair(79) style="width: 72px;" ><img src="media/buttons/hair_list/hair_79.png"></img>
</button><button onClick=pick_face_Hair(80) style="width: 72px;"><img src="media/buttons/hair_list/hair_80.png"></img>
</button><button onClick=pick_face_Hair(81) style="width: 72px;"><img src="media/buttons/hair_list/hair_81.png"></img>
</button><button onClick=pick_face_Hair(82) style="width: 72px;"><img src="media/buttons/hair_list/hair_82.png"></img>
</button><button onClick=pick_face_Hair(83) style="width: 72px;"><img src="media/buttons/hair_list/hair_83.png"></img>
</button><button onClick=pick_face_Hair(84) style="width: 72px;"><img src="media/buttons/hair_list/hair_84.png"></img>
</button>
<br>
<button onClick=pick_face_Hair(85) style="width: 72px;" ><img src="media/buttons/hair_list/hair_85.png"></img>
</button><button onClick=pick_face_Hair(86) style="width: 72px;"><img src="media/buttons/hair_list/hair_86.png"></img>
</button><button onClick=pick_face_Hair(87) style="width: 72px;"><img src="media/buttons/hair_list/hair_87.png"></img>
</button><button onClick=pick_face_Hair(88) style="width: 72px;"><img src="media/buttons/hair_list/hair_88.png"></img>
</button><button onClick=pick_face_Hair(89) style="width: 72px;"><img src="media/buttons/hair_list/hair_89.png"></img>
</button><button onClick=pick_face_Hair(90) style="width: 72px;"><img src="media/buttons/hair_list/hair_90.png"></img>
</button>
<br><br><br><br><br>
<button onClick=pick_face_Hair(91) style="width: 72px;" ><img src="media/buttons/hair_list/hair_91.png"></img>
</button><button onClick=pick_face_Hair(92) style="width: 72px;"><img src="media/buttons/hair_list/hair_92.png"></img>
</button><button onClick=pick_face_Hair(93) style="width: 72px;"><img src="media/buttons/hair_list/hair_93.png"></img>
</button><button onClick=pick_face_Hair(94) style="width: 72px;"><img src="media/buttons/hair_list/hair_94.png"></img>
</button><button onClick=pick_face_Hair(95) style="width: 72px;"><img src="media/buttons/hair_list/hair_95.png"></img>
</button><button onClick=pick_face_Hair(96) style="width: 72px;"><img src="media/buttons/hair_list/hair_96.png"></img>
</button>
<br>
<button onClick=pick_face_Hair(97) style="width: 72px;" ><img src="media/buttons/hair_list/hair_97.png"></img>
</button><button onClick=pick_face_Hair(98) style="width: 72px;"><img src="media/buttons/hair_list/hair_98.png"></img>
</button><button onClick=pick_face_Hair(99) style="width: 72px;"><img src="media/buttons/hair_list/hair_99.png"></img>
</button><button onClick=pick_face_Hair(100) style="width: 72px;"><img src="media/buttons/hair_list/hair_100.png"></img>
</button><button onClick=pick_face_Hair(101) style="width: 72px;"><img src="media/buttons/hair_list/hair_101.png"></img>
</button><button onClick=pick_face_Hair(102) style="width: 72px;"><img src="media/buttons/hair_list/hair_102.png"></img>
</button>
<br><br>
</td> </tr>
</tbody>
<tfoot>
<tr>
<th scope="row" colspan="5" style="background-color: #095698; border-bottom-right-radius: 15px; border-bottom-left-radius: 15px; text-align: center;">
</th>
</tr>
</tfoot>
</table>
</div>
<p>
<div class="sliders">
<div class="slider;" style="display: none;" hidden>
Body Type:
<input style="cursor: url('Arrow_Yellow.png'), default; width: 390px;" type="range" min=0 max=0 id="sliderBases">
<input id="inputSliderBases" type="number" min="0" max="99" style="width: 46px;"></input>
</div>
</div>
<p><br><br><br></p>
<!-- textarea name="paragraph_text" cols="75" rows="5" title="--- make notes here for heroes you design and items you like" placeholder=" Makes Notes here for heroes you design and items you like." style="resize: none; border-radius: 5px; padding-left: 10px;"></textarea -->
</p>
</div>
<input type="radio" id="tabhud" name="mytabs">
<label for="tabhud" title="--- free starter UI icons" style="background-color: #BADBFF;">UI 🎮</label>
<div class="tab" style="text-align: center; height: 520px;">
<img style="transform: scale(0.75);" src="media/others/new_item.gif"></img>
<a target="_blank" href="https://kingbell.itch.io/pixel-sprite-mixer/purchase"><b>Free UI Starter Icons</b></a>
to quick-start your games and jams!<br>
<br>Health bars, ammo, weapons, hearts, status, items, effects & more.<br><br>
<p style="text-align: center;">
<small><div style="text-align: center; margin-left: -8px; margin-top: -10px;">
<table style="text-align: center;" border="0">
<tr style="text-align: center;">
<th style="text-align: center;">
<a target=_blank download="" href="https://kingbell.itch.io/pixel-sprite-mixer/purchase" title="UI HUD Starer Icons">
<img style="cursor: url('Arrow_Yellow.png'), default; text-align: center; border-radius: 6px; border-width: 1px;" alt="UI HUD Starter Icons" src="media/others/UI_Hud_Interface_BBK_Tab.png"></img>
</a>
</th>
</tr>
</table>
</div></small>
</p>
</div>
<input type="radio" id="tabsilver" name="mytabs">
<label for="tabsilver" title="--- see our star ratings and read feedback from fans" style="background-color: #BADBFF;">Reviews 🌠</label>
<div class="tab" style="text-align: left; height: 520px;">
<div class="scrollit" style="border-top-right-radius: 10px; border-top-left-radius: 10px; height: 480px;">
<table class="styled-table">
<thead>
<tr style=" background-color: #095698;">
<th scope="col"> Name 😎</th>
<th scope="col">Reviews ⭐ <a target="_blank" style="font-size: 1em; color: white; cursor: url('Arrow_Yellow.png'), default;" href="https://kingbell.itch.io/pixel-sprite-mixer/rate">Give your Review 💛</a></th>
</tr>
</thead>
<tbody style="font-size: 10px;">
<tr> <td> <b>CenturionDragonsStudio</b></td> <td>Thank you! Really helpful as it means I don't have to overwork my artist every time I want to try something new</td> </tr>
<tr> <td> <b>HankHaodong</b></td> <td>Amazing tool</td> </tr>
<tr> <td> <b>Zyntrix_05</b></td> <td>Bro thanks, this is so helpful!</td> </tr>
<tr> <td> <b>DamDamDev</b></td> <td>Really helful for someone who can't draw</td> </tr>
<tr> <td> <b>StarDreamIX</b></td> <td>Thank you so much! This is amazing! Can I use this for my top down game?</td> </tr>
<tr> <td> <b>FireFrogStudio</b></td> <td>A great tool for creating sprites.</td> </tr>
<tr> <td> <b>GD Forge</b></td> <td>Really good!!</td> </tr>
<tr> <td> <b>Teebor9</b></td> <td>Amazing variability and fantastic example reference for beginner pixel artists</td> </tr>
<tr> <td> <b>ReTrOdAd39</b></td> <td>I am a aspiring developer, thank you so much for this program. I want to learn pixel art, so this program is a great for me, honestly</td> </tr>
<tr> <td> <b>Cave_Gremlin0117</b></td> <td>fanTASTIC tool, really customizable with a consistent art style across the board</td> </tr>
<tr> <td> <b>Frovix Draylox</b></td> <td>best tool ever</td> </tr>
<tr> <td> <b>TalkaLoong</b></td> <td>This is a great help!</td> </tr>
<tr> <td> <b>HowJack</b></td> <td>Amazing</td> </tr>
<tr> <td> <b>Redarkun</b></td> <td>Thank you very much, this is elegant and customizable</td> </tr>
<tr> <td> <b>PhTecklenBorg</b></td> <td>Awesome asset!!</td> </tr>
<tr> <td> <b>DeathToBoredom</b></td> <td>Thank you so much! You the bomb!</td> </tr>
<tr> <td> <b>Joulejuul</b></td> <td>Great sprite generator! Perfect for creating mini games. The developer is nice, answering questions and requests immediately :)</td> </tr>
<tr> <td> <b>Maliyo Games</b></td> <td>Super tool! Very easy to use, love the gamified feel</td> </tr>
<tr> <td> <b>TorontoCaper</b></td> <td>Way too good to be free?!</td> </tr>
<tr> <td> <b>Piranha305</b></td> <td>Dope</td> </tr>
<tr> <td> <b>RohaanBeyondItch</b></td> <td>Very awesome. Save me a ton of time</td> </tr>
<tr> <td> <b>Fuzzyc</b></td> <td>Simply amazing. Much potential for future expansion</td> </tr>
<tr> <td> <b>Mr.lad</b></td> <td>This is awesome</td> </tr>
<tr> <td> <b>DamDamDev</b></td> <td>Really helpful for someone who can't draw</td> </tr>
<tr> <td> <b>StarDreamIX</b></td> <td>Thank you so much! This is Amazing for my top-down game!</td> </tr>
<tr> <td> <b>FireFrog</b></td> <td>A great tool for creating sprites</td> </tr>
<tr> <td> <b>GD Forge</b></td> <td>Really good!!</td> </tr>
<tr> <td> <b>Teebor9</b></td> <td>Amazing variability and fantastic for beginner pixel artists</td> </tr>
<tr> <td> <b>ReTrOdAd39</b></td> <td>I'm an aspiring game maker! Thank you so much honestly</td> </tr>
<tr> <td> <b>mazen89xd</b></td> <td>absolute cinema</td> </tr>
<tr> <td> <b>itch_io_anhkn</b></td> <td>NICE!</td> </tr>
<tr> <td> <b>Brawl Wizard</b></td> <td>So useful for game programmers and game prototyping, love it!</td> </tr>
<tr> <td> <b>Giladlevko</b></td> <td>This is cool</td> </tr>
<tr> <td> <b>Daniel_Game_Dev</b></td> <td>How did I not find this before!</td> </tr>
<tr> <td> <b>zhouyufu1992</b></td> <td>Good!</td> </tr>
<tr> <td> <b>Y_JET</b></td> <td>Man, I really like this one, it solve all my problems to make a sprite for every game I make! Thanks a lot</td> </tr>
<tr> <td> <b>hawkgamedev</b></td> <td>Amazing assets!</td> </tr>
<tr> <td> <b>angelator312</b></td> <td>Really usable tool</td> </tr>
<tr> <td> <b>BENSTA12</b></td> <td>very good thanks</td> </tr>
<tr> <td> <b>Tuvo</b></td> <td>I have no words. 10 out of 10!</td> </tr>
<tr> <td> <b>Jesshiyoo</b></td> <td>So good</td> </tr>
<tr> <td> <b>Absolent</b></td> <td>This looks amazing. Thanks!</td> </tr>
<tr> <td> <b>spinnyflame146</b></td> <td>Should get 10 stars so far!</td> </tr>
<tr> <td> <b>Muffinzor</b></td> <td>Amazing gift to the community</td> </tr>
<tr> <td> <b>N0-guycode</b></td> <td>Very nice, and comprehensive for a free tool. I absolutely love it.<br>Saved me tons of time!</td> </tr>
<tr> <td> <b>Stimpy33</b></td> <td>This is honestly an awesome tool for any budding or inspired developer.<br>One of the more well thought out assets of it's kind, but still simplistic<br>and 'to-the-point'. You could very well use this as the foundation for your game's characters entirely - or it could serve as a jumping off point to base your ideas on. Very impressed!</td> </tr>
<tr> <td> <b>Gyvr Mythril2D</b></td> <td>Love this 2.0 update, I find it extremely clear and easy to use. This is such a time saver for any 2D game, and now that there are so many animations...<br>It's actually insane! Keep up the good work, I'll definitely be using it! 💪</td> </tr>
<tr> <td> <b>HakanBacon</b></td> <td>Really, really awesome little thing. It's fun to use<br>and the music isn't even getting annoying lol</td> </tr>
<tr> <td> <b>0x72</b></td> <td>Wow, above and beyond! Amazing! This is the ultimate pixel character generator!</td> </tr>
<tr> <td> <b>KMH Kevin's House</b></td> <td>This is sick! Great job, really impressive array of animations and features</td> </tr>
<tr> <td> <b>AnalogStudios</b></td> <td>The animations are insane! I really like how you went about the flying and swimming animations!! the soul animation is also really smooth...you've definitely inspired me to keep expanding on my own animations!</td> </tr>
<tr> <td> <b>Mari LaFabled</b></td> <td>Kenney level asset!</td> </tr>
<tr> <td> <b>FTV Studios</b></td> <td>This tool is absolutely perfect for Unity 6.2 using the Mythril2D Engine.<br>The art style is absolutely beautiful in a minimalistic way<br>that feels super easy to use. 100% recommend!</td> </tr>
<tr> <td> <b>spinnyflame146</b></td> <td>Should get 10 stars so far!</td> </tr>
<tr> <td> <b>AlEcyler</b></td> <td>Sweet and simple</td> </tr>
<tr> <td> <b>Mayo Games</b></td> <td>Very useful for jams</td> </tr>
<tr> <td> <b>Sturmjager</b></td> <td>Very easy to use! Awesome tool!</td> </tr>
<tr> <td> <b>Joao Teixeira</b></td> <td>Really enjoying this tool for making the character in my game!</td> </tr>
<tr> <td> <b>bellignorant</b></td> <td>it is super beautiful, thanks a ton</td> </tr>
<tr> <td> <b>drowningmae</b></td> <td>Love it!</td> </tr>
<tr> <td> <b>Beorgames</b></td> <td>Fantastic</td> </tr>
<tr> <td> <b>hawkgamedev</b></td> <td>Amazing tool you did here, I'm placing this tool in my pipeline so I can use it probably next year for a few prototypes. Good work</td> </tr>
<tr> <td> <b>kalaherty</b></td> <td>Quite neat. I like the overall simplicity and range of outcomes.<br>I like this for a roguelike</td> </tr>
<tr> <td> <b>VisualEnemy</b></td> <td>Amazing tool!!!</td> </tr>
<tr> <td> <b>RetroPixelGames</b></td> <td>A+++</td> </tr>
<tr> <td> <b>TheMetalCarrotDev</b></td> <td>It’s an amazing tool. Stellar work.</td> </tr>
<tr> <td> <b>AlSoKnown</b></td> <td>This project overall is excellent and IMO deserves wider recognition.<br>I almost want to create a new game just to use it :)</td> </tr>
<tr> <td> <b>Fares</b></td> <td>WOW Amazing job, keep going </td> </tr>
<tr> <td> <b>NerdyNomad</b></td> <td>Amazing tool for quick and simple sprites</td> </tr>
<tr> <td> <b>MMMMBANANA</b></td> <td>Well made, makes 2d games a lot easier to create. Keep up the good work!</td> </tr>
<tr> <td> <b>jjz52501</b></td> <td>nice work</td> </tr>
<tr> <td> <b>MrArgos</b></td> <td>awesome tool</td> </tr>
<tr> <td> <b>AiurArtanis</b></td> <td>🥰</td> </tr>
<tr> <td> <b>SleepyHollow Games</b></td> <td>This will be helpfull to so many people</td> </tr>
<tr> <td> <b>JobJobovich</b></td> <td>that's what I need. I'm really looking forward to additional tools</td> </tr>
<tr> <td> <b>Relei204</b></td> <td>Wow! Thanks!!!</td> </tr>
<tr> <td> <b>co_de_fra</b></td> <td>wow!</td> </tr>
<tr> <td> <b>kichul1122</b></td> <td>I love this</td> </tr>
<tr> <td> <b>elsamdev</b></td> <td>Great!! Loving this!</td> </tr>
<tr> <td> <b>whitelonely</b></td> <td>so cute, so useful, nice job!</td> </tr>
<tr> <td> <b>RamPlayzTheEpic</b></td> <td>This is so useful for GB Studio</td> </tr>
<tr> <td> <b>SqueebGaming</b></td> <td>This is so amazing, thank you for making this</td> </tr>
<tr> <td><hr></td> <td><hr></td> </tr>
</tbody>
<tfoot>
<tr>
<th style="background-color: #8266DD;" scope="row" colspan="5">
</th>
</tr>
</tfoot>
</table>
</div>
<br>
</div>
<input type="radio" id="tabhelp" name="mytabs">
<label for="tabhelp" title="--- UI info, buttons guide and anims list" style="background-color: #BADBFF;">Guide</label>
<div class="tab" style="text-align: left; height: 520px;">
<p>
<small><div style="text-align: left; margin-left: 15px; margin-top: -11px;">
<table border="0">
<tr>
<th><text style="font-size: 0.85em; font-family: verdana; font-weight: bold; background: linear-gradient(#000, #000); -webkit-text-fill-color: transparent; -webkit-background-clip: text; ">
Tabs/Buttons<br> </text></th>
<th style="text-align: center;"> <br> </th>
</tr>
<tr>
<td style="vertical-align: top;"><text style="font-size: 0.8em; font-family: verdana; font-weight: bold; background: linear-gradient(#6FB6E2, #7F62DF); -webkit-text-fill-color: transparent; -webkit-background-clip: text; ">
Styles</text></td>
<td> <b>Use Hats, Armor and Clothes</b> to make your Hero! (size 16x24 px)<br>
<b>Knights</b> ninjas, mages, archers, animals, bots & over 300 items<br> </td>
</tr>
<tr>
<td style="vertical-align: top;"><text style="font-size: 0.8em; font-family: verdana; font-weight: bold; background: linear-gradient(#6FB6E2, #7F62DF); -webkit-text-fill-color: transparent; -webkit-background-clip: text; ">
Hero Types</text></td>
<td> <b>Use 24 type-sets to match the world, biome, planet or powers you want!</b><br>
<b>Hunter,</b> spy, sage, samurai, rogue,dragon, soldier and more!<br><br></td>
</tr>
<tr>
<td style="vertical-align: top;"><text style="font-size: 0.8em; font-family: verdana; font-weight: bold; background: linear-gradient(#6FB6E2, #7F62DF); -webkit-text-fill-color: transparent; -webkit-background-clip: text; ">
Hair Sets</text></td>
<td> <b>Use 100 hair styles</b> to design your Hero!<br>
Curly hair, swirly, tall, short, round, spikey and more<br> </td>
</tr>
<tr>
<td style="vertical-align: top;"><text style="font-size: 0.8em; font-family: verdana; font-weight: bold; background: linear-gradient(#6FB6E2, #7F62DF); -webkit-text-fill-color: transparent; -webkit-background-clip: text; ">
Saving</text></td>
<td> <b>Save This Animation:</b> save the current animation as a sprite sheet png<br><br>
Anims as Image: save all anims from every tab as a sprite sheet png<br>
Anims as Frames: save all anims as single frame images in a .zip folder<br>
Save for Mythril: save main anims for easy quick-use in Mythril2D<br>
</td>
</tr>
<tr>
<td style="vertical-align: top;"><text style="font-size: 0.8em; font-family: verdana; font-weight: bold; background: linear-gradient(#6FB6E2, #7F62DF); -webkit-text-fill-color: transparent; -webkit-background-clip: text; ">
UI Icons</text></td>
<td> <b>Free Icons</b> to quick-start your games & prototype designs <img style="transform: scale(0.75);" src="media/others/new_item.gif"></img> <br> </td>
</tr>
</table>
<table border="0">
<tr>
<th><text style="font-size: 0.85em; font-family: verdana; font-weight: bold; background: linear-gradient(#000, #000); -webkit-text-fill-color: transparent; -webkit-background-clip: text; ">
ANIMATIONS<br> </text></th>
<th style="text-align: center;"> <br> </th>
</tr>
<tr>
<td style="vertical-align: top;"><text style="font-size: 0.8em; font-family: verdana; font-weight: bold; background: linear-gradient(#6FB6E2, #7F62DF); -webkit-text-fill-color: transparent; -webkit-background-clip: text; ">
Move Anims</text></td>
<td> Run, jump, duck, hurt, die, stand, press, idles, ninja-run + more<br> </td>
</tr>
<tr>
<td style="vertical-align: top;"><text style="font-size: 0.8em; font-family: verdana; font-weight: bold; background: linear-gradient(#6FB6E2, #7F62DF); -webkit-text-fill-color: transparent; -webkit-background-clip: text; ">
Powers</text></td>
<td> Fly, dash, teleport, spawn, warp, charge, cast, flash-step and spell-fire<br> </td>
</tr>
<tr>
<td style="vertical-align: top;"><text style="font-size: 0.8em; font-family: verdana; font-weight: bold; background: linear-gradient(#6FB6E2, #7F62DF); -webkit-text-fill-color: transparent; -webkit-background-clip: text; ">
Weapons</text></td>
<td> Attack, fire & move animations for sword, shield, staff, wand and bows<br><br></td>
</tr>
<tr>
<td style="vertical-align: top;"><text style="font-size: 0.8em; font-family: verdana; font-weight: bold; background: linear-gradient(#6FB6E2, #7F62DF); -webkit-text-fill-color: transparent; -webkit-background-clip: text; ">
Reacts</text></td>
<td> Heal, sleep, land, hit ground, float, in-air, knockback, falling<br> </td>
</tr>
<tr>
<td style="vertical-align: top;"><text style="font-size: 0.8em; font-family: verdana; font-weight: bold; background: linear-gradient(#6FB6E2, #7F62DF); -webkit-text-fill-color: transparent; -webkit-background-clip: text; ">
Swim</text></td>
<td> Swim idle, float hover, swim move, swim rush, swim boost + more<br> </td>
</tr>
<tr>
<td style="vertical-align: top;"><text style="font-size: 0.8em; font-family: verdana; font-weight: bold; background: linear-gradient(#6FB6E2, #7F62DF); -webkit-text-fill-color: transparent; -webkit-background-clip: text; ">
Hurt</text></td>
<td> Hit damaged, die, explode, burst, melt, sink, drown, shrink and lose soul<br> </td>
</tr>
<tr>
<td style="vertical-align: top;"><text style="font-size: 0.8em; font-family: verdana; font-weight: bold; background: linear-gradient(#000, #000); -webkit-text-fill-color: transparent; -webkit-background-clip: text; ">
LICENSE</text></td>
<td> Sprites free for personal/commercial use. Do NOT use in NFTs, Crypto or AI<br></td>
</tr>
<tr>
<td style="vertical-align: top;"><text style="font-size: 0.8em; font-family: verdana; font-weight: bold; background: linear-gradient(#000, #000); -webkit-text-fill-color: transparent; -webkit-background-clip: text; ">
ENGINES</text></td>
<td> Use in Top-Down Games, Unity, Godot, GameMaker, RPGMaker, Construct & Mythril2D
</td>
</tr>
</table>
</div></small>
</p>
</div>
<input type="radio" id="tabguide" name="mytabs">
<label for="tabguide" title="--- run, jump, duck, press, idle and more">🎞️ Move Animations</label>
<div class="tab" style="text-align: left; height: 520px;">
<br>
<table border="0">
<tr>
<th></th>
<th></th>
</tr>
<tr>
<td style="padding-right: 15px;">
<text style="text-align: center; vertical-align: top; font-size: 0.8em; font-family: verdana; font-weight: bold; background: linear-gradient(#0276CC, #0276CC); -webkit-text-fill-color: transparent; -webkit-background-clip: text; ">Starter<br>Animations<br><br> ⭐️ 🎮</text>
</td>
<td>
<button onMouseOver="this.style.color='blue'" onMouseOut="this.style.color='black'" id="anim_base_stand_btn" style="width: 75px;"> stand <br> <img src="media/anims/sprite_base_stand.png"></img>
</button><button onMouseOver="this.style.color='blue'" onMouseOut="this.style.color='black'" id="anim_base_idle_btn" style="width: 75px;"> idle <br> <img src="media/anims/sprite_base_idle.gif"></img>
</button>
<button onMouseOver="this.style.color='blue'" onMouseOut="this.style.color='black'" id="anim_base_run_btn" style="width: 75px;"> run <br> <img src="media/anims/sprite_base_run.gif"></img>
</button><button onMouseOver="this.style.color='blue'" onMouseOut="this.style.color='black'" id="anim_base_hurt_btn" style="width: 75px;"> hurt <br> <img src="media/anims/sprite_base_hurt.gif"></img>
</button>
<button onMouseOver="this.style.color='blue'" onMouseOut="this.style.color='black'" id="anim_die_extended_btn" style="width: 75px;"> die <br> <img src="media/anims/sprite_base_die.png"></img>
</button><button onMouseOver="this.style.color='blue'" onMouseOut="this.style.color='black'" id="anim_base_press_btn" style="width: 75px;"> press <br> <img src="media/anims/sprite_base_press.gif"></img>
</button>
<button onMouseOver="this.style.color='blue'" onMouseOut="this.style.color='black'" id="anim_base_die_btn" style="width: 1px; display: none;" hidden> die <br> <img src="media/anims/sprite_base_die.png"></img> </button><button onMouseOver="this.style.color='blue'" onMouseOut="this.style.color='black'" id="anim_die_one_btn" style="width: 1px; display: none;" hidden> die <br> <img src="media/anims/sprite_base_die.png"></img></button>
</td>
</tr>
<tr>
<td></td>
<td><br><br></td>
</tr>
<tr>
<td style="padding-right: 15px;">
<text style="text-align: center; vertical-align: top; font-size: 0.8em; font-family: verdana; font-weight: bold; background: linear-gradient(#0276CC, #0276CC); -webkit-text-fill-color: transparent; -webkit-background-clip: text; ">Run Rush<br><br> ☵🏃🏽➡️</text>
</td>
<td>
<button onMouseOver="this.style.color='blue'" onMouseOut="this.style.color='black'" id="anim_run_ninja_btn" style="width: 75px;"> ninja <br> <img src="media/anims/sprite_run_ninja.gif"></img>
</button><button onMouseOver="this.style.color='blue'" onMouseOut="this.style.color='black'" id="anim_run_one_btn" style="width: 75px;"> run <br> <img src="media/anims/sprite_base_run.gif"></img>
</button>
<button onMouseOver="this.style.color='blue'" onMouseOut="this.style.color='black'" id="anim_run_two_btn" style="width: 75px;"> jog <br> <img src="media/anims/sprite_run_two_jog.gif"></img>
</button><button onMouseOver="this.style.color='blue'" onMouseOut="this.style.color='black'" id="anim_run_wobble_btn" style="width: 75px;"> rush <br> <img src="media/anims/sprite_run_rush_wobble.gif"></img>
</button>
<button onMouseOver="this.style.color='blue'" onMouseOut="this.style.color='black'" id="anim_run_leap_btn" style="width: 75px;"> slow <br> <img src="media/anims/sprite_run_slow_leap.gif"></img> </button>
</td>
</tr>
<tr>
<td></td>