-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdiscordheximals.py
2980 lines (2235 loc) · 55.9 KB
/
discordheximals.py
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
import random
class Color:
@staticmethod
def air_force_blue() -> int:
return 0x5D8AA8
@staticmethod
def alice_blue() -> int:
return 0xF0F8FF
@staticmethod
def alizarin_crimson() -> int:
return 0xE32636
@staticmethod
def almond() -> int:
return 0xEFDECD
@staticmethod
def amaranth() -> int:
return 0xE52B50
@staticmethod
def amber() -> int:
return 0xFFBF00
@staticmethod
def american_rose() -> int:
return 0xFF033E
@staticmethod
def amethyst() -> int:
return 0x9966CC
@staticmethod
def android_green() -> int:
return 0xA4C639
@staticmethod
def anti_flash_white() -> int:
return 0xF2F3F4
@staticmethod
def antique_brass() -> int:
return 0xCD9575
@staticmethod
def antique_fuchsia() -> int:
return 0x915C83
@staticmethod
def antique_white() -> int:
return 0xFAEBD7
@staticmethod
def ao() -> int:
return 0x008000
@staticmethod
def apple_green() -> int:
return 0x8DB600
@staticmethod
def apricot() -> int:
return 0xFBCEB1
@staticmethod
def aqua() -> int:
return 0x00FFFF
@staticmethod
def aquamarine() -> int:
return 0x7FFFD4
@staticmethod
def army_green() -> int:
return 0x4B5320
@staticmethod
def arylide_yellow() -> int:
return 0xE9D66B
@staticmethod
def ash_grey() -> int:
return 0xB2BEB5
@staticmethod
def asparagus() -> int:
return 0x87A96B
@staticmethod
def atomic_tangerine() -> int:
return 0xFF9966
@staticmethod
def aureolin() -> int:
return 0xFDEE00
@staticmethod
def aurometalsaurus() -> int:
return 0x6E7F80
@staticmethod
def awesome() -> int:
return 0xFF2052
@staticmethod
def azure() -> int:
return 0x007FFF
@staticmethod
def azure_mist() -> int:
return 0x0FFFF
@staticmethod
def baby_blue() -> int:
return 0x89CFF0
@staticmethod
def baby_blue_eyes() -> int:
return 0xA1CAF1
@staticmethod
def baby_pink() -> int:
return 0xF4C2C2
@staticmethod
def ball_blue() -> int:
return 0x21ABCD
@staticmethod
def banana_mania() -> int:
return 0xFAE7B5
@staticmethod
def banana_yellow() -> int:
return 0xFFE135
@staticmethod
def battleship_grey() -> int:
return 0x848482
@staticmethod
def bazaar() -> int:
return 0x98777B
@staticmethod
def beau_blue() -> int:
return 0xBCD4E6
@staticmethod
def beaver() -> int:
return 0x9F8170
@staticmethod
def beige() -> int:
return 0xF5F5DC
@staticmethod
def bisque() -> int:
return 0xFFE4C4
@staticmethod
def biinte() -> int:
return 0x3D2B1
@staticmethod
def bittersweet() -> int:
return 0xFE6F5E
@staticmethod
def black() -> int:
return 0x000000
@staticmethod
def blanched_almond() -> int:
return 0xFFEBCD
@staticmethod
def bleu_de_france() -> int:
return 0x318CE7
@staticmethod
def blizzard_blue() -> int:
return 0xACE5EE
@staticmethod
def blond() -> int:
return 0xFAF0BE
@staticmethod
def blue() -> int:
return 0x0000FF
@staticmethod
def blue_bell() -> int:
return 0xA2A2D0
@staticmethod
def blue_gray() -> int:
return 0x6699CC
@staticmethod
def blue_green() -> int:
return 0x0D98BA
@staticmethod
def blue_purple() -> int:
return 0x8A2BE2
@staticmethod
def blue_violet() -> int:
return 0x8A2BE2
@staticmethod
def blush() -> int:
return 0xDE5D83
@staticmethod
def bole() -> int:
return 0x79443B
@staticmethod
def bondi_blue() -> int:
return 0x0095B6
@staticmethod
def bone() -> int:
return 0xE3DAC9
@staticmethod
def boston_university_red() -> int:
return 0xCC0000
@staticmethod
def bottle_green() -> int:
return 0x006A4E
@staticmethod
def boysenberry() -> int:
return 0x873260
@staticmethod
def brandeis_blue() -> int:
return 0x0070FF
@staticmethod
def brass() -> int:
return 0xB5A642
@staticmethod
def brick_red() -> int:
return 0xCB4154
@staticmethod
def bright_cerulean() -> int:
return 0x1DACD6
@staticmethod
def bright_green() -> int:
return 0x66FF00
@staticmethod
def bright_lavender() -> int:
return 0xBF94E4
@staticmethod
def bright_maroon() -> int:
return 0xC32148
@staticmethod
def bright_pink() -> int:
return 0xFF007F
@staticmethod
def bright_turquoise() -> int:
return 0x08E8DE
@staticmethod
def bright_ube() -> int:
return 0xD19FE8
@staticmethod
def brilliant_lavender() -> int:
return 0xF4BBFF
@staticmethod
def brilliant_rose() -> int:
return 0xFF55A3
@staticmethod
def brink_pink() -> int:
return 0xFB607F
@staticmethod
def british_racing_green() -> int:
return 0x004225
@staticmethod
def bronze() -> int:
return 0xCD7F32
@staticmethod
def brown() -> int:
return 0xA52A2A
@staticmethod
def bubble_gum() -> int:
return 0xFFC1CC
@staticmethod
def bubbles() -> int:
return 0xE7FEFF
@staticmethod
def buff() -> int:
return 0xF0DC82
@staticmethod
def bulgarian_rose() -> int:
return 0x480607
@staticmethod
def burgundy() -> int:
return 0x800020
@staticmethod
def burlywood() -> int:
return 0xDEB887
@staticmethod
def burnt_orange() -> int:
return 0xCC5500
@staticmethod
def burnt_sienna() -> int:
return 0xE97451
@staticmethod
def burnt_umber() -> int:
return 0x8A3324
@staticmethod
def byzantine() -> int:
return 0xBD33A4
@staticmethod
def byzantium() -> int:
return 0x702963
@staticmethod
def cg_blue() -> int:
return 0x007AA5
@staticmethod
def cg_red() -> int:
return 0xE03C31
@staticmethod
def cadet() -> int:
return 0x536872
@staticmethod
def cadet_blue() -> int:
return 0x5F9EA0
@staticmethod
def cadet_grey() -> int:
return 0x91A3B0
@staticmethod
def cadmium_green() -> int:
return 0x006B3C
@staticmethod
def cadmium_orange() -> int:
return 0xED872D
@staticmethod
def cadmium_red() -> int:
return 0xE30022
@staticmethod
def cadmium_yellow() -> int:
return 0xFFF600
@staticmethod
def cafe_au_lait() -> int:
return 0xA67B5B
@staticmethod
def cafe_noir() -> int:
return 0x4B3621
@staticmethod
def cal_poly_pomona_green() -> int:
return 0x1E4D2B
@staticmethod
def cambridge_blue() -> int:
return 0xA3C1AD
@staticmethod
def camel() -> int:
return 0xC19A6B
@staticmethod
def camouflage_green() -> int:
return 0x78866B
@staticmethod
def canary() -> int:
return 0xFFFF99
@staticmethod
def canary_yellow() -> int:
return 0xFFEF00
@staticmethod
def candy_apple_red() -> int:
return 0xFF0800
@staticmethod
def candy_pink() -> int:
return 0xE4717A
@staticmethod
def capri() -> int:
return 0x00BFFF
@staticmethod
def caput_mortuum() -> int:
return 0x592720
@staticmethod
def cardinal() -> int:
return 0xC41E3A
@staticmethod
def caribbean_green() -> int:
return 0x00CC99
@staticmethod
def carmine() -> int:
return 0xFF0040
@staticmethod
def carmine_pink() -> int:
return 0xEB4C42
@staticmethod
def carmine_red() -> int:
return 0xFF0038
@staticmethod
def carnation_pink() -> int:
return 0xFFA6C9
@staticmethod
def carnelian() -> int:
return 0xB31B1B
@staticmethod
def carolina_blue() -> int:
return 0x99BADD
@staticmethod
def carrot_orange() -> int:
return 0xED9121
@staticmethod
def celadon() -> int:
return 0xACE1AF
@staticmethod
def celeste() -> int:
return 0xB2FFF
@staticmethod
def celestial_blue() -> int:
return 0x4997D0
@staticmethod
def cerise() -> int:
return 0xDE3163
@staticmethod
def cerise_pink() -> int:
return 0xEC3B83
@staticmethod
def cerulean() -> int:
return 0x007BA7
@staticmethod
def cerulean_blue() -> int:
return 0x2A52BE
@staticmethod
def chamoisee() -> int:
return 0xA0785A
@staticmethod
def champagne() -> int:
return 0xFAD6A5
@staticmethod
def charcoal() -> int:
return 0x36454F
@staticmethod
def chartreuse() -> int:
return 0x7FFF00
@staticmethod
def cherry() -> int:
return 0xDE3163
@staticmethod
def cherry_blossom_pink() -> int:
return 0xFFB7C5
@staticmethod
def chestnut() -> int:
return 0xCD5C5C
@staticmethod
def chocolate() -> int:
return 0xD2691E
@staticmethod
def chrome_yellow() -> int:
return 0xFFA700
@staticmethod
def cinereous() -> int:
return 0x98817B
@staticmethod
def cinnabar() -> int:
return 0xE34234
@staticmethod
def cinnamon() -> int:
return 0xD2691E
@staticmethod
def citrine() -> int:
return 0xE4D00A
@staticmethod
def classic_rose() -> int:
return 0xFBCCE7
@staticmethod
def cobalt() -> int:
return 0x0047AB
@staticmethod
def cocoa_brown() -> int:
return 0xD2691E
@staticmethod
def coffee() -> int:
return 0x6F4E37
@staticmethod
def columbia_blue() -> int:
return 0x9BDDFF
@staticmethod
def cool_black() -> int:
return 0x002E63
@staticmethod
def cool_grey() -> int:
return 0x8C92AC
@staticmethod
def copper() -> int:
return 0xB87333
@staticmethod
def copper_rose() -> int:
return 0x996666
@staticmethod
def coquelicot() -> int:
return 0xFF3800
@staticmethod
def coral() -> int:
return 0xFF7F50
@staticmethod
def coral_pink() -> int:
return 0xF88379
@staticmethod
def coral_red() -> int:
return 0xFF4040
@staticmethod
def cordovan() -> int:
return 0x893F45
@staticmethod
def corn() -> int:
return 0xFBEC5D
@staticmethod
def cornell_red() -> int:
return 0xB31B1B
@staticmethod
def cornflower() -> int:
return 0x9ACEEB
@staticmethod
def cornflower_blue() -> int:
return 0x6495ED
@staticmethod
def cornsilk() -> int:
return 0xFFF8DC
@staticmethod
def cosmic_latte() -> int:
return 0xFFF8E7
@staticmethod
def cotton_candy() -> int:
return 0xFFBCD9
@staticmethod
def cream() -> int:
return 0xFFFDD0
@staticmethod
def crimson() -> int:
return 0xDC143C
@staticmethod
def crimson_red() -> int:
return 0x990000
@staticmethod
def crimson_glory() -> int:
return 0xBE0032
@staticmethod
def cyan() -> int:
return 0x00FFFF
@staticmethod
def caffodil() -> int:
return 0xFFFF31
@staticmethod
def dandelion() -> int:
return 0xF0E130
@staticmethod
def dark_blue() -> int:
return 0x00008B
@staticmethod
def dark_brown() -> int:
return 0x654321
@staticmethod
def dark_byzantium() -> int:
return 0x5D3954
@staticmethod
def dark_candy_apple_red() -> int:
return 0xA40000
@staticmethod
def dark_cerulean() -> int:
return 0x08457E
@staticmethod
def dark_chestnut() -> int:
return 0x986960
@staticmethod
def dark_coral() -> int:
return 0xCD5B45
@staticmethod
def dark_cyan() -> int:
return 0x008B8B
@staticmethod
def dark_electric_blue() -> int:
return 0x536878
@staticmethod
def dark_goldenrod() -> int:
return 0xB8860B
@staticmethod
def dark_gray() -> int:
return 0xA9A9A9
@staticmethod
def dark_green() -> int:
return 0x013220
@staticmethod
def dark_jungle_green() -> int:
return 0x1A2421
@staticmethod
def dark_khaki() -> int:
return 0xBDB76B
@staticmethod
def dark_lava() -> int:
return 0x483C32
@staticmethod
def dark_lavender() -> int:
return 0x734F96
@staticmethod
def dark_magenta() -> int:
return 0x8B008B
@staticmethod
def dark_midnight_blue() -> int:
return 0x003366
@staticmethod
def dark_olive_green() -> int:
return 0x556B2F
@staticmethod
def dark_orange() -> int:
return 0xFF8C00
@staticmethod
def dark_orchid() -> int:
return 0x9932CC
@staticmethod
def dark_pastel_blue() -> int:
return 0x779ECB
@staticmethod
def dark_pastel_green() -> int:
return 0x03C03C
@staticmethod
def dark_pastel_purple() -> int:
return 0x966FD6
@staticmethod
def dark_pastel_red() -> int:
return 0xC23B22
@staticmethod
def dark_pink() -> int:
return 0xE75480
@staticmethod
def dark_powder_blue() -> int:
return 0x003399
@staticmethod
def dark_raspberry() -> int:
return 0x872657
@staticmethod
def dark_red() -> int:
return 0x8B0000
@staticmethod
def dark_salmon() -> int:
return 0xE9967A
@staticmethod
def dark_scarlet() -> int:
return 0x560319
@staticmethod
def dark_sea_green() -> int:
return 0x8FBC8F
@staticmethod
def dark_sienna() -> int:
return 0x3C1414
@staticmethod
def dark_slate_blue() -> int:
return 0x483D8B
@staticmethod
def dark_slate_gray() -> int:
return 0x2F4F4F
@staticmethod
def dark_spring_green() -> int:
return 0x177245
@staticmethod
def dark_tan() -> int:
return 0x918151
@staticmethod
def dark_tangerine() -> int:
return 0xFFA812
@staticmethod
def dark_taupe() -> int:
return 0x483C32
@staticmethod
def dark_terra_cotta() -> int:
return 0xCC4E5C
@staticmethod
def dark_turquoise() -> int:
return 0x00CED1
@staticmethod
def dark_violet() -> int:
return 0x9400D3
@staticmethod
def dartmouth_green() -> int:
return 0x00693E
@staticmethod
def davy_grey() -> int:
return 0x555555
@staticmethod
def debian_red() -> int:
return 0xD70A53
@staticmethod
def deep_carmine() -> int:
return 0xA9203E
@staticmethod
def deep_carmine_pink() -> int:
return 0xEF3038
@staticmethod
def deep_carrot_orange() -> int:
return 0xE9692C
@staticmethod
def deep_cerise() -> int:
return 0xDA3287
@staticmethod
def deep_champagne() -> int:
return 0xFAD6A5
@staticmethod
def deep_chestnut() -> int:
return 0xB94E48
@staticmethod
def deep_coffee() -> int:
return 0x704241
@staticmethod
def deep_fuchsia() -> int:
return 0xC154C1
@staticmethod
def deep_jungle_green() -> int:
return 0x004B49
@staticmethod
def deep_lilac() -> int:
return 0x9955BB
@staticmethod
def deep_magenta() -> int:
return 0xCC00CC
@staticmethod
def deep_peach() -> int:
return 0xFFCBA4
@staticmethod
def deep_pink() -> int:
return 0xFF1493
@staticmethod
def deep_saffron() -> int:
return 0xFF9933
@staticmethod
def deep_sky_blue() -> int:
return 0x00BFFF
@staticmethod
def denim() -> int:
return 0x1560BD
@staticmethod
def desert() -> int:
return 0xC19A6B
@staticmethod
def desert_sand() -> int:
return 0xEDC9AF
@staticmethod
def dim_gray() -> int:
return 0x696969
@staticmethod
def dodger_blue() -> int:
return 0x1E90FF
@staticmethod
def dogwood_rose() -> int:
return 0xD71868
@staticmethod
def dollar_bill() -> int:
return 0x85BB65
@staticmethod
def drab() -> int:
return 0x967117
@staticmethod
def duke_blue() -> int:
return 0x00009C
@staticmethod
def earth_yellow() -> int:
return 0xE1A95F
@staticmethod
def ecru() -> int:
return 0xC2B280
@staticmethod
def eggplant() -> int:
return 0x614051
@staticmethod
def eggshell() -> int:
return 0xF0EAD6
@staticmethod
def egyptian_blue() -> int:
return 0x1034A6
@staticmethod
def electric_blue() -> int:
return 0x7DF9FF
@staticmethod
def electric_crimson() -> int:
return 0xFF003F
@staticmethod
def electric_cyan() -> int:
return 0x00FFFF
@staticmethod
def electric_green() -> int:
return 0x00FF00
@staticmethod
def electric_indigo() -> int:
return 0x6F00FF
@staticmethod
def electric_lavender() -> int:
return 0xF4BBFF
@staticmethod
def electric_lime() -> int:
return 0xCCFF00
@staticmethod
def electric_purple() -> int:
return 0xBF00FF
@staticmethod
def electric_ultramarine() -> int:
return 0x3F00FF
@staticmethod
def electric_violet() -> int:
return 0x8F00FF
@staticmethod