-
Notifications
You must be signed in to change notification settings - Fork 15
/
colours_palette.html
1616 lines (1614 loc) · 103 KB
/
colours_palette.html
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
<script>
function myFunction() {
var x = document.getElementById("theColors");
if (x.style.display === "block") {
x.style.display = "none";
} else {
x.style.display = "block";
}
}
</script>
<button style='padding: 0; margin: -200px 0px;'onclick="myFunction()">🎨🖌</button>
<div id="theColors" style="display: none"> <center><strong>Click on a name to
make it the background colour ^_^
</strong></center>
<button style='background-color: #fffafa;' OnClick="document.bgColor='#fffafa';
document.body.style.background='#fffafa'">snow</button><button style='background-color:
#f8f8ff;' OnClick="document.bgColor='#f8f8ff';
document.body.style.background='#f8f8ff'">ghost
white</button><button style='background-color: #f8f8ff;'
OnClick="document.bgColor='#f8f8ff'; currentcolor = 'white';
document.body.style.background='#f8f8ff'">ghostwhite</button><button style='background-color:
#f5f5f5;' OnClick="document.bgColor='#f5f5f5';
document.body.style.background='#f5f5f5'">white
smoke</button><button style='background-color: #f5f5f5;'
OnClick="document.bgColor='#f5f5f5';
document.body.style.background='#f5f5f5'">whitesmoke</button><button style='background-color:
#dcdcdc;' OnClick="document.bgColor='#dcdcdc';
document.body.style.background='#dcdcdc'">gainsboro</button><button style='background-color:
#fffaf0;' OnClick="document.bgColor='#fffaf0';
document.body.style.background='#fffaf0'">floral
white</button><button style='background-color: #fffaf0;'
OnClick="document.bgColor='#fffaf0';
document.body.style.background='#fffaf0'">floralwhite</button><button style='background-color:
#fdf5e6;' OnClick="document.bgColor='#fdf5e6';
document.body.style.background='#fdf5e6'">old
lace</button><button style='background-color: #fdf5e6;'
OnClick="document.bgColor='#fdf5e6'; currentcolor='old lace';
document.body.style.background='#fdf5e6'">oldlace</button><button style='background-color:
#faf0e6;' OnClick="document.bgColor='#faf0e6';
document.body.style.background='#faf0e6'">linen</button><button style='background-color:
#faebd7;' OnClick="document.bgColor='#faebd7';
document.body.style.background='#faebd7'">antique
white</button><button style='background-color: #faebd7;'
OnClick="document.bgColor='#faebd7';
document.body.style.background='#faebd7'">antiquewhite</button><button style='background-color:
#ffefd5;' OnClick="document.bgColor='#ffefd5';
document.body.style.background='#ffefd5'">papaya
whip</button><button style='background-color: #ffefd5;'
OnClick="document.bgColor='#ffefd5';
document.body.style.background='#ffefd5'">papayawhip</button><button style='background-color:
#ffebcd;' OnClick="document.bgColor='#ffebcd';
document.body.style.background='#ffebcd'">blanched
almond</button><button style='background-color: #ffebcd;'
OnClick="document.bgColor='#ffebcd';
document.body.style.background='#ffebcd'">blanchedalmond</button><button style='background-color:
#ffe4c4;' OnClick="document.bgColor='#ffe4c4';
document.body.style.background='#ffe4c4'">bisque</button><button style='background-color:
#ffdab9;' OnClick="document.bgColor='#ffdab9';
document.body.style.background='#ffdab9'">peach
puff</button><button style='background-color: #ffdab9;'
OnClick="document.bgColor='#ffdab9';
document.body.style.background='#ffdab9'">peachpuff</button><button style='background-color:
#ffdead;' OnClick="document.bgColor='#ffdead';
document.body.style.background='#ffdead'">navajo
white</button><button style='background-color: #ffdead;'
OnClick="document.bgColor='#ffdead';
document.body.style.background='#ffdead'">navajowhite</button><button style='background-color:
#ffe4b5;' OnClick="document.bgColor='#ffe4b5';
document.body.style.background='#ffe4b5'">moccasin</button><button style='background-color:
#fff8dc;' OnClick="document.bgColor='#fff8dc';
document.body.style.background='#fff8dc'">cornsilk</button><button style='background-color:
#fffff0;' OnClick="document.bgColor='#fffff0';
document.body.style.background='#fffff0'">ivory</button><button style='background-color:
#fffacd;' OnClick="document.bgColor='#fffacd';
document.body.style.background='#fffacd'">lemon
chiffon</button><button style='background-color: #fffacd;'
OnClick="document.bgColor='#fffacd';
document.body.style.background='#fffacd'">lemonchiffon</button><button style='background-color:
#fff5ee;' OnClick="document.bgColor='#fff5ee';
document.body.style.background='#fff5ee'">seashell</button><button style='background-color:
#f0fff0;' OnClick="document.bgColor='#f0fff0';
document.body.style.background='#f0fff0'">honeydew</button><button style='background-color:
#f5fffa;' OnClick="document.bgColor='#f5fffa';
document.body.style.background='#f5fffa'">mint
cream</button><button style='background-color: #f5fffa;'
OnClick="document.bgColor='#f5fffa';
document.body.style.background='#f5fffa'">mintcream</button><button style='background-color:
#f0ffff;' OnClick="document.bgColor='#f0ffff';
document.body.style.background='#f0ffff'">azure</button><button style='background-color:
#f0f8ff;' OnClick="document.bgColor='#f0f8ff';
document.body.style.background='#f0f8ff'">alice
blue</button><button style='background-color: #f0f8ff;'
OnClick="document.bgColor='#f0f8ff';
document.body.style.background='#f0f8ff'">aliceblue</button><button style='background-color:
#e6e6fa;' OnClick="document.bgColor='#e6e6fa';
document.body.style.background='#e6e6fa'">lavender</button><button style='background-color:
#fff0f5;' OnClick="document.bgColor='#fff0f5';
document.body.style.background='#fff0f5'">lavender
blush</button><button style='background-color: #fff0f5;'
OnClick="document.bgColor='#fff0f5';
document.body.style.background='#fff0f5'">lavenderblush</button><button style='background-color:
#ffe4e1;' OnClick="document.bgColor='#ffe4e1';
document.body.style.background='#ffe4e1'">misty
rose</button><button style='background-color: #ffe4e1;'
OnClick="document.bgColor='#ffe4e1';
document.body.style.background='#ffe4e1'">mistyrose</button><button style='background-color:
#ffffff;' OnClick="document.bgColor='#ffffff';
document.body.style.background='#ffffff'">white</button><button style='background-color:
#000000;' OnClick="document.bgColor='#000000';
document.body.style.background='#000000'">black</button><button style='background-color:
#2f4f4f;' OnClick="document.bgColor='#2f4f4f';
document.body.style.background='#2f4f4f'">dark slate
gray</button><button style='background-color: #2f4f4f;'
OnClick="document.bgColor='#2f4f4f';
document.body.style.background='#2f4f4f'">darkslategray</button><button style='background-color:
#2f4f4f;' OnClick="document.bgColor='#2f4f4f';
document.body.style.background='#2f4f4f'">dark slate
grey</button><button style='background-color: #2f4f4f;'
OnClick="document.bgColor='#2f4f4f';
document.body.style.background='#2f4f4f'">darkslategrey</button><button style='background-color:
#696969;' OnClick="document.bgColor='#696969';
document.body.style.background='#696969'">dim
gray</button><button style='background-color: #696969;'
OnClick="document.bgColor='#696969';
document.body.style.background='#696969'">dimgray</button><button style='background-color:
#696969;' OnClick="document.bgColor='#696969';
document.body.style.background='#696969'">dim
grey</button><button style='background-color: #696969;'
OnClick="document.bgColor='#696969';
document.body.style.background='#696969'">dimgrey</button><button style='background-color:
#708090;' OnClick="document.bgColor='#708090';
document.body.style.background='#708090'">slate
gray</button><button style='background-color: #708090;'
OnClick="document.bgColor='#708090';
document.body.style.background='#708090'">slategray</button><button style='background-color:
#708090;' OnClick="document.bgColor='#708090';
document.body.style.background='#708090'">slate
grey</button><button style='background-color: #708090;'
OnClick="document.bgColor='#708090';
document.body.style.background='#708090'">slategrey</button><button style='background-color:
#778899;' OnClick="document.bgColor='#778899';
document.body.style.background='#778899'">light slate
gray</button><button style='background-color: #778899;'
OnClick="document.bgColor='#778899';
document.body.style.background='#778899'">lightslategray</button><button style='background-color:
#778899;' OnClick="document.bgColor='#778899';
document.body.style.background='#778899'">light slate
grey</button><button style='background-color: #778899;'
OnClick="document.bgColor='#778899';
document.body.style.background='#778899'">lightslategrey</button><button style='background-color:
#bebebe;' OnClick="document.bgColor='#bebebe';
document.body.style.background='#bebebe'">gray</button><button style='background-color:
#bebebe;' OnClick="document.bgColor='#bebebe';
document.body.style.background='#bebebe'">grey</button><button style='background-color:
#d3d3d3;' OnClick="document.bgColor='#d3d3d3';
document.body.style.background='#d3d3d3'">light
grey</button><button style='background-color: #d3d3d3;'
OnClick="document.bgColor='#d3d3d3';
document.body.style.background='#d3d3d3'">lightgrey</button><button style='background-color:
#d3d3d3;' OnClick="document.bgColor='#d3d3d3';
document.body.style.background='#d3d3d3'">light
gray</button><button style='background-color: #d3d3d3;'
OnClick="document.bgColor='#d3d3d3';
document.body.style.background='#d3d3d3'">lightgray</button><button style='background-color:
#191970;' OnClick="document.bgColor='#191970';
document.body.style.background='#191970'">midnight
blue</button><button style='background-color: #191970;'
OnClick="document.bgColor='#191970';
document.body.style.background='#191970'">midnightblue</button><button style='background-color:
#000080;' OnClick="document.bgColor='#000080';
document.body.style.background='#000080'">navy</button><button style='background-color:
#000080;' OnClick="document.bgColor='#000080';
document.body.style.background='#000080'">navy
blue</button><button style='background-color: #000080;'
OnClick="document.bgColor='#000080';
document.body.style.background='#000080'">navyblue</button><button style='background-color:
#6495ed;' OnClick="document.bgColor='#6495ed';
document.body.style.background='#6495ed'">cornflower
blue</button><button style='background-color: #6495ed;'
OnClick="document.bgColor='#6495ed';
document.body.style.background='#6495ed'">cornflowerblue</button><button style='background-color:
#483d8b;' OnClick="document.bgColor='#483d8b';
document.body.style.background='#483d8b'">dark slate
blue</button><button style='background-color: #483d8b;'
OnClick="document.bgColor='#483d8b';
document.body.style.background='#483d8b'">darkslateblue</button><button style='background-color:
#6a5acd;' OnClick="document.bgColor='#6a5acd';
document.body.style.background='#6a5acd'">slate
blue</button><button style='background-color: #6a5acd;'
OnClick="document.bgColor='#6a5acd';
document.body.style.background='#6a5acd'">slateblue</button><button style='background-color:
#7b68ee;' OnClick="document.bgColor='#7b68ee';
document.body.style.background='#7b68ee'">medium slate
blue</button><button style='background-color: #7b68ee;'
OnClick="document.bgColor='#7b68ee';
document.body.style.background='#7b68ee'">mediumslateblue</button><button style='background-color:
#8470ff;' OnClick="document.bgColor='#8470ff';
document.body.style.background='#8470ff'">light slate
blue</button><button style='background-color: #8470ff;'
OnClick="document.bgColor='#8470ff';
document.body.style.background='#8470ff'">lightslateblue</button><button style='background-color:
#0000cd;' OnClick="document.bgColor='#0000cd';
document.body.style.background='#0000cd'">medium
blue</button><button style='background-color: #0000cd;'
OnClick="document.bgColor='#0000cd';
document.body.style.background='#0000cd'">mediumblue</button><button style='background-color:
#4169e1;' OnClick="document.bgColor='#4169e1';
document.body.style.background='#4169e1'">royal
blue</button><button style='background-color: #4169e1;'
OnClick="document.bgColor='#4169e1';
document.body.style.background='#4169e1'">royalblue</button><button style='background-color:
#0000ff;' OnClick="document.bgColor='#0000ff';
document.body.style.background='#0000ff'">blue</button><button style='background-color:
#1e90ff;' OnClick="document.bgColor='#1e90ff';
document.body.style.background='#1e90ff'">dodger
blue</button><button style='background-color: #1e90ff;'
OnClick="document.bgColor='#1e90ff';
document.body.style.background='#1e90ff'">dodgerblue</button><button style='background-color:
#00bfff;' OnClick="document.bgColor='#00bfff';
document.body.style.background='#00bfff'">deep sky
blue</button><button style='background-color: #00bfff;'
OnClick="document.bgColor='#00bfff';
document.body.style.background='#00bfff'">deepskyblue</button><button style='background-color:
#87ceeb;' OnClick="document.bgColor='#87ceeb';
document.body.style.background='#87ceeb'">sky
blue</button><button style='background-color: #87ceeb;'
OnClick="document.bgColor='#87ceeb';
document.body.style.background='#87ceeb'">skyblue</button><button style='background-color:
#87cefa;' OnClick="document.bgColor='#87cefa';
document.body.style.background='#87cefa'">light sky
blue</button><button style='background-color: #87cefa;'
OnClick="document.bgColor='#87cefa';
document.body.style.background='#87cefa'">lightskyblue</button><button style='background-color:
#4682b4;' OnClick="document.bgColor='#4682b4';
document.body.style.background='#4682b4'">steel
blue</button><button style='background-color: #4682b4;'
OnClick="document.bgColor='#4682b4';
document.body.style.background='#4682b4'">steelblue</button><button style='background-color:
#b0c4de;' OnClick="document.bgColor='#b0c4de';
document.body.style.background='#b0c4de'">light steel
blue</button><button style='background-color: #b0c4de;'
OnClick="document.bgColor='#b0c4de';
document.body.style.background='#b0c4de'">lightsteelblue</button><button style='background-color:
#add8e6;' OnClick="document.bgColor='#add8e6';
document.body.style.background='#add8e6'">light
blue</button><button style='background-color: #add8e6;'
OnClick="document.bgColor='#add8e6';
document.body.style.background='#add8e6'">lightblue</button><button style='background-color:
#b0e0e6;' OnClick="document.bgColor='#b0e0e6';
document.body.style.background='#b0e0e6'">powder
blue</button><button style='background-color: #b0e0e6;'
OnClick="document.bgColor='#b0e0e6';
document.body.style.background='#b0e0e6'">powderblue</button><button style='background-color:
#afeeee;' OnClick="document.bgColor='#afeeee';
document.body.style.background='#afeeee'">pale
turquoise</button><button style='background-color: #afeeee;'
OnClick="document.bgColor='#afeeee';
document.body.style.background='#afeeee'">paleturquoise</button><button style='background-color:
#00ced1;' OnClick="document.bgColor='#00ced1';
document.body.style.background='#00ced1'">dark
turquoise</button><button style='background-color: #00ced1;'
OnClick="document.bgColor='#00ced1';
document.body.style.background='#00ced1'">darkturquoise</button><button style='background-color:
#48d1cc;' OnClick="document.bgColor='#48d1cc';
document.body.style.background='#48d1cc'">medium
turquoise</button><button style='background-color: #48d1cc;'
OnClick="document.bgColor='#48d1cc';
document.body.style.background='#48d1cc'">mediumturquoise</button><button style='background-color:
#40e0d0;' OnClick="document.bgColor='#40e0d0';
document.body.style.background='#40e0d0'">turquoise</button><button style='background-color:
#00ffff;' OnClick="document.bgColor='#00ffff';
document.body.style.background='#00ffff'">cyan</button><button style='background-color:
#e0ffff;' OnClick="document.bgColor='#e0ffff';
document.body.style.background='#e0ffff'">light
cyan</button><button style='background-color: #e0ffff;'
OnClick="document.bgColor='#e0ffff';
document.body.style.background='#e0ffff'">lightcyan</button><button style='background-color:
#5f9ea0;' OnClick="document.bgColor='#5f9ea0';
document.body.style.background='#5f9ea0'">cadet
blue</button><button style='background-color: #5f9ea0;'
OnClick="document.bgColor='#5f9ea0';
document.body.style.background='#5f9ea0'">cadetblue</button><button style='background-color:
#66cdaa;' OnClick="document.bgColor='#66cdaa';
document.body.style.background='#66cdaa'">medium
aquamarine</button><button style='background-color: #66cdaa;'
OnClick="document.bgColor='#66cdaa';
document.body.style.background='#66cdaa'">mediumaquamarine</button><button style='background-color:
#7fffd4;' OnClick="document.bgColor='#7fffd4';
document.body.style.background='#7fffd4'">aquamarine</button><button style='background-color:
#006400;' OnClick="document.bgColor='#006400';
document.body.style.background='#006400'">dark
green</button><button style='background-color: #006400;'
OnClick="document.bgColor='#006400';
document.body.style.background='#006400'">darkgreen</button><button style='background-color:
#556b2f;' OnClick="document.bgColor='#556b2f';
document.body.style.background='#556b2f'">dark olive
green</button><button style='background-color: #556b2f;'
OnClick="document.bgColor='#556b2f';
document.body.style.background='#556b2f'">darkolivegreen</button><button style='background-color:
#8fbc8f;' OnClick="document.bgColor='#8fbc8f';
document.body.style.background='#8fbc8f'">dark sea
green</button><button style='background-color: #8fbc8f;'
OnClick="document.bgColor='#8fbc8f';
document.body.style.background='#8fbc8f'">darkseagreen</button><button style='background-color:
#2e8b57;' OnClick="document.bgColor='#2e8b57';
document.body.style.background='#2e8b57'">sea
green</button><button style='background-color: #2e8b57;'
OnClick="document.bgColor='#2e8b57';
document.body.style.background='#2e8b57'">seagreen</button><button style='background-color:
#3cb371;' OnClick="document.bgColor='#3cb371';
document.body.style.background='#3cb371'">medium sea
green</button><button style='background-color: #3cb371;'
OnClick="document.bgColor='#3cb371';
document.body.style.background='#3cb371'">mediumseagreen</button><button style='background-color:
#20b2aa;' OnClick="document.bgColor='#20b2aa';
document.body.style.background='#20b2aa'">light sea
green</button><button style='background-color: #20b2aa;'
OnClick="document.bgColor='#20b2aa';
document.body.style.background='#20b2aa'">lightseagreen</button><button style='background-color:
#98fb98;' OnClick="document.bgColor='#98fb98';
document.body.style.background='#98fb98'">pale
green</button><button style='background-color: #98fb98;'
OnClick="document.bgColor='#98fb98';
document.body.style.background='#98fb98'">palegreen</button><button style='background-color:
#00ff7f;' OnClick="document.bgColor='#00ff7f';
document.body.style.background='#00ff7f'">spring
green</button><button style='background-color: #00ff7f;'
OnClick="document.bgColor='#00ff7f';
document.body.style.background='#00ff7f'">springgreen</button><button style='background-color:
#7cfc00;' OnClick="document.bgColor='#7cfc00';
document.body.style.background='#7cfc00'">lawn
green</button><button style='background-color: #7cfc00;'
OnClick="document.bgColor='#7cfc00';
document.body.style.background='#7cfc00'">lawngreen</button><button style='background-color:
#00ff00;' OnClick="document.bgColor='#00ff00';
document.body.style.background='#00ff00'">green</button><button style='background-color:
#7fff00;' OnClick="document.bgColor='#7fff00';
document.body.style.background='#7fff00'">chartreuse</button><button style='background-color:
#00fa9a;' OnClick="document.bgColor='#00fa9a';
document.body.style.background='#00fa9a'">medium spring
green</button><button style='background-color: #00fa9a;'
OnClick="document.bgColor='#00fa9a';
document.body.style.background='#00fa9a'">mediumspringgreen</button><button style='background-color:
#adff2f;' OnClick="document.bgColor='#adff2f';
document.body.style.background='#adff2f'">green
yellow</button><button style='background-color: #adff2f;'
OnClick="document.bgColor='#adff2f';
document.body.style.background='#adff2f'">greenyellow</button><button style='background-color:
#32cd32;' OnClick="document.bgColor='#32cd32';
document.body.style.background='#32cd32'">lime
green</button><button style='background-color: #32cd32;'
OnClick="document.bgColor='#32cd32';
document.body.style.background='#32cd32'">limegreen</button><button style='background-color:
#9acd32;' OnClick="document.bgColor='#9acd32';
document.body.style.background='#9acd32'">yellow
green</button><button style='background-color: #9acd32;'
OnClick="document.bgColor='#9acd32';
document.body.style.background='#9acd32'">yellowgreen</button><button style='background-color:
#228b22;' OnClick="document.bgColor='#228b22';
document.body.style.background='#228b22'">forest
green</button><button style='background-color: #228b22;'
OnClick="document.bgColor='#228b22';
document.body.style.background='#228b22'">forestgreen</button><button style='background-color:
#6b8e23;' OnClick="document.bgColor='#6b8e23';
document.body.style.background='#6b8e23'">olive
drab</button><button style='background-color: #6b8e23;'
OnClick="document.bgColor='#6b8e23';
document.body.style.background='#6b8e23'">olivedrab</button><button style='background-color:
#bdb76b;' OnClick="document.bgColor='#bdb76b';
document.body.style.background='#bdb76b'">dark
khaki</button><button style='background-color: #bdb76b;'
OnClick="document.bgColor='#bdb76b';
document.body.style.background='#bdb76b'">darkkhaki</button><button style='background-color:
#f0e68c;' OnClick="document.bgColor='#f0e68c';
document.body.style.background='#f0e68c'">khaki</button><button style='background-color:
#eee8aa;' OnClick="document.bgColor='#eee8aa';
document.body.style.background='#eee8aa'">pale
goldenrod</button><button style='background-color: #eee8aa;'
OnClick="document.bgColor='#eee8aa';
document.body.style.background='#eee8aa'">palegoldenrod</button><button style='background-color:
#fafad2;' OnClick="document.bgColor='#fafad2';
document.body.style.background='#fafad2'">light goldenrod
yellow</button><button style='background-color: #fafad2;'
OnClick="document.bgColor='#fafad2';
document.body.style.background='#fafad2'">lightgoldenrodyellow</button><button style='background-color:
#ffffe0;' OnClick="document.bgColor='#ffffe0';
document.body.style.background='#ffffe0'">light
yellow</button><button style='background-color: #ffffe0;'
OnClick="document.bgColor='#ffffe0';
document.body.style.background='#ffffe0'">lightyellow</button><button style='background-color:
#ffff00;' OnClick="document.bgColor='#ffff00';
document.body.style.background='#ffff00'">yellow</button><button style='background-color:
#ffd700;' OnClick="document.bgColor='#ffd700';
document.body.style.background='#ffd700'">gold</button><button style='background-color:
#eedd82;' OnClick="document.bgColor='#eedd82';
document.body.style.background='#eedd82'">light
goldenrod</button><button style='background-color: #eedd82;'
OnClick="document.bgColor='#eedd82';
document.body.style.background='#eedd82'">lightgoldenrod</button><button style='background-color:
#daa520;' OnClick="document.bgColor='#daa520';
document.body.style.background='#daa520'">goldenrod</button><button style='background-color:
#b8860b;' OnClick="document.bgColor='#b8860b';
document.body.style.background='#b8860b'">dark
goldenrod</button><button style='background-color: #b8860b;'
OnClick="document.bgColor='#b8860b';
document.body.style.background='#b8860b'">darkgoldenrod</button><button style='background-color:
#bc8f8f;' OnClick="document.bgColor='#bc8f8f';
document.body.style.background='#bc8f8f'">rosy
brown</button><button style='background-color: #bc8f8f;'
OnClick="document.bgColor='#bc8f8f';
document.body.style.background='#bc8f8f'">rosybrown</button><button style='background-color:
#cd5c5c;' OnClick="document.bgColor='#cd5c5c';
document.body.style.background='#cd5c5c'">indian
red</button><button style='background-color: #cd5c5c;'
OnClick="document.bgColor='#cd5c5c';
document.body.style.background='#cd5c5c'">indianred</button><button style='background-color:
#8b4513;' OnClick="document.bgColor='#8b4513';
document.body.style.background='#8b4513'">saddle
brown</button><button style='background-color: #8b4513;'
OnClick="document.bgColor='#8b4513';
document.body.style.background='#8b4513'">saddlebrown</button><button style='background-color:
#a0522d;' OnClick="document.bgColor='#a0522d';
document.body.style.background='#a0522d'">sienna</button><button style='background-color:
#cd853f;' OnClick="document.bgColor='#cd853f';
document.body.style.background='#cd853f'">peru</button><button style='background-color:
#deb887;' OnClick="document.bgColor='#deb887';
document.body.style.background='#deb887'">burlywood</button><button style='background-color:
#f5f5dc;' OnClick="document.bgColor='#f5f5dc';
document.body.style.background='#f5f5dc'">beige</button><button style='background-color:
#f5deb3;' OnClick="document.bgColor='#f5deb3';
document.body.style.background='#f5deb3'">wheat</button><button style='background-color:
#f4a460;' OnClick="document.bgColor='#f4a460';
document.body.style.background='#f4a460'">sandy
brown</button><button style='background-color: #f4a460;'
OnClick="document.bgColor='#f4a460';
document.body.style.background='#f4a460'">sandybrown</button><button style='background-color:
#d2b48c;' OnClick="document.bgColor='#d2b48c';
document.body.style.background='#d2b48c'">tan</button><button style='background-color:
#d2691e;' OnClick="document.bgColor='#d2691e';
document.body.style.background='#d2691e'">chocolate</button><button style='background-color:
#b22222;' OnClick="document.bgColor='#b22222';
document.body.style.background='#b22222'">firebrick</button><button style='background-color:
#a52a2a;' OnClick="document.bgColor='#a52a2a';
document.body.style.background='#a52a2a'">brown</button><button style='background-color:
#e9967a;' OnClick="document.bgColor='#e9967a';
document.body.style.background='#e9967a'">dark
salmon</button><button style='background-color: #e9967a;'
OnClick="document.bgColor='#e9967a';
document.body.style.background='#e9967a'">darksalmon</button><button style='background-color:
#fa8072;' OnClick="document.bgColor='#fa8072';
document.body.style.background='#fa8072'">salmon</button><button style='background-color:
#ffa07a;' OnClick="document.bgColor='#ffa07a';
document.body.style.background='#ffa07a'">light
salmon</button><button style='background-color: #ffa07a;'
OnClick="document.bgColor='#ffa07a';
document.body.style.background='#ffa07a'">lightsalmon</button><button style='background-color:
#ffa500;' OnClick="document.bgColor='#ffa500';
document.body.style.background='#ffa500'">orange</button><button style='background-color:
#ff8c00;' OnClick="document.bgColor='#ff8c00';
document.body.style.background='#ff8c00'">dark
orange</button><button style='background-color: #ff8c00;'
OnClick="document.bgColor='#ff8c00';
document.body.style.background='#ff8c00'">darkorange</button><button style='background-color:
#ff7f50;' OnClick="document.bgColor='#ff7f50';
document.body.style.background='#ff7f50'">coral</button><button style='background-color:
#f08080;' OnClick="document.bgColor='#f08080';
document.body.style.background='#f08080'">light
coral</button><button style='background-color: #f08080;'
OnClick="document.bgColor='#f08080';
document.body.style.background='#f08080'">lightcoral</button><button style='background-color:
#ff6347;' OnClick="document.bgColor='#ff6347';
document.body.style.background='#ff6347'">tomato</button><button style='background-color:
#ff4500;' OnClick="document.bgColor='#ff4500';
document.body.style.background='#ff4500'">orange
red</button><button style='background-color: #ff4500;'
OnClick="document.bgColor='#ff4500';
document.body.style.background='#ff4500'">orangered</button><button style='background-color:
#ff0000;' OnClick="document.bgColor='#ff0000';
document.body.style.background='#ff0000'">red</button><button style='background-color:
#ff69b4;' OnClick="document.bgColor='#ff69b4';
document.body.style.background='#ff69b4'">hot
pink</button><button style='background-color: #ff69b4;'
OnClick="document.bgColor='#ff69b4';
document.body.style.background='#ff69b4'">hotpink</button><button style='background-color:
#ff1493;' OnClick="document.bgColor='#ff1493';
document.body.style.background='#ff1493'">deep
pink</button><button style='background-color: #ff1493;'
OnClick="document.bgColor='#ff1493';
document.body.style.background='#ff1493'">deeppink</button><button style='background-color:
#ffc0cb;' OnClick="document.bgColor='#ffc0cb';
document.body.style.background='#ffc0cb'">pink</button><button style='background-color:
#ffb6c1;' OnClick="document.bgColor='#ffb6c1';
document.body.style.background='#ffb6c1'">light
pink</button><button style='background-color: #ffb6c1;'
OnClick="document.bgColor='#ffb6c1';
document.body.style.background='#ffb6c1'">lightpink</button><button style='background-color:
#db7093;' OnClick="document.bgColor='#db7093';
document.body.style.background='#db7093'">pale violet
red</button><button style='background-color: #db7093;'
OnClick="document.bgColor='#db7093';
document.body.style.background='#db7093'">palevioletred</button><button style='background-color:
#b03060;' OnClick="document.bgColor='#b03060';
document.body.style.background='#b03060'">maroon</button><button style='background-color:
#c71585;' OnClick="document.bgColor='#c71585';
document.body.style.background='#c71585'">medium violet
red</button><button style='background-color: #c71585;'
OnClick="document.bgColor='#c71585';
document.body.style.background='#c71585'">mediumvioletred</button><button style='background-color:
#d02090;' OnClick="document.bgColor='#d02090';
document.body.style.background='#d02090'">violet
red</button><button style='background-color: #d02090;'
OnClick="document.bgColor='#d02090';
document.body.style.background='#d02090'">violetred</button><button style='background-color:
#ff00ff;' OnClick="document.bgColor='#ff00ff';
document.body.style.background='#ff00ff'">magenta</button><button style='background-color:
#ee82ee;' OnClick="document.bgColor='#ee82ee';
document.body.style.background='#ee82ee'">violet</button><button style='background-color:
#dda0dd;' OnClick="document.bgColor='#dda0dd';
document.body.style.background='#dda0dd'">plum</button><button style='background-color:
#da70d6;' OnClick="document.bgColor='#da70d6';
document.body.style.background='#da70d6'">orchid</button><button style='background-color:
#ba55d3;' OnClick="document.bgColor='#ba55d3';
document.body.style.background='#ba55d3'">medium
orchid</button><button style='background-color: #ba55d3;'
OnClick="document.bgColor='#ba55d3';
document.body.style.background='#ba55d3'">mediumorchid</button><button style='background-color:
#9932cc;' OnClick="document.bgColor='#9932cc';
document.body.style.background='#9932cc'">dark
orchid</button><button style='background-color: #9932cc;'
OnClick="document.bgColor='#9932cc';
document.body.style.background='#9932cc'">darkorchid</button><button style='background-color:
#9400d3;' OnClick="document.bgColor='#9400d3';
document.body.style.background='#9400d3'">dark
violet</button><button style='background-color: #9400d3;'
OnClick="document.bgColor='#9400d3';
document.body.style.background='#9400d3'">darkviolet</button><button style='background-color:
#8a2be2;' OnClick="document.bgColor='#8a2be2';
document.body.style.background='#8a2be2'">blue
violet</button><button style='background-color: #8a2be2;'
OnClick="document.bgColor='#8a2be2';
document.body.style.background='#8a2be2'">blueviolet</button><button style='background-color:
#a020f0;' OnClick="document.bgColor='#a020f0';
document.body.style.background='#a020f0'">purple</button><button style='background-color:
#9370db;' OnClick="document.bgColor='#9370db';
document.body.style.background='#9370db'">medium
purple</button><button style='background-color: #9370db;'
OnClick="document.bgColor='#9370db';
document.body.style.background='#9370db'">mediumpurple</button><button style='background-color:
#d8bfd8;' OnClick="document.bgColor='#d8bfd8';
document.body.style.background='#d8bfd8'">thistle</button><button style='background-color:
#fffafa;' OnClick="document.bgColor='#fffafa';
document.body.style.background='#fffafa'">snow1</button><button style='background-color:
#eee9e9;' OnClick="document.bgColor='#eee9e9';
document.body.style.background='#eee9e9'">snow2</button><button style='background-color:
#cdc9c9;' OnClick="document.bgColor='#cdc9c9';
document.body.style.background='#cdc9c9'">snow3</button><button style='background-color:
#8b8989;' OnClick="document.bgColor='#8b8989';
document.body.style.background='#8b8989'">snow4</button><button style='background-color:
#fff5ee;' OnClick="document.bgColor='#fff5ee';
document.body.style.background='#fff5ee'">seashell1</button><button style='background-color:
#eee5de;' OnClick="document.bgColor='#eee5de';
document.body.style.background='#eee5de'">seashell2</button><button style='background-color:
#cdc5bf;' OnClick="document.bgColor='#cdc5bf';
document.body.style.background='#cdc5bf'">seashell3</button><button style='background-color:
#8b8682;' OnClick="document.bgColor='#8b8682';
document.body.style.background='#8b8682'">seashell4</button><button style='background-color:
#ffefdb;' OnClick="document.bgColor='#ffefdb';
document.body.style.background='#ffefdb'">antiquewhite1</button><button style='background-color:
#eedfcc;' OnClick="document.bgColor='#eedfcc';
document.body.style.background='#eedfcc'">antiquewhite2</button><button style='background-color:
#cdc0b0;' OnClick="document.bgColor='#cdc0b0';
document.body.style.background='#cdc0b0'">antiquewhite3</button><button style='background-color:
#8b8378;' OnClick="document.bgColor='#8b8378';
document.body.style.background='#8b8378'">antiquewhite4</button><button style='background-color:
#ffe4c4;' OnClick="document.bgColor='#ffe4c4';
document.body.style.background='#ffe4c4'">bisque1</button><button style='background-color:
#eed5b7;' OnClick="document.bgColor='#eed5b7';
document.body.style.background='#eed5b7'">bisque2</button><button style='background-color:
#cdb79e;' OnClick="document.bgColor='#cdb79e';
document.body.style.background='#cdb79e'">bisque3</button><button style='background-color:
#8b7d6b;' OnClick="document.bgColor='#8b7d6b';
document.body.style.background='#8b7d6b'">bisque4</button><button style='background-color:
#ffdab9;' OnClick="document.bgColor='#ffdab9';
document.body.style.background='#ffdab9'">peachpuff1</button><button style='background-color:
#eecbad;' OnClick="document.bgColor='#eecbad';
document.body.style.background='#eecbad'">peachpuff2</button><button style='background-color:
#cdaf95;' OnClick="document.bgColor='#cdaf95';
document.body.style.background='#cdaf95'">peachpuff3</button><button style='background-color:
#8b7765;' OnClick="document.bgColor='#8b7765';
document.body.style.background='#8b7765'">peachpuff4</button><button style='background-color:
#ffdead;' OnClick="document.bgColor='#ffdead';
document.body.style.background='#ffdead'">navajowhite1</button><button style='background-color:
#eecfa1;' OnClick="document.bgColor='#eecfa1';
document.body.style.background='#eecfa1'">navajowhite2</button><button style='background-color:
#cdb38b;' OnClick="document.bgColor='#cdb38b';
document.body.style.background='#cdb38b'">navajowhite3</button><button style='background-color:
#8b795e;' OnClick="document.bgColor='#8b795e';
document.body.style.background='#8b795e'">navajowhite4</button><button style='background-color:
#fffacd;' OnClick="document.bgColor='#fffacd';
document.body.style.background='#fffacd'">lemonchiffon1</button><button style='background-color:
#eee9bf;' OnClick="document.bgColor='#eee9bf';
document.body.style.background='#eee9bf'">lemonchiffon2</button><button style='background-color:
#cdc9a5;' OnClick="document.bgColor='#cdc9a5';
document.body.style.background='#cdc9a5'">lemonchiffon3</button><button style='background-color:
#8b8970;' OnClick="document.bgColor='#8b8970';
document.body.style.background='#8b8970'">lemonchiffon4</button><button style='background-color:
#fff8dc;' OnClick="document.bgColor='#fff8dc';
document.body.style.background='#fff8dc'">cornsilk1</button><button style='background-color:
#eee8cd;' OnClick="document.bgColor='#eee8cd';
document.body.style.background='#eee8cd'">cornsilk2</button><button style='background-color:
#cdc8b1;' OnClick="document.bgColor='#cdc8b1';
document.body.style.background='#cdc8b1'">cornsilk3</button><button style='background-color:
#8b8878;' OnClick="document.bgColor='#8b8878';
document.body.style.background='#8b8878'">cornsilk4</button><button style='background-color:
#fffff0;' OnClick="document.bgColor='#fffff0';
document.body.style.background='#fffff0'">ivory1</button><button style='background-color:
#eeeee0;' OnClick="document.bgColor='#eeeee0';
document.body.style.background='#eeeee0'">ivory2</button><button style='background-color:
#cdcdc1;' OnClick="document.bgColor='#cdcdc1';
document.body.style.background='#cdcdc1'">ivory3</button><button style='background-color:
#8b8b83;' OnClick="document.bgColor='#8b8b83';
document.body.style.background='#8b8b83'">ivory4</button><button style='background-color:
#f0fff0;' OnClick="document.bgColor='#f0fff0';
document.body.style.background='#f0fff0'">honeydew1</button><button style='background-color:
#e0eee0;' OnClick="document.bgColor='#e0eee0';
document.body.style.background='#e0eee0'">honeydew2</button><button style='background-color:
#c1cdc1;' OnClick="document.bgColor='#c1cdc1';
document.body.style.background='#c1cdc1'">honeydew3</button><button style='background-color:
#838b83;' OnClick="document.bgColor='#838b83';
document.body.style.background='#838b83'">honeydew4</button><button style='background-color:
#fff0f5;' OnClick="document.bgColor='#fff0f5';
document.body.style.background='#fff0f5'">lavenderblush1</button><button style='background-color:
#eee0e5;' OnClick="document.bgColor='#eee0e5';
document.body.style.background='#eee0e5'">lavenderblush2</button><button style='background-color:
#cdc1c5;' OnClick="document.bgColor='#cdc1c5';
document.body.style.background='#cdc1c5'">lavenderblush3</button><button style='background-color:
#8b8386;' OnClick="document.bgColor='#8b8386';
document.body.style.background='#8b8386'">lavenderblush4</button><button style='background-color:
#ffe4e1;' OnClick="document.bgColor='#ffe4e1';
document.body.style.background='#ffe4e1'">mistyrose1</button><button style='background-color:
#eed5d2;' OnClick="document.bgColor='#eed5d2';
document.body.style.background='#eed5d2'">mistyrose2</button><button style='background-color:
#cdb7b5;' OnClick="document.bgColor='#cdb7b5';
document.body.style.background='#cdb7b5'">mistyrose3</button><button style='background-color:
#8b7d7b;' OnClick="document.bgColor='#8b7d7b';
document.body.style.background='#8b7d7b'">mistyrose4</button><button style='background-color:
#f0ffff;' OnClick="document.bgColor='#f0ffff';
document.body.style.background='#f0ffff'">azure1</button><button style='background-color:
#e0eeee;' OnClick="document.bgColor='#e0eeee';
document.body.style.background='#e0eeee'">azure2</button><button style='background-color:
#c1cdcd;' OnClick="document.bgColor='#c1cdcd';
document.body.style.background='#c1cdcd'">azure3</button><button style='background-color:
#838b8b;' OnClick="document.bgColor='#838b8b';
document.body.style.background='#838b8b'">azure4</button><button style='background-color:
#836fff;' OnClick="document.bgColor='#836fff';
document.body.style.background='#836fff'">slateblue1</button><button style='background-color:
#7a67ee;' OnClick="document.bgColor='#7a67ee';
document.body.style.background='#7a67ee'">slateblue2</button><button style='background-color:
#6959cd;' OnClick="document.bgColor='#6959cd';
document.body.style.background='#6959cd'">slateblue3</button><button style='background-color:
#473c8b;' OnClick="document.bgColor='#473c8b';
document.body.style.background='#473c8b'">slateblue4</button><button style='background-color:
#4876ff;' OnClick="document.bgColor='#4876ff';
document.body.style.background='#4876ff'">royalblue1</button><button style='background-color:
#436eee;' OnClick="document.bgColor='#436eee';
document.body.style.background='#436eee'">royalblue2</button><button style='background-color:
#3a5fcd;' OnClick="document.bgColor='#3a5fcd';
document.body.style.background='#3a5fcd'">royalblue3</button><button style='background-color:
#27408b;' OnClick="document.bgColor='#27408b';
document.body.style.background='#27408b'">royalblue4</button><button style='background-color:
#0000ff;' OnClick="document.bgColor='#0000ff';
document.body.style.background='#0000ff'">blue1</button><button style='background-color:
#0000ee;' OnClick="document.bgColor='#0000ee';
document.body.style.background='#0000ee'">blue2</button><button style='background-color:
#0000cd;' OnClick="document.bgColor='#0000cd';
document.body.style.background='#0000cd'">blue3</button><button style='background-color:
#00008b;' OnClick="document.bgColor='#00008b';
document.body.style.background='#00008b'">blue4</button><button style='background-color:
#1e90ff;' OnClick="document.bgColor='#1e90ff';
document.body.style.background='#1e90ff'">dodgerblue1</button><button style='background-color:
#1c86ee;' OnClick="document.bgColor='#1c86ee';
document.body.style.background='#1c86ee'">dodgerblue2</button><button style='background-color:
#1874cd;' OnClick="document.bgColor='#1874cd';
document.body.style.background='#1874cd'">dodgerblue3</button><button style='background-color:
#104e8b;' OnClick="document.bgColor='#104e8b';
document.body.style.background='#104e8b'">dodgerblue4</button><button style='background-color:
#63b8ff;' OnClick="document.bgColor='#63b8ff';
document.body.style.background='#63b8ff'">steelblue1</button><button style='background-color:
#5cacee;' OnClick="document.bgColor='#5cacee';
document.body.style.background='#5cacee'">steelblue2</button><button style='background-color:
#4f94cd;' OnClick="document.bgColor='#4f94cd';
document.body.style.background='#4f94cd'">steelblue3</button><button style='background-color:
#36648b;' OnClick="document.bgColor='#36648b';
document.body.style.background='#36648b'">steelblue4</button><button style='background-color:
#00bfff;' OnClick="document.bgColor='#00bfff';
document.body.style.background='#00bfff'">deepskyblue1</button><button style='background-color:
#00b2ee;' OnClick="document.bgColor='#00b2ee';
document.body.style.background='#00b2ee'">deepskyblue2</button><button style='background-color:
#009acd;' OnClick="document.bgColor='#009acd';
document.body.style.background='#009acd'">deepskyblue3</button><button style='background-color:
#00688b;' OnClick="document.bgColor='#00688b';
document.body.style.background='#00688b'">deepskyblue4</button><button style='background-color:
#87ceff;' OnClick="document.bgColor='#87ceff';
document.body.style.background='#87ceff'">skyblue1</button><button style='background-color:
#7ec0ee;' OnClick="document.bgColor='#7ec0ee';
document.body.style.background='#7ec0ee'">skyblue2</button><button style='background-color:
#6ca6cd;' OnClick="document.bgColor='#6ca6cd';
document.body.style.background='#6ca6cd'">skyblue3</button><button style='background-color:
#4a708b;' OnClick="document.bgColor='#4a708b';
document.body.style.background='#4a708b'">skyblue4</button><button style='background-color:
#b0e2ff;' OnClick="document.bgColor='#b0e2ff';
document.body.style.background='#b0e2ff'">lightskyblue1</button><button style='background-color:
#a4d3ee;' OnClick="document.bgColor='#a4d3ee';
document.body.style.background='#a4d3ee'">lightskyblue2</button><button style='background-color:
#8db6cd;' OnClick="document.bgColor='#8db6cd';
document.body.style.background='#8db6cd'">lightskyblue3</button><button style='background-color:
#607b8b;' OnClick="document.bgColor='#607b8b';
document.body.style.background='#607b8b'">lightskyblue4</button><button style='background-color:
#c6e2ff;' OnClick="document.bgColor='#c6e2ff';
document.body.style.background='#c6e2ff'">slategray1</button><button style='background-color:
#b9d3ee;' OnClick="document.bgColor='#b9d3ee';
document.body.style.background='#b9d3ee'">slategray2</button><button style='background-color:
#9fb6cd;' OnClick="document.bgColor='#9fb6cd';
document.body.style.background='#9fb6cd'">slategray3</button><button style='background-color:
#6c7b8b;' OnClick="document.bgColor='#6c7b8b';
document.body.style.background='#6c7b8b'">slategray4</button><button style='background-color:
#cae1ff;' OnClick="document.bgColor='#cae1ff';
document.body.style.background='#cae1ff'">lightsteelblue1</button><button style='background-color:
#bcd2ee;' OnClick="document.bgColor='#bcd2ee';
document.body.style.background='#bcd2ee'">lightsteelblue2</button><button style='background-color:
#a2b5cd;' OnClick="document.bgColor='#a2b5cd';
document.body.style.background='#a2b5cd'">lightsteelblue3</button><button style='background-color:
#6e7b8b;' OnClick="document.bgColor='#6e7b8b';
document.body.style.background='#6e7b8b'">lightsteelblue4</button><button style='background-color:
#bfefff;' OnClick="document.bgColor='#bfefff';
document.body.style.background='#bfefff'">lightblue1</button><button style='background-color:
#b2dfee;' OnClick="document.bgColor='#b2dfee';
document.body.style.background='#b2dfee'">lightblue2</button><button style='background-color:
#9ac0cd;' OnClick="document.bgColor='#9ac0cd';
document.body.style.background='#9ac0cd'">lightblue3</button><button style='background-color:
#68838b;' OnClick="document.bgColor='#68838b';
document.body.style.background='#68838b'">lightblue4</button><button style='background-color:
#e0ffff;' OnClick="document.bgColor='#e0ffff';
document.body.style.background='#e0ffff'">lightcyan1</button><button style='background-color:
#d1eeee;' OnClick="document.bgColor='#d1eeee';
document.body.style.background='#d1eeee'">lightcyan2</button><button style='background-color:
#b4cdcd;' OnClick="document.bgColor='#b4cdcd';
document.body.style.background='#b4cdcd'">lightcyan3</button><button style='background-color:
#7a8b8b;' OnClick="document.bgColor='#7a8b8b';
document.body.style.background='#7a8b8b'">lightcyan4</button><button style='background-color:
#bbffff;' OnClick="document.bgColor='#bbffff';
document.body.style.background='#bbffff'">paleturquoise1</button><button style='background-color:
#aeeeee;' OnClick="document.bgColor='#aeeeee';
document.body.style.background='#aeeeee'">paleturquoise2</button><button style='background-color:
#96cdcd;' OnClick="document.bgColor='#96cdcd';
document.body.style.background='#96cdcd'">paleturquoise3</button><button style='background-color:
#668b8b;' OnClick="document.bgColor='#668b8b';
document.body.style.background='#668b8b'">paleturquoise4</button><button style='background-color:
#98f5ff;' OnClick="document.bgColor='#98f5ff';
document.body.style.background='#98f5ff'">cadetblue1</button><button style='background-color:
#8ee5ee;' OnClick="document.bgColor='#8ee5ee';
document.body.style.background='#8ee5ee'">cadetblue2</button><button style='background-color:
#7ac5cd;' OnClick="document.bgColor='#7ac5cd';
document.body.style.background='#7ac5cd'">cadetblue3</button><button style='background-color:
#53868b;' OnClick="document.bgColor='#53868b';
document.body.style.background='#53868b'">cadetblue4</button><button style='background-color:
#00f5ff;' OnClick="document.bgColor='#00f5ff';
document.body.style.background='#00f5ff'">turquoise1</button><button style='background-color:
#00e5ee;' OnClick="document.bgColor='#00e5ee';
document.body.style.background='#00e5ee'">turquoise2</button><button style='background-color:
#00c5cd;' OnClick="document.bgColor='#00c5cd';
document.body.style.background='#00c5cd'">turquoise3</button><button style='background-color:
#00868b;' OnClick="document.bgColor='#00868b';
document.body.style.background='#00868b'">turquoise4</button><button style='background-color:
#00ffff;' OnClick="document.bgColor='#00ffff';
document.body.style.background='#00ffff'">cyan1</button><button style='background-color:
#00eeee;' OnClick="document.bgColor='#00eeee';
document.body.style.background='#00eeee'">cyan2</button><button style='background-color:
#00cdcd;' OnClick="document.bgColor='#00cdcd';
document.body.style.background='#00cdcd'">cyan3</button><button style='background-color:
#008b8b;' OnClick="document.bgColor='#008b8b';
document.body.style.background='#008b8b'">cyan4</button><button style='background-color:
#97ffff;' OnClick="document.bgColor='#97ffff';
document.body.style.background='#97ffff'">darkslategray1</button><button style='background-color:
#8deeee;' OnClick="document.bgColor='#8deeee';
document.body.style.background='#8deeee'">darkslategray2</button><button style='background-color:
#79cdcd;' OnClick="document.bgColor='#79cdcd';
document.body.style.background='#79cdcd'">darkslategray3</button><button style='background-color:
#528b8b;' OnClick="document.bgColor='#528b8b';
document.body.style.background='#528b8b'">darkslategray4</button><button style='background-color:
#7fffd4;' OnClick="document.bgColor='#7fffd4';
document.body.style.background='#7fffd4'">aquamarine1</button><button style='background-color:
#76eec6;' OnClick="document.bgColor='#76eec6';
document.body.style.background='#76eec6'">aquamarine2</button><button style='background-color:
#66cdaa;' OnClick="document.bgColor='#66cdaa';
document.body.style.background='#66cdaa'">aquamarine3</button><button style='background-color:
#458b74;' OnClick="document.bgColor='#458b74';
document.body.style.background='#458b74'">aquamarine4</button><button style='background-color:
#c1ffc1;' OnClick="document.bgColor='#c1ffc1';
document.body.style.background='#c1ffc1'">darkseagreen1</button><button style='background-color:
#b4eeb4;' OnClick="document.bgColor='#b4eeb4';
document.body.style.background='#b4eeb4'">darkseagreen2</button><button style='background-color:
#9bcd9b;' OnClick="document.bgColor='#9bcd9b';
document.body.style.background='#9bcd9b'">darkseagreen3</button><button style='background-color:
#698b69;' OnClick="document.bgColor='#698b69';
document.body.style.background='#698b69'">darkseagreen4</button><button style='background-color:
#54ff9f;' OnClick="document.bgColor='#54ff9f';
document.body.style.background='#54ff9f'">seagreen1</button><button style='background-color:
#4eee94;' OnClick="document.bgColor='#4eee94';
document.body.style.background='#4eee94'">seagreen2</button><button style='background-color:
#43cd80;' OnClick="document.bgColor='#43cd80';
document.body.style.background='#43cd80'">seagreen3</button><button style='background-color:
#2e8b57;' OnClick="document.bgColor='#2e8b57';
document.body.style.background='#2e8b57'">seagreen4</button><button style='background-color:
#9aff9a;' OnClick="document.bgColor='#9aff9a';
document.body.style.background='#9aff9a'">palegreen1</button><button style='background-color:
#90ee90;' OnClick="document.bgColor='#90ee90';
document.body.style.background='#90ee90'">palegreen2</button><button style='background-color:
#7ccd7c;' OnClick="document.bgColor='#7ccd7c';
document.body.style.background='#7ccd7c'">palegreen3</button><button style='background-color:
#548b54;' OnClick="document.bgColor='#548b54';
document.body.style.background='#548b54'">palegreen4</button><button style='background-color:
#00ff7f;' OnClick="document.bgColor='#00ff7f';
document.body.style.background='#00ff7f'">springgreen1</button><button style='background-color:
#00ee76;' OnClick="document.bgColor='#00ee76';
document.body.style.background='#00ee76'">springgreen2</button><button style='background-color:
#00cd66;' OnClick="document.bgColor='#00cd66';
document.body.style.background='#00cd66'">springgreen3</button><button style='background-color:
#008b45;' OnClick="document.bgColor='#008b45';
document.body.style.background='#008b45'">springgreen4</button><button style='background-color:
#00ff00;' OnClick="document.bgColor='#00ff00';
document.body.style.background='#00ff00'">green1</button><button style='background-color:
#00ee00;' OnClick="document.bgColor='#00ee00';
document.body.style.background='#00ee00'">green2</button><button style='background-color:
#00cd00;' OnClick="document.bgColor='#00cd00';
document.body.style.background='#00cd00'">green3</button><button style='background-color:
#008b00;' OnClick="document.bgColor='#008b00';
document.body.style.background='#008b00'">green4</button><button style='background-color:
#7fff00;' OnClick="document.bgColor='#7fff00';
document.body.style.background='#7fff00'">chartreuse1</button><button style='background-color:
#76ee00;' OnClick="document.bgColor='#76ee00';
document.body.style.background='#76ee00'">chartreuse2</button><button style='background-color:
#66cd00;' OnClick="document.bgColor='#66cd00';
document.body.style.background='#66cd00'">chartreuse3</button><button style='background-color:
#458b00;' OnClick="document.bgColor='#458b00';
document.body.style.background='#458b00'">chartreuse4</button><button style='background-color:
#c0ff3e;' OnClick="document.bgColor='#c0ff3e';
document.body.style.background='#c0ff3e'">olivedrab1</button><button style='background-color:
#b3ee3a;' OnClick="document.bgColor='#b3ee3a';
document.body.style.background='#b3ee3a'">olivedrab2</button><button style='background-color:
#9acd32;' OnClick="document.bgColor='#9acd32';
document.body.style.background='#9acd32'">olivedrab3</button><button style='background-color:
#698b22;' OnClick="document.bgColor='#698b22';
document.body.style.background='#698b22'">olivedrab4</button><button style='background-color:
#caff70;' OnClick="document.bgColor='#caff70';
document.body.style.background='#caff70'">darkolivegreen1</button><button style='background-color:
#bcee68;' OnClick="document.bgColor='#bcee68';
document.body.style.background='#bcee68'">darkolivegreen2</button><button style='background-color:
#a2cd5a;' OnClick="document.bgColor='#a2cd5a';
document.body.style.background='#a2cd5a'">darkolivegreen3</button><button style='background-color:
#6e8b3d;' OnClick="document.bgColor='#6e8b3d';
document.body.style.background='#6e8b3d'">darkolivegreen4</button><button style='background-color:
#fff68f;' OnClick="document.bgColor='#fff68f';
document.body.style.background='#fff68f'">khaki1</button><button style='background-color:
#eee685;' OnClick="document.bgColor='#eee685';
document.body.style.background='#eee685'">khaki2</button><button style='background-color:
#cdc673;' OnClick="document.bgColor='#cdc673';
document.body.style.background='#cdc673'">khaki3</button><button style='background-color:
#8b864e;' OnClick="document.bgColor='#8b864e';
document.body.style.background='#8b864e'">khaki4</button><button style='background-color:
#ffec8b;' OnClick="document.bgColor='#ffec8b';
document.body.style.background='#ffec8b'">lightgoldenrod1</button><button style='background-color:
#eedc82;' OnClick="document.bgColor='#eedc82';
document.body.style.background='#eedc82'">lightgoldenrod2</button><button style='background-color:
#cdbe70;' OnClick="document.bgColor='#cdbe70';
document.body.style.background='#cdbe70'">lightgoldenrod3</button><button style='background-color:
#8b814c;' OnClick="document.bgColor='#8b814c';
document.body.style.background='#8b814c'">lightgoldenrod4</button><button style='background-color:
#ffffe0;' OnClick="document.bgColor='#ffffe0';
document.body.style.background='#ffffe0'">lightyellow1</button><button style='background-color:
#eeeed1;' OnClick="document.bgColor='#eeeed1';
document.body.style.background='#eeeed1'">lightyellow2</button><button style='background-color:
#cdcdb4;' OnClick="document.bgColor='#cdcdb4';
document.body.style.background='#cdcdb4'">lightyellow3</button><button style='background-color:
#8b8b7a;' OnClick="document.bgColor='#8b8b7a';
document.body.style.background='#8b8b7a'">lightyellow4</button><button style='background-color:
#ffff00;' OnClick="document.bgColor='#ffff00';
document.body.style.background='#ffff00'">yellow1</button><button style='background-color:
#eeee00;' OnClick="document.bgColor='#eeee00';
document.body.style.background='#eeee00'">yellow2</button><button style='background-color:
#cdcd00;' OnClick="document.bgColor='#cdcd00';
document.body.style.background='#cdcd00'">yellow3</button><button style='background-color:
#8b8b00;' OnClick="document.bgColor='#8b8b00';
document.body.style.background='#8b8b00'">yellow4</button><button style='background-color:
#ffd700;' OnClick="document.bgColor='#ffd700';
document.body.style.background='#ffd700'">gold1</button><button style='background-color:
#eec900;' OnClick="document.bgColor='#eec900';
document.body.style.background='#eec900'">gold2</button><button style='background-color:
#cdad00;' OnClick="document.bgColor='#cdad00';
document.body.style.background='#cdad00'">gold3</button><button style='background-color:
#8b7500;' OnClick="document.bgColor='#8b7500';
document.body.style.background='#8b7500'">gold4</button><button style='background-color:
#ffc125;' OnClick="document.bgColor='#ffc125';
document.body.style.background='#ffc125'">goldenrod1</button><button style='background-color:
#eeb422;' OnClick="document.bgColor='#eeb422';
document.body.style.background='#eeb422'">goldenrod2</button><button style='background-color:
#cd9b1d;' OnClick="document.bgColor='#cd9b1d';
document.body.style.background='#cd9b1d'">goldenrod3</button><button style='background-color:
#8b6914;' OnClick="document.bgColor='#8b6914';
document.body.style.background='#8b6914'">goldenrod4</button><button style='background-color:
#ffb90f;' OnClick="document.bgColor='#ffb90f';
document.body.style.background='#ffb90f'">darkgoldenrod1</button><button style='background-color:
#eead0e;' OnClick="document.bgColor='#eead0e';
document.body.style.background='#eead0e'">darkgoldenrod2</button><button style='background-color:
#cd950c;' OnClick="document.bgColor='#cd950c';
document.body.style.background='#cd950c'">darkgoldenrod3</button><button style='background-color:
#8b6508;' OnClick="document.bgColor='#8b6508';
document.body.style.background='#8b6508'">darkgoldenrod4</button><button style='background-color:
#ffc1c1;' OnClick="document.bgColor='#ffc1c1';
document.body.style.background='#ffc1c1'">rosybrown1</button><button style='background-color:
#eeb4b4;' OnClick="document.bgColor='#eeb4b4';
document.body.style.background='#eeb4b4'">rosybrown2</button><button style='background-color:
#cd9b9b;' OnClick="document.bgColor='#cd9b9b';
document.body.style.background='#cd9b9b'">rosybrown3</button><button style='background-color:
#8b6969;' OnClick="document.bgColor='#8b6969';
document.body.style.background='#8b6969'">rosybrown4</button><button style='background-color:
#ff6a6a;' OnClick="document.bgColor='#ff6a6a';
document.body.style.background='#ff6a6a'">indianred1</button><button style='background-color:
#ee6363;' OnClick="document.bgColor='#ee6363';
document.body.style.background='#ee6363'">indianred2</button><button style='background-color:
#cd5555;' OnClick="document.bgColor='#cd5555';
document.body.style.background='#cd5555'">indianred3</button><button style='background-color:
#8b3a3a;' OnClick="document.bgColor='#8b3a3a';
document.body.style.background='#8b3a3a'">indianred4</button><button style='background-color:
#ff8247;' OnClick="document.bgColor='#ff8247';
document.body.style.background='#ff8247'">sienna1</button><button style='background-color:
#ee7942;' OnClick="document.bgColor='#ee7942';
document.body.style.background='#ee7942'">sienna2</button><button style='background-color:
#cd6839;' OnClick="document.bgColor='#cd6839';
document.body.style.background='#cd6839'">sienna3</button><button style='background-color:
#8b4726;' OnClick="document.bgColor='#8b4726';
document.body.style.background='#8b4726'">sienna4</button><button style='background-color:
#ffd39b;' OnClick="document.bgColor='#ffd39b';
document.body.style.background='#ffd39b'">burlywood1</button><button style='background-color:
#eec591;' OnClick="document.bgColor='#eec591';
document.body.style.background='#eec591'">burlywood2</button><button style='background-color:
#cdaa7d;' OnClick="document.bgColor='#cdaa7d';
document.body.style.background='#cdaa7d'">burlywood3</button><button style='background-color:
#8b7355;' OnClick="document.bgColor='#8b7355';
document.body.style.background='#8b7355'">burlywood4</button><button style='background-color:
#ffe7ba;' OnClick="document.bgColor='#ffe7ba';
document.body.style.background='#ffe7ba'">wheat1</button><button style='background-color:
#eed8ae;' OnClick="document.bgColor='#eed8ae';
document.body.style.background='#eed8ae'">wheat2</button><button style='background-color:
#cdba96;' OnClick="document.bgColor='#cdba96';
document.body.style.background='#cdba96'">wheat3</button><button style='background-color:
#8b7e66;' OnClick="document.bgColor='#8b7e66';
document.body.style.background='#8b7e66'">wheat4</button><button style='background-color:
#ffa54f;' OnClick="document.bgColor='#ffa54f';
document.body.style.background='#ffa54f'">tan1</button><button style='background-color:
#ee9a49;' OnClick="document.bgColor='#ee9a49';
document.body.style.background='#ee9a49'">tan2</button><button style='background-color:
#cd853f;' OnClick="document.bgColor='#cd853f';
document.body.style.background='#cd853f'">tan3</button><button style='background-color:
#8b5a2b;' OnClick="document.bgColor='#8b5a2b';
document.body.style.background='#8b5a2b'">tan4</button><button style='background-color:
#ff7f24;' OnClick="document.bgColor='#ff7f24';
document.body.style.background='#ff7f24'">chocolate1</button><button style='background-color:
#ee7621;' OnClick="document.bgColor='#ee7621';
document.body.style.background='#ee7621'">chocolate2</button><button style='background-color:
#cd661d;' OnClick="document.bgColor='#cd661d';
document.body.style.background='#cd661d'">chocolate3</button><button style='background-color:
#8b4513;' OnClick="document.bgColor='#8b4513';
document.body.style.background='#8b4513'">chocolate4</button><button style='background-color:
#ff3030;' OnClick="document.bgColor='#ff3030';
document.body.style.background='#ff3030'">firebrick1</button><button style='background-color:
#ee2c2c;' OnClick="document.bgColor='#ee2c2c';
document.body.style.background='#ee2c2c'">firebrick2</button><button style='background-color:
#cd2626;' OnClick="document.bgColor='#cd2626';
document.body.style.background='#cd2626'">firebrick3</button><button style='background-color:
#8b1a1a;' OnClick="document.bgColor='#8b1a1a';
document.body.style.background='#8b1a1a'">firebrick4</button><button style='background-color:
#ff4040;' OnClick="document.bgColor='#ff4040';
document.body.style.background='#ff4040'">brown1</button><button style='background-color:
#ee3b3b;' OnClick="document.bgColor='#ee3b3b';
document.body.style.background='#ee3b3b'">brown2</button><button style='background-color:
#cd3333;' OnClick="document.bgColor='#cd3333';
document.body.style.background='#cd3333'">brown3</button><button style='background-color:
#8b2323;' OnClick="document.bgColor='#8b2323';
document.body.style.background='#8b2323'">brown4</button><button style='background-color:
#ff8c69;' OnClick="document.bgColor='#ff8c69';
document.body.style.background='#ff8c69'">salmon1</button><button style='background-color:
#ee8262;' OnClick="document.bgColor='#ee8262';
document.body.style.background='#ee8262'">salmon2</button><button style='background-color:
#cd7054;' OnClick="document.bgColor='#cd7054';
document.body.style.background='#cd7054'">salmon3</button><button style='background-color:
#8b4c39;' OnClick="document.bgColor='#8b4c39';
document.body.style.background='#8b4c39'">salmon4</button><button style='background-color: