pixelflow_canvas 0.7.7 → 0.7.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/docs/advanced_use.md +3 -3
- data/docs/drawing_things.md +38 -38
- data/docs/index.md +4 -4
- data/docs/palettes.md +442 -90
- data/docs/render-docs.rb +7 -1
- data/lib/pixelflow_canvas/version.rb +1 -1
- data/lib/pixelflow_canvas.rb +64 -26
- metadata +3 -6
data/docs/palettes.md
CHANGED
|
@@ -39,13 +39,13 @@ Pixelflow Canvas comes with a number of predefined palettes that you can use in
|
|
|
39
39
|
To set a predefined palette, use the `set_predefined_palette` method:
|
|
40
40
|
|
|
41
41
|
```ruby
|
|
42
|
-
|
|
42
|
+
set_predefined_palette(:cling)
|
|
43
43
|
```
|
|
44
44
|
|
|
45
45
|
You can also change individual colors in a palette using the `set_palette_color` method:
|
|
46
46
|
|
|
47
47
|
```ruby
|
|
48
|
-
|
|
48
|
+
set_palette(0, 0x14, 0x34, 0x64)
|
|
49
49
|
```
|
|
50
50
|
|
|
51
51
|
This sets the color number 0 to a deep blue. Changing a palette color will affect all pixels that use that color in the canvas immediately. This means you can do palette animations by changing the palette colors over time.
|
|
@@ -54,14 +54,22 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
54
54
|
|
|
55
55
|
<!-- palettes start -->
|
|
56
56
|
|
|
57
|
-
####
|
|
57
|
+
#### 1bit monitor glow
|
|
58
|
+
|
|
59
|
+
```ruby
|
|
60
|
+
set_predefined_palette(:1bit_monitor_glow)
|
|
61
|
+
```
|
|
58
62
|
|
|
59
63
|
<div class='swatches'>
|
|
60
64
|
<span style='background-color: #222323'><span>0</span></span>
|
|
61
65
|
<span style='background-color: #f0f6f0'><span>1</span></span>
|
|
62
66
|
</div>
|
|
63
67
|
|
|
64
|
-
####
|
|
68
|
+
#### Aap 64
|
|
69
|
+
|
|
70
|
+
```ruby
|
|
71
|
+
set_predefined_palette(:aap_64)
|
|
72
|
+
```
|
|
65
73
|
|
|
66
74
|
<div class='swatches'>
|
|
67
75
|
<span style='background-color: #060608'><span>0</span></span>
|
|
@@ -130,7 +138,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
130
138
|
<span style='background-color: #423934'><span>63</span></span>
|
|
131
139
|
</div>
|
|
132
140
|
|
|
133
|
-
####
|
|
141
|
+
#### Aerugo
|
|
142
|
+
|
|
143
|
+
```ruby
|
|
144
|
+
set_predefined_palette(:aerugo)
|
|
145
|
+
```
|
|
134
146
|
|
|
135
147
|
<div class='swatches'>
|
|
136
148
|
<span style='background-color: #2f1e1a'><span>0</span></span>
|
|
@@ -167,7 +179,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
167
179
|
<span style='background-color: #5e4835'><span>31</span></span>
|
|
168
180
|
</div>
|
|
169
181
|
|
|
170
|
-
####
|
|
182
|
+
#### Apollo
|
|
183
|
+
|
|
184
|
+
```ruby
|
|
185
|
+
set_predefined_palette(:apollo)
|
|
186
|
+
```
|
|
171
187
|
|
|
172
188
|
<div class='swatches'>
|
|
173
189
|
<span style='background-color: #172038'><span>0</span></span>
|
|
@@ -218,7 +234,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
218
234
|
<span style='background-color: #ebede9'><span>45</span></span>
|
|
219
235
|
</div>
|
|
220
236
|
|
|
221
|
-
####
|
|
237
|
+
#### Blk neo
|
|
238
|
+
|
|
239
|
+
```ruby
|
|
240
|
+
set_predefined_palette(:blk_neo)
|
|
241
|
+
```
|
|
222
242
|
|
|
223
243
|
<div class='swatches'>
|
|
224
244
|
<span style='background-color: #000000'><span>0</span></span>
|
|
@@ -269,7 +289,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
269
289
|
<span style='background-color: #008782'><span>45</span></span>
|
|
270
290
|
</div>
|
|
271
291
|
|
|
272
|
-
####
|
|
292
|
+
#### Calm sunset
|
|
293
|
+
|
|
294
|
+
```ruby
|
|
295
|
+
set_predefined_palette(:calm_sunset)
|
|
296
|
+
```
|
|
273
297
|
|
|
274
298
|
<div class='swatches'>
|
|
275
299
|
<span style='background-color: #684971'><span>0</span></span>
|
|
@@ -281,7 +305,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
281
305
|
<span style='background-color: #fffcf1'><span>6</span></span>
|
|
282
306
|
</div>
|
|
283
307
|
|
|
284
|
-
####
|
|
308
|
+
#### Carnival 32
|
|
309
|
+
|
|
310
|
+
```ruby
|
|
311
|
+
set_predefined_palette(:carnival_32)
|
|
312
|
+
```
|
|
285
313
|
|
|
286
314
|
<div class='swatches'>
|
|
287
315
|
<span style='background-color: #4d2235'><span>0</span></span>
|
|
@@ -318,7 +346,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
318
346
|
<span style='background-color: #8b7463'><span>31</span></span>
|
|
319
347
|
</div>
|
|
320
348
|
|
|
321
|
-
####
|
|
349
|
+
#### Cc 29
|
|
350
|
+
|
|
351
|
+
```ruby
|
|
352
|
+
set_predefined_palette(:cc_29)
|
|
353
|
+
```
|
|
322
354
|
|
|
323
355
|
<div class='swatches'>
|
|
324
356
|
<span style='background-color: #f2f0e5'><span>0</span></span>
|
|
@@ -352,7 +384,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
352
384
|
<span style='background-color: #5f556a'><span>28</span></span>
|
|
353
385
|
</div>
|
|
354
386
|
|
|
355
|
-
####
|
|
387
|
+
#### Cga palette 1 high
|
|
388
|
+
|
|
389
|
+
```ruby
|
|
390
|
+
set_predefined_palette(:cga_palette_1_high)
|
|
391
|
+
```
|
|
356
392
|
|
|
357
393
|
<div class='swatches'>
|
|
358
394
|
<span style='background-color: #000000'><span>0</span></span>
|
|
@@ -361,7 +397,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
361
397
|
<span style='background-color: #ffffff'><span>3</span></span>
|
|
362
398
|
</div>
|
|
363
399
|
|
|
364
|
-
####
|
|
400
|
+
#### Cling
|
|
401
|
+
|
|
402
|
+
```ruby
|
|
403
|
+
set_predefined_palette(:cling)
|
|
404
|
+
```
|
|
365
405
|
|
|
366
406
|
<div class='swatches'>
|
|
367
407
|
<span style='background-color: #ffe617'><span>0</span></span>
|
|
@@ -410,7 +450,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
410
450
|
<span style='background-color: #ffffff'><span>43</span></span>
|
|
411
451
|
</div>
|
|
412
452
|
|
|
413
|
-
####
|
|
453
|
+
#### Cloudy 28
|
|
454
|
+
|
|
455
|
+
```ruby
|
|
456
|
+
set_predefined_palette(:cloudy_28)
|
|
457
|
+
```
|
|
414
458
|
|
|
415
459
|
<div class='swatches'>
|
|
416
460
|
<span style='background-color: #daddee'><span>0</span></span>
|
|
@@ -443,7 +487,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
443
487
|
<span style='background-color: #5a6685'><span>27</span></span>
|
|
444
488
|
</div>
|
|
445
489
|
|
|
446
|
-
####
|
|
490
|
+
#### Color graphics adapter
|
|
491
|
+
|
|
492
|
+
```ruby
|
|
493
|
+
set_predefined_palette(:color_graphics_adapter)
|
|
494
|
+
```
|
|
447
495
|
|
|
448
496
|
<div class='swatches'>
|
|
449
497
|
<span style='background-color: #000000'><span>0</span></span>
|
|
@@ -464,7 +512,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
464
512
|
<span style='background-color: #ffff55'><span>15</span></span>
|
|
465
513
|
</div>
|
|
466
514
|
|
|
467
|
-
####
|
|
515
|
+
#### Colordome 32
|
|
516
|
+
|
|
517
|
+
```ruby
|
|
518
|
+
set_predefined_palette(:colordome_32)
|
|
519
|
+
```
|
|
468
520
|
|
|
469
521
|
<div class='swatches'>
|
|
470
522
|
<span style='background-color: #0d0b0d'><span>0</span></span>
|
|
@@ -501,7 +553,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
501
553
|
<span style='background-color: #d55c4d'><span>31</span></span>
|
|
502
554
|
</div>
|
|
503
555
|
|
|
504
|
-
####
|
|
556
|
+
#### Comicscapes 50
|
|
557
|
+
|
|
558
|
+
```ruby
|
|
559
|
+
set_predefined_palette(:comicscapes_50)
|
|
560
|
+
```
|
|
505
561
|
|
|
506
562
|
<div class='swatches'>
|
|
507
563
|
<span style='background-color: #8ec5b5'><span>0</span></span>
|
|
@@ -556,7 +612,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
556
612
|
<span style='background-color: #952452'><span>49</span></span>
|
|
557
613
|
</div>
|
|
558
614
|
|
|
559
|
-
####
|
|
615
|
+
#### Crimson
|
|
616
|
+
|
|
617
|
+
```ruby
|
|
618
|
+
set_predefined_palette(:crimson)
|
|
619
|
+
```
|
|
560
620
|
|
|
561
621
|
<div class='swatches'>
|
|
562
622
|
<span style='background-color: #eff9d6'><span>0</span></span>
|
|
@@ -565,7 +625,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
565
625
|
<span style='background-color: #1b0326'><span>3</span></span>
|
|
566
626
|
</div>
|
|
567
627
|
|
|
568
|
-
####
|
|
628
|
+
#### Cryptic ocean
|
|
629
|
+
|
|
630
|
+
```ruby
|
|
631
|
+
set_predefined_palette(:cryptic_ocean)
|
|
632
|
+
```
|
|
569
633
|
|
|
570
634
|
<div class='swatches'>
|
|
571
635
|
<span style='background-color: #2a173b'><span>0</span></span>
|
|
@@ -576,7 +640,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
576
640
|
<span style='background-color: #95c5ac'><span>5</span></span>
|
|
577
641
|
</div>
|
|
578
642
|
|
|
579
|
-
####
|
|
643
|
+
#### Darkvania
|
|
644
|
+
|
|
645
|
+
```ruby
|
|
646
|
+
set_predefined_palette(:darkvania)
|
|
647
|
+
```
|
|
580
648
|
|
|
581
649
|
<div class='swatches'>
|
|
582
650
|
<span style='background-color: #120e2f'><span>0</span></span>
|
|
@@ -613,7 +681,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
613
681
|
<span style='background-color: #102f2e'><span>31</span></span>
|
|
614
682
|
</div>
|
|
615
683
|
|
|
616
|
-
####
|
|
684
|
+
#### Daydream 20
|
|
685
|
+
|
|
686
|
+
```ruby
|
|
687
|
+
set_predefined_palette(:daydream_20)
|
|
688
|
+
```
|
|
617
689
|
|
|
618
690
|
<div class='swatches'>
|
|
619
691
|
<span style='background-color: #430f43'><span>0</span></span>
|
|
@@ -638,7 +710,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
638
710
|
<span style='background-color: #ed9b4a'><span>19</span></span>
|
|
639
711
|
</div>
|
|
640
712
|
|
|
641
|
-
####
|
|
713
|
+
#### Dreamscape8
|
|
714
|
+
|
|
715
|
+
```ruby
|
|
716
|
+
set_predefined_palette(:dreamscape8)
|
|
717
|
+
```
|
|
642
718
|
|
|
643
719
|
<div class='swatches'>
|
|
644
720
|
<span style='background-color: #c9cca1'><span>0</span></span>
|
|
@@ -651,7 +727,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
651
727
|
<span style='background-color: #8ea091'><span>7</span></span>
|
|
652
728
|
</div>
|
|
653
729
|
|
|
654
|
-
####
|
|
730
|
+
#### Ega com extended
|
|
731
|
+
|
|
732
|
+
```ruby
|
|
733
|
+
set_predefined_palette(:ega_com_extended)
|
|
734
|
+
```
|
|
655
735
|
|
|
656
736
|
<div class='swatches'>
|
|
657
737
|
<span style='background-color: #292929'><span>0</span></span>
|
|
@@ -676,7 +756,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
676
756
|
<span style='background-color: #eb7272'><span>19</span></span>
|
|
677
757
|
</div>
|
|
678
758
|
|
|
679
|
-
####
|
|
759
|
+
#### Eggdealer6
|
|
760
|
+
|
|
761
|
+
```ruby
|
|
762
|
+
set_predefined_palette(:eggdealer6)
|
|
763
|
+
```
|
|
680
764
|
|
|
681
765
|
<div class='swatches'>
|
|
682
766
|
<span style='background-color: #47323b'><span>0</span></span>
|
|
@@ -687,7 +771,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
687
771
|
<span style='background-color: #e9d79d'><span>5</span></span>
|
|
688
772
|
</div>
|
|
689
773
|
|
|
690
|
-
####
|
|
774
|
+
#### Endesga 32
|
|
775
|
+
|
|
776
|
+
```ruby
|
|
777
|
+
set_predefined_palette(:endesga_32)
|
|
778
|
+
```
|
|
691
779
|
|
|
692
780
|
<div class='swatches'>
|
|
693
781
|
<span style='background-color: #be4a2f'><span>0</span></span>
|
|
@@ -724,7 +812,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
724
812
|
<span style='background-color: #c28569'><span>31</span></span>
|
|
725
813
|
</div>
|
|
726
814
|
|
|
727
|
-
####
|
|
815
|
+
#### Endesga 64
|
|
816
|
+
|
|
817
|
+
```ruby
|
|
818
|
+
set_predefined_palette(:endesga_64)
|
|
819
|
+
```
|
|
728
820
|
|
|
729
821
|
<div class='swatches'>
|
|
730
822
|
<span style='background-color: #ff0040'><span>0</span></span>
|
|
@@ -793,7 +885,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
793
885
|
<span style='background-color: #571c27'><span>63</span></span>
|
|
794
886
|
</div>
|
|
795
887
|
|
|
796
|
-
####
|
|
888
|
+
#### Eroge copper
|
|
889
|
+
|
|
890
|
+
```ruby
|
|
891
|
+
set_predefined_palette(:eroge_copper)
|
|
892
|
+
```
|
|
797
893
|
|
|
798
894
|
<div class='swatches'>
|
|
799
895
|
<span style='background-color: #0d080d'><span>0</span></span>
|
|
@@ -814,7 +910,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
814
910
|
<span style='background-color: #e89973'><span>15</span></span>
|
|
815
911
|
</div>
|
|
816
912
|
|
|
817
|
-
####
|
|
913
|
+
#### Famicube
|
|
914
|
+
|
|
915
|
+
```ruby
|
|
916
|
+
set_predefined_palette(:famicube)
|
|
917
|
+
```
|
|
818
918
|
|
|
819
919
|
<div class='swatches'>
|
|
820
920
|
<span style='background-color: #000000'><span>0</span></span>
|
|
@@ -883,7 +983,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
883
983
|
<span style='background-color: #00177d'><span>63</span></span>
|
|
884
984
|
</div>
|
|
885
985
|
|
|
886
|
-
####
|
|
986
|
+
#### Fantasy 24
|
|
987
|
+
|
|
988
|
+
```ruby
|
|
989
|
+
set_predefined_palette(:fantasy_24)
|
|
990
|
+
```
|
|
887
991
|
|
|
888
992
|
<div class='swatches'>
|
|
889
993
|
<span style='background-color: #1f240a'><span>0</span></span>
|
|
@@ -912,7 +1016,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
912
1016
|
<span style='background-color: #300f0a'><span>23</span></span>
|
|
913
1017
|
</div>
|
|
914
1018
|
|
|
915
|
-
####
|
|
1019
|
+
#### Faraway48
|
|
1020
|
+
|
|
1021
|
+
```ruby
|
|
1022
|
+
set_predefined_palette(:faraway48)
|
|
1023
|
+
```
|
|
916
1024
|
|
|
917
1025
|
<div class='swatches'>
|
|
918
1026
|
<span style='background-color: #0d0709'><span>0</span></span>
|
|
@@ -965,7 +1073,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
965
1073
|
<span style='background-color: #f1f2f1'><span>47</span></span>
|
|
966
1074
|
</div>
|
|
967
1075
|
|
|
968
|
-
####
|
|
1076
|
+
#### Fleja master palette
|
|
1077
|
+
|
|
1078
|
+
```ruby
|
|
1079
|
+
set_predefined_palette(:fleja_master_palette)
|
|
1080
|
+
```
|
|
969
1081
|
|
|
970
1082
|
<div class='swatches'>
|
|
971
1083
|
<span style='background-color: #1f1833'><span>0</span></span>
|
|
@@ -1003,7 +1115,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
1003
1115
|
<span style='background-color: #852d66'><span>32</span></span>
|
|
1004
1116
|
</div>
|
|
1005
1117
|
|
|
1006
|
-
####
|
|
1118
|
+
#### Florentine24
|
|
1119
|
+
|
|
1120
|
+
```ruby
|
|
1121
|
+
set_predefined_palette(:florentine24)
|
|
1122
|
+
```
|
|
1007
1123
|
|
|
1008
1124
|
<div class='swatches'>
|
|
1009
1125
|
<span style='background-color: #175145'><span>0</span></span>
|
|
@@ -1032,7 +1148,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
1032
1148
|
<span style='background-color: #35082a'><span>23</span></span>
|
|
1033
1149
|
</div>
|
|
1034
1150
|
|
|
1035
|
-
####
|
|
1151
|
+
#### Funny31
|
|
1152
|
+
|
|
1153
|
+
```ruby
|
|
1154
|
+
set_predefined_palette(:funny31)
|
|
1155
|
+
```
|
|
1036
1156
|
|
|
1037
1157
|
<div class='swatches'>
|
|
1038
1158
|
<span style='background-color: #180a24'><span>0</span></span>
|
|
@@ -1068,7 +1188,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
1068
1188
|
<span style='background-color: #39825b'><span>30</span></span>
|
|
1069
1189
|
</div>
|
|
1070
1190
|
|
|
1071
|
-
####
|
|
1191
|
+
#### Galaxy flame
|
|
1192
|
+
|
|
1193
|
+
```ruby
|
|
1194
|
+
set_predefined_palette(:galaxy_flame)
|
|
1195
|
+
```
|
|
1072
1196
|
|
|
1073
1197
|
<div class='swatches'>
|
|
1074
1198
|
<span style='background-color: #699fad'><span>0</span></span>
|
|
@@ -1089,7 +1213,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
1089
1213
|
<span style='background-color: #151015'><span>15</span></span>
|
|
1090
1214
|
</div>
|
|
1091
1215
|
|
|
1092
|
-
####
|
|
1216
|
+
#### Gob 48
|
|
1217
|
+
|
|
1218
|
+
```ruby
|
|
1219
|
+
set_predefined_palette(:gob_48)
|
|
1220
|
+
```
|
|
1093
1221
|
|
|
1094
1222
|
<div class='swatches'>
|
|
1095
1223
|
<span style='background-color: #000000'><span>0</span></span>
|
|
@@ -1142,7 +1270,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
1142
1270
|
<span style='background-color: #edd5a5'><span>47</span></span>
|
|
1143
1271
|
</div>
|
|
1144
1272
|
|
|
1145
|
-
####
|
|
1273
|
+
#### Gora63
|
|
1274
|
+
|
|
1275
|
+
```ruby
|
|
1276
|
+
set_predefined_palette(:gora63)
|
|
1277
|
+
```
|
|
1146
1278
|
|
|
1147
1279
|
<div class='swatches'>
|
|
1148
1280
|
<span style='background-color: #141b27'><span>0</span></span>
|
|
@@ -1210,7 +1342,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
1210
1342
|
<span style='background-color: #f2cdce'><span>62</span></span>
|
|
1211
1343
|
</div>
|
|
1212
1344
|
|
|
1213
|
-
####
|
|
1345
|
+
#### Hept32
|
|
1346
|
+
|
|
1347
|
+
```ruby
|
|
1348
|
+
set_predefined_palette(:hept32)
|
|
1349
|
+
```
|
|
1214
1350
|
|
|
1215
1351
|
<div class='swatches'>
|
|
1216
1352
|
<span style='background-color: #000000'><span>0</span></span>
|
|
@@ -1247,7 +1383,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
1247
1383
|
<span style='background-color: #3d083b'><span>31</span></span>
|
|
1248
1384
|
</div>
|
|
1249
1385
|
|
|
1250
|
-
####
|
|
1386
|
+
#### Hot sand 6
|
|
1387
|
+
|
|
1388
|
+
```ruby
|
|
1389
|
+
set_predefined_palette(:hot_sand_6)
|
|
1390
|
+
```
|
|
1251
1391
|
|
|
1252
1392
|
<div class='swatches'>
|
|
1253
1393
|
<span style='background-color: #3a0000'><span>0</span></span>
|
|
@@ -1258,7 +1398,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
1258
1398
|
<span style='background-color: #f26d1f'><span>5</span></span>
|
|
1259
1399
|
</div>
|
|
1260
1400
|
|
|
1261
|
-
####
|
|
1401
|
+
#### Ice cream gb
|
|
1402
|
+
|
|
1403
|
+
```ruby
|
|
1404
|
+
set_predefined_palette(:ice_cream_gb)
|
|
1405
|
+
```
|
|
1262
1406
|
|
|
1263
1407
|
<div class='swatches'>
|
|
1264
1408
|
<span style='background-color: #7c3f58'><span>0</span></span>
|
|
@@ -1267,7 +1411,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
1267
1411
|
<span style='background-color: #fff6d3'><span>3</span></span>
|
|
1268
1412
|
</div>
|
|
1269
1413
|
|
|
1270
|
-
####
|
|
1414
|
+
#### Inkpink
|
|
1415
|
+
|
|
1416
|
+
```ruby
|
|
1417
|
+
set_predefined_palette(:inkpink)
|
|
1418
|
+
```
|
|
1271
1419
|
|
|
1272
1420
|
<div class='swatches'>
|
|
1273
1421
|
<span style='background-color: #ffffff'><span>0</span></span>
|
|
@@ -1278,7 +1426,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
1278
1426
|
<span style='background-color: #260d34'><span>5</span></span>
|
|
1279
1427
|
</div>
|
|
1280
1428
|
|
|
1281
|
-
####
|
|
1429
|
+
#### Journey
|
|
1430
|
+
|
|
1431
|
+
```ruby
|
|
1432
|
+
set_predefined_palette(:journey)
|
|
1433
|
+
```
|
|
1282
1434
|
|
|
1283
1435
|
<div class='swatches'>
|
|
1284
1436
|
<span style='background-color: #050914'><span>0</span></span>
|
|
@@ -1347,7 +1499,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
1347
1499
|
<span style='background-color: #2d002e'><span>63</span></span>
|
|
1348
1500
|
</div>
|
|
1349
1501
|
|
|
1350
|
-
####
|
|
1502
|
+
#### Juice56
|
|
1503
|
+
|
|
1504
|
+
```ruby
|
|
1505
|
+
set_predefined_palette(:juice56)
|
|
1506
|
+
```
|
|
1351
1507
|
|
|
1352
1508
|
<div class='swatches'>
|
|
1353
1509
|
<span style='background-color: #000005'><span>0</span></span>
|
|
@@ -1408,7 +1564,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
1408
1564
|
<span style='background-color: #6e2850'><span>55</span></span>
|
|
1409
1565
|
</div>
|
|
1410
1566
|
|
|
1411
|
-
####
|
|
1567
|
+
#### Kawaii16
|
|
1568
|
+
|
|
1569
|
+
```ruby
|
|
1570
|
+
set_predefined_palette(:kawaii16)
|
|
1571
|
+
```
|
|
1412
1572
|
|
|
1413
1573
|
<div class='swatches'>
|
|
1414
1574
|
<span style='background-color: #65471e'><span>0</span></span>
|
|
@@ -1429,7 +1589,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
1429
1589
|
<span style='background-color: #1d173c'><span>15</span></span>
|
|
1430
1590
|
</div>
|
|
1431
1591
|
|
|
1432
|
-
####
|
|
1592
|
+
#### Koni32
|
|
1593
|
+
|
|
1594
|
+
```ruby
|
|
1595
|
+
set_predefined_palette(:koni32)
|
|
1596
|
+
```
|
|
1433
1597
|
|
|
1434
1598
|
<div class='swatches'>
|
|
1435
1599
|
<span style='background-color: #000000'><span>0</span></span>
|
|
@@ -1466,7 +1630,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
1466
1630
|
<span style='background-color: #ffffff'><span>31</span></span>
|
|
1467
1631
|
</div>
|
|
1468
1632
|
|
|
1469
|
-
####
|
|
1633
|
+
#### Linear color palette basic
|
|
1634
|
+
|
|
1635
|
+
```ruby
|
|
1636
|
+
set_predefined_palette(:linear_color_palette_basic)
|
|
1637
|
+
```
|
|
1470
1638
|
|
|
1471
1639
|
<div class='swatches'>
|
|
1472
1640
|
<span style='background-color: #0e0c0c'><span>0</span></span>
|
|
@@ -1502,7 +1670,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
1502
1670
|
<span style='background-color: #483b3a'><span>30</span></span>
|
|
1503
1671
|
</div>
|
|
1504
1672
|
|
|
1505
|
-
####
|
|
1673
|
+
#### Lospec500
|
|
1674
|
+
|
|
1675
|
+
```ruby
|
|
1676
|
+
set_predefined_palette(:lospec500)
|
|
1677
|
+
```
|
|
1506
1678
|
|
|
1507
1679
|
<div class='swatches'>
|
|
1508
1680
|
<span style='background-color: #10121c'><span>0</span></span>
|
|
@@ -1549,7 +1721,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
1549
1721
|
<span style='background-color: #ffffff'><span>41</span></span>
|
|
1550
1722
|
</div>
|
|
1551
1723
|
|
|
1552
|
-
####
|
|
1724
|
+
#### Lost century
|
|
1725
|
+
|
|
1726
|
+
```ruby
|
|
1727
|
+
set_predefined_palette(:lost_century)
|
|
1728
|
+
```
|
|
1553
1729
|
|
|
1554
1730
|
<div class='swatches'>
|
|
1555
1731
|
<span style='background-color: #d1b187'><span>0</span></span>
|
|
@@ -1570,7 +1746,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
1570
1746
|
<span style='background-color: #ab9b8e'><span>15</span></span>
|
|
1571
1747
|
</div>
|
|
1572
1748
|
|
|
1573
|
-
####
|
|
1749
|
+
#### Lux2k
|
|
1750
|
+
|
|
1751
|
+
```ruby
|
|
1752
|
+
set_predefined_palette(:lux2k)
|
|
1753
|
+
```
|
|
1574
1754
|
|
|
1575
1755
|
<div class='swatches'>
|
|
1576
1756
|
<span style='background-color: #25131a'><span>0</span></span>
|
|
@@ -1611,7 +1791,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
1611
1791
|
<span style='background-color: #dfbbb3'><span>35</span></span>
|
|
1612
1792
|
</div>
|
|
1613
1793
|
|
|
1614
|
-
####
|
|
1794
|
+
#### Lux3k
|
|
1795
|
+
|
|
1796
|
+
```ruby
|
|
1797
|
+
set_predefined_palette(:lux3k)
|
|
1798
|
+
```
|
|
1615
1799
|
|
|
1616
1800
|
<div class='swatches'>
|
|
1617
1801
|
<span style='background-color: #ce3b26'><span>0</span></span>
|
|
@@ -1654,7 +1838,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
1654
1838
|
<span style='background-color: #46dccd'><span>37</span></span>
|
|
1655
1839
|
</div>
|
|
1656
1840
|
|
|
1657
|
-
####
|
|
1841
|
+
#### Midnight ablaze
|
|
1842
|
+
|
|
1843
|
+
```ruby
|
|
1844
|
+
set_predefined_palette(:midnight_ablaze)
|
|
1845
|
+
```
|
|
1658
1846
|
|
|
1659
1847
|
<div class='swatches'>
|
|
1660
1848
|
<span style='background-color: #ff8274'><span>0</span></span>
|
|
@@ -1666,7 +1854,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
1666
1854
|
<span style='background-color: #130208'><span>6</span></span>
|
|
1667
1855
|
</div>
|
|
1668
1856
|
|
|
1669
|
-
####
|
|
1857
|
+
#### Mojave20
|
|
1858
|
+
|
|
1859
|
+
```ruby
|
|
1860
|
+
set_predefined_palette(:mojave20)
|
|
1861
|
+
```
|
|
1670
1862
|
|
|
1671
1863
|
<div class='swatches'>
|
|
1672
1864
|
<span style='background-color: #dcd1b8'><span>0</span></span>
|
|
@@ -1691,7 +1883,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
1691
1883
|
<span style='background-color: #fba64c'><span>19</span></span>
|
|
1692
1884
|
</div>
|
|
1693
1885
|
|
|
1694
|
-
####
|
|
1886
|
+
#### Mort vs zughy
|
|
1887
|
+
|
|
1888
|
+
```ruby
|
|
1889
|
+
set_predefined_palette(:mort_vs_zughy)
|
|
1890
|
+
```
|
|
1695
1891
|
|
|
1696
1892
|
<div class='swatches'>
|
|
1697
1893
|
<span style='background-color: #f8f8f8'><span>0</span></span>
|
|
@@ -1743,7 +1939,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
1743
1939
|
<span style='background-color: #4f546b'><span>46</span></span>
|
|
1744
1940
|
</div>
|
|
1745
1941
|
|
|
1746
|
-
####
|
|
1942
|
+
#### Mulfok32
|
|
1943
|
+
|
|
1944
|
+
```ruby
|
|
1945
|
+
set_predefined_palette(:mulfok32)
|
|
1946
|
+
```
|
|
1747
1947
|
|
|
1748
1948
|
<div class='swatches'>
|
|
1749
1949
|
<span style='background-color: #5ba675'><span>0</span></span>
|
|
@@ -1780,7 +1980,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
1780
1980
|
<span style='background-color: #4e187c'><span>31</span></span>
|
|
1781
1981
|
</div>
|
|
1782
1982
|
|
|
1783
|
-
####
|
|
1983
|
+
#### Na16
|
|
1984
|
+
|
|
1985
|
+
```ruby
|
|
1986
|
+
set_predefined_palette(:na16)
|
|
1987
|
+
```
|
|
1784
1988
|
|
|
1785
1989
|
<div class='swatches'>
|
|
1786
1990
|
<span style='background-color: #8c8fae'><span>0</span></span>
|
|
@@ -1801,7 +2005,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
1801
2005
|
<span style='background-color: #1f0e1c'><span>15</span></span>
|
|
1802
2006
|
</div>
|
|
1803
2007
|
|
|
1804
|
-
####
|
|
2008
|
+
#### Nanner 16
|
|
2009
|
+
|
|
2010
|
+
```ruby
|
|
2011
|
+
set_predefined_palette(:nanner_16)
|
|
2012
|
+
```
|
|
1805
2013
|
|
|
1806
2014
|
<div class='swatches'>
|
|
1807
2015
|
<span style='background-color: #7acccc'><span>0</span></span>
|
|
@@ -1822,7 +2030,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
1822
2030
|
<span style='background-color: #4d2a2a'><span>15</span></span>
|
|
1823
2031
|
</div>
|
|
1824
2032
|
|
|
1825
|
-
####
|
|
2033
|
+
#### Nanner pancakes
|
|
2034
|
+
|
|
2035
|
+
```ruby
|
|
2036
|
+
set_predefined_palette(:nanner_pancakes)
|
|
2037
|
+
```
|
|
1826
2038
|
|
|
1827
2039
|
<div class='swatches'>
|
|
1828
2040
|
<span style='background-color: #a0ddd3'><span>0</span></span>
|
|
@@ -1859,7 +2071,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
1859
2071
|
<span style='background-color: #f7cf91'><span>31</span></span>
|
|
1860
2072
|
</div>
|
|
1861
2073
|
|
|
1862
|
-
####
|
|
2074
|
+
#### Nes advanced
|
|
2075
|
+
|
|
2076
|
+
```ruby
|
|
2077
|
+
set_predefined_palette(:nes_advanced)
|
|
2078
|
+
```
|
|
1863
2079
|
|
|
1864
2080
|
<div class='swatches'>
|
|
1865
2081
|
<span style='background-color: #000000'><span>0</span></span>
|
|
@@ -1919,7 +2135,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
1919
2135
|
<span style='background-color: #b3aac0'><span>54</span></span>
|
|
1920
2136
|
</div>
|
|
1921
2137
|
|
|
1922
|
-
####
|
|
2138
|
+
#### Nirvana 7
|
|
2139
|
+
|
|
2140
|
+
```ruby
|
|
2141
|
+
set_predefined_palette(:nirvana_7)
|
|
2142
|
+
```
|
|
1923
2143
|
|
|
1924
2144
|
<div class='swatches'>
|
|
1925
2145
|
<span style='background-color: #1e0b37'><span>0</span></span>
|
|
@@ -1931,7 +2151,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
1931
2151
|
<span style='background-color: #fcf2de'><span>6</span></span>
|
|
1932
2152
|
</div>
|
|
1933
2153
|
|
|
1934
|
-
####
|
|
2154
|
+
#### Nyx8
|
|
2155
|
+
|
|
2156
|
+
```ruby
|
|
2157
|
+
set_predefined_palette(:nyx8)
|
|
2158
|
+
```
|
|
1935
2159
|
|
|
1936
2160
|
<div class='swatches'>
|
|
1937
2161
|
<span style='background-color: #08141e'><span>0</span></span>
|
|
@@ -1944,7 +2168,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
1944
2168
|
<span style='background-color: #4e495f'><span>7</span></span>
|
|
1945
2169
|
</div>
|
|
1946
2170
|
|
|
1947
|
-
####
|
|
2171
|
+
#### Oil 6
|
|
2172
|
+
|
|
2173
|
+
```ruby
|
|
2174
|
+
set_predefined_palette(:oil_6)
|
|
2175
|
+
```
|
|
1948
2176
|
|
|
1949
2177
|
<div class='swatches'>
|
|
1950
2178
|
<span style='background-color: #fbf5ef'><span>0</span></span>
|
|
@@ -1955,7 +2183,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
1955
2183
|
<span style='background-color: #272744'><span>5</span></span>
|
|
1956
2184
|
</div>
|
|
1957
2185
|
|
|
1958
|
-
####
|
|
2186
|
+
#### Paper 8
|
|
2187
|
+
|
|
2188
|
+
```ruby
|
|
2189
|
+
set_predefined_palette(:paper_8)
|
|
2190
|
+
```
|
|
1959
2191
|
|
|
1960
2192
|
<div class='swatches'>
|
|
1961
2193
|
<span style='background-color: #1f244b'><span>0</span></span>
|
|
@@ -1968,7 +2200,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
1968
2200
|
<span style='background-color: #3c6b64'><span>7</span></span>
|
|
1969
2201
|
</div>
|
|
1970
2202
|
|
|
1971
|
-
####
|
|
2203
|
+
#### Paradise 30
|
|
2204
|
+
|
|
2205
|
+
```ruby
|
|
2206
|
+
set_predefined_palette(:paradise_30)
|
|
2207
|
+
```
|
|
1972
2208
|
|
|
1973
2209
|
<div class='swatches'>
|
|
1974
2210
|
<span style='background-color: #1a0e14'><span>0</span></span>
|
|
@@ -2003,7 +2239,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
2003
2239
|
<span style='background-color: #d663d7'><span>29</span></span>
|
|
2004
2240
|
</div>
|
|
2005
2241
|
|
|
2006
|
-
####
|
|
2242
|
+
#### Pastel qt
|
|
2243
|
+
|
|
2244
|
+
```ruby
|
|
2245
|
+
set_predefined_palette(:pastel_qt)
|
|
2246
|
+
```
|
|
2007
2247
|
|
|
2008
2248
|
<div class='swatches'>
|
|
2009
2249
|
<span style='background-color: #cb8175'><span>0</span></span>
|
|
@@ -2015,7 +2255,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
2015
2255
|
<span style='background-color: #655057'><span>6</span></span>
|
|
2016
2256
|
</div>
|
|
2017
2257
|
|
|
2018
|
-
####
|
|
2258
|
+
#### Pax 24
|
|
2259
|
+
|
|
2260
|
+
```ruby
|
|
2261
|
+
set_predefined_palette(:pax_24)
|
|
2262
|
+
```
|
|
2019
2263
|
|
|
2020
2264
|
<div class='swatches'>
|
|
2021
2265
|
<span style='background-color: #f4f5ef'><span>0</span></span>
|
|
@@ -2044,7 +2288,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
2044
2288
|
<span style='background-color: #322d4d'><span>23</span></span>
|
|
2045
2289
|
</div>
|
|
2046
2290
|
|
|
2047
|
-
####
|
|
2291
|
+
#### Pear36
|
|
2292
|
+
|
|
2293
|
+
```ruby
|
|
2294
|
+
set_predefined_palette(:pear36)
|
|
2295
|
+
```
|
|
2048
2296
|
|
|
2049
2297
|
<div class='swatches'>
|
|
2050
2298
|
<span style='background-color: #5e315b'><span>0</span></span>
|
|
@@ -2085,7 +2333,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
2085
2333
|
<span style='background-color: #ffb5b5'><span>35</span></span>
|
|
2086
2334
|
</div>
|
|
2087
2335
|
|
|
2088
|
-
####
|
|
2336
|
+
#### Pico 8
|
|
2337
|
+
|
|
2338
|
+
```ruby
|
|
2339
|
+
set_predefined_palette(:pico_8)
|
|
2340
|
+
```
|
|
2089
2341
|
|
|
2090
2342
|
<div class='swatches'>
|
|
2091
2343
|
<span style='background-color: #000000'><span>0</span></span>
|
|
@@ -2106,7 +2358,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
2106
2358
|
<span style='background-color: #ffccaa'><span>15</span></span>
|
|
2107
2359
|
</div>
|
|
2108
2360
|
|
|
2109
|
-
####
|
|
2361
|
+
#### Pineapple 32
|
|
2362
|
+
|
|
2363
|
+
```ruby
|
|
2364
|
+
set_predefined_palette(:pineapple_32)
|
|
2365
|
+
```
|
|
2110
2366
|
|
|
2111
2367
|
<div class='swatches'>
|
|
2112
2368
|
<span style='background-color: #43002a'><span>0</span></span>
|
|
@@ -2143,7 +2399,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
2143
2399
|
<span style='background-color: #601761'><span>31</span></span>
|
|
2144
2400
|
</div>
|
|
2145
2401
|
|
|
2146
|
-
####
|
|
2402
|
+
#### Pollen8
|
|
2403
|
+
|
|
2404
|
+
```ruby
|
|
2405
|
+
set_predefined_palette(:pollen8)
|
|
2406
|
+
```
|
|
2147
2407
|
|
|
2148
2408
|
<div class='swatches'>
|
|
2149
2409
|
<span style='background-color: #73464c'><span>0</span></span>
|
|
@@ -2156,7 +2416,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
2156
2416
|
<span style='background-color: #34acba'><span>7</span></span>
|
|
2157
2417
|
</div>
|
|
2158
2418
|
|
|
2159
|
-
####
|
|
2419
|
+
#### Punolite plus
|
|
2420
|
+
|
|
2421
|
+
```ruby
|
|
2422
|
+
set_predefined_palette(:punolite_plus)
|
|
2423
|
+
```
|
|
2160
2424
|
|
|
2161
2425
|
<div class='swatches'>
|
|
2162
2426
|
<span style='background-color: #431c3f'><span>0</span></span>
|
|
@@ -2186,7 +2450,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
2186
2450
|
<span style='background-color: #3b3c58'><span>24</span></span>
|
|
2187
2451
|
</div>
|
|
2188
2452
|
|
|
2189
|
-
####
|
|
2453
|
+
#### Punolite plus plus
|
|
2454
|
+
|
|
2455
|
+
```ruby
|
|
2456
|
+
set_predefined_palette(:punolite_plus_plus)
|
|
2457
|
+
```
|
|
2190
2458
|
|
|
2191
2459
|
<div class='swatches'>
|
|
2192
2460
|
<span style='background-color: #2e2e43'><span>0</span></span>
|
|
@@ -2223,7 +2491,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
2223
2491
|
<span style='background-color: #5c8995'><span>31</span></span>
|
|
2224
2492
|
</div>
|
|
2225
2493
|
|
|
2226
|
-
####
|
|
2494
|
+
#### Purplemorning8
|
|
2495
|
+
|
|
2496
|
+
```ruby
|
|
2497
|
+
set_predefined_palette(:purplemorning8)
|
|
2498
|
+
```
|
|
2227
2499
|
|
|
2228
2500
|
<div class='swatches'>
|
|
2229
2501
|
<span style='background-color: #211d38'><span>0</span></span>
|
|
@@ -2236,7 +2508,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
2236
2508
|
<span style='background-color: #cdd4a5'><span>7</span></span>
|
|
2237
2509
|
</div>
|
|
2238
2510
|
|
|
2239
|
-
####
|
|
2511
|
+
#### Resurrect 64
|
|
2512
|
+
|
|
2513
|
+
```ruby
|
|
2514
|
+
set_predefined_palette(:resurrect_64)
|
|
2515
|
+
```
|
|
2240
2516
|
|
|
2241
2517
|
<div class='swatches'>
|
|
2242
2518
|
<span style='background-color: #2e222f'><span>0</span></span>
|
|
@@ -2305,7 +2581,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
2305
2581
|
<span style='background-color: #fdcbb0'><span>63</span></span>
|
|
2306
2582
|
</div>
|
|
2307
2583
|
|
|
2308
|
-
####
|
|
2584
|
+
#### Retrobubble
|
|
2585
|
+
|
|
2586
|
+
```ruby
|
|
2587
|
+
set_predefined_palette(:retrobubble)
|
|
2588
|
+
```
|
|
2309
2589
|
|
|
2310
2590
|
<div class='swatches'>
|
|
2311
2591
|
<span style='background-color: #9dc1c0'><span>0</span></span>
|
|
@@ -2326,7 +2606,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
2326
2606
|
<span style='background-color: #f68b69'><span>15</span></span>
|
|
2327
2607
|
</div>
|
|
2328
2608
|
|
|
2329
|
-
####
|
|
2609
|
+
#### Retrocal 8
|
|
2610
|
+
|
|
2611
|
+
```ruby
|
|
2612
|
+
set_predefined_palette(:retrocal_8)
|
|
2613
|
+
```
|
|
2330
2614
|
|
|
2331
2615
|
<div class='swatches'>
|
|
2332
2616
|
<span style='background-color: #6eb8a8'><span>0</span></span>
|
|
@@ -2339,7 +2623,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
2339
2623
|
<span style='background-color: #ee9c5d'><span>7</span></span>
|
|
2340
2624
|
</div>
|
|
2341
2625
|
|
|
2342
|
-
####
|
|
2626
|
+
#### Rustic gb
|
|
2627
|
+
|
|
2628
|
+
```ruby
|
|
2629
|
+
set_predefined_palette(:rustic_gb)
|
|
2630
|
+
```
|
|
2343
2631
|
|
|
2344
2632
|
<div class='swatches'>
|
|
2345
2633
|
<span style='background-color: #2c2137'><span>0</span></span>
|
|
@@ -2348,7 +2636,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
2348
2636
|
<span style='background-color: #a96868'><span>3</span></span>
|
|
2349
2637
|
</div>
|
|
2350
2638
|
|
|
2351
|
-
####
|
|
2639
|
+
#### Ry 64
|
|
2640
|
+
|
|
2641
|
+
```ruby
|
|
2642
|
+
set_predefined_palette(:ry_64)
|
|
2643
|
+
```
|
|
2352
2644
|
|
|
2353
2645
|
<div class='swatches'>
|
|
2354
2646
|
<span style='background-color: #2f1e45'><span>0</span></span>
|
|
@@ -2417,7 +2709,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
2417
2709
|
<span style='background-color: #222734'><span>63</span></span>
|
|
2418
2710
|
</div>
|
|
2419
2711
|
|
|
2420
|
-
####
|
|
2712
|
+
#### Shanty
|
|
2713
|
+
|
|
2714
|
+
```ruby
|
|
2715
|
+
set_predefined_palette(:shanty)
|
|
2716
|
+
```
|
|
2421
2717
|
|
|
2422
2718
|
<div class='swatches'>
|
|
2423
2719
|
<span style='background-color: #1e1526'><span>0</span></span>
|
|
@@ -2470,7 +2766,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
2470
2766
|
<span style='background-color: #5a514a'><span>47</span></span>
|
|
2471
2767
|
</div>
|
|
2472
2768
|
|
|
2473
|
-
####
|
|
2769
|
+
#### Sheltzy32
|
|
2770
|
+
|
|
2771
|
+
```ruby
|
|
2772
|
+
set_predefined_palette(:sheltzy32)
|
|
2773
|
+
```
|
|
2474
2774
|
|
|
2475
2775
|
<div class='swatches'>
|
|
2476
2776
|
<span style='background-color: #8cffde'><span>0</span></span>
|
|
@@ -2507,7 +2807,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
2507
2807
|
<span style='background-color: #ffffff'><span>31</span></span>
|
|
2508
2808
|
</div>
|
|
2509
2809
|
|
|
2510
|
-
####
|
|
2810
|
+
#### Slso8
|
|
2811
|
+
|
|
2812
|
+
```ruby
|
|
2813
|
+
set_predefined_palette(:slso8)
|
|
2814
|
+
```
|
|
2511
2815
|
|
|
2512
2816
|
<div class='swatches'>
|
|
2513
2817
|
<span style='background-color: #0d2b45'><span>0</span></span>
|
|
@@ -2520,7 +2824,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
2520
2824
|
<span style='background-color: #ffecd6'><span>7</span></span>
|
|
2521
2825
|
</div>
|
|
2522
2826
|
|
|
2523
|
-
####
|
|
2827
|
+
#### Softmilk 32
|
|
2828
|
+
|
|
2829
|
+
```ruby
|
|
2830
|
+
set_predefined_palette(:softmilk_32)
|
|
2831
|
+
```
|
|
2524
2832
|
|
|
2525
2833
|
<div class='swatches'>
|
|
2526
2834
|
<span style='background-color: #23213d'><span>0</span></span>
|
|
@@ -2557,7 +2865,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
2557
2865
|
<span style='background-color: #376129'><span>31</span></span>
|
|
2558
2866
|
</div>
|
|
2559
2867
|
|
|
2560
|
-
####
|
|
2868
|
+
#### Suez 30
|
|
2869
|
+
|
|
2870
|
+
```ruby
|
|
2871
|
+
set_predefined_palette(:suez_30)
|
|
2872
|
+
```
|
|
2561
2873
|
|
|
2562
2874
|
<div class='swatches'>
|
|
2563
2875
|
<span style='background-color: #c4a78b'><span>0</span></span>
|
|
@@ -2592,7 +2904,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
2592
2904
|
<span style='background-color: #230d51'><span>29</span></span>
|
|
2593
2905
|
</div>
|
|
2594
2906
|
|
|
2595
|
-
####
|
|
2907
|
+
#### Sunshine valley
|
|
2908
|
+
|
|
2909
|
+
```ruby
|
|
2910
|
+
set_predefined_palette(:sunshine_valley)
|
|
2911
|
+
```
|
|
2596
2912
|
|
|
2597
2913
|
<div class='swatches'>
|
|
2598
2914
|
<span style='background-color: #0e0e1a'><span>0</span></span>
|
|
@@ -2646,7 +2962,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
2646
2962
|
<span style='background-color: #f5f8fa'><span>48</span></span>
|
|
2647
2963
|
</div>
|
|
2648
2964
|
|
|
2649
|
-
####
|
|
2965
|
+
#### Sweet canyon extended 64
|
|
2966
|
+
|
|
2967
|
+
```ruby
|
|
2968
|
+
set_predefined_palette(:sweet_canyon_extended_64)
|
|
2969
|
+
```
|
|
2650
2970
|
|
|
2651
2971
|
<div class='swatches'>
|
|
2652
2972
|
<span style='background-color: #0f0e11'><span>0</span></span>
|
|
@@ -2715,7 +3035,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
2715
3035
|
<span style='background-color: #ff9edb'><span>63</span></span>
|
|
2716
3036
|
</div>
|
|
2717
3037
|
|
|
2718
|
-
####
|
|
3038
|
+
#### Sweet24
|
|
3039
|
+
|
|
3040
|
+
```ruby
|
|
3041
|
+
set_predefined_palette(:sweet24)
|
|
3042
|
+
```
|
|
2719
3043
|
|
|
2720
3044
|
<div class='swatches'>
|
|
2721
3045
|
<span style='background-color: #2c4941'><span>0</span></span>
|
|
@@ -2744,7 +3068,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
2744
3068
|
<span style='background-color: #c02931'><span>23</span></span>
|
|
2745
3069
|
</div>
|
|
2746
3070
|
|
|
2747
|
-
####
|
|
3071
|
+
#### Sweetie 16
|
|
3072
|
+
|
|
3073
|
+
```ruby
|
|
3074
|
+
set_predefined_palette(:sweetie_16)
|
|
3075
|
+
```
|
|
2748
3076
|
|
|
2749
3077
|
<div class='swatches'>
|
|
2750
3078
|
<span style='background-color: #1a1c2c'><span>0</span></span>
|
|
@@ -2765,7 +3093,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
2765
3093
|
<span style='background-color: #333c57'><span>15</span></span>
|
|
2766
3094
|
</div>
|
|
2767
3095
|
|
|
2768
|
-
####
|
|
3096
|
+
#### Tofu 20k
|
|
3097
|
+
|
|
3098
|
+
```ruby
|
|
3099
|
+
set_predefined_palette(:tofu_20k)
|
|
3100
|
+
```
|
|
2769
3101
|
|
|
2770
3102
|
<div class='swatches'>
|
|
2771
3103
|
<span style='background-color: #120a1a'><span>0</span></span>
|
|
@@ -2806,7 +3138,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
2806
3138
|
<span style='background-color: #29694e'><span>35</span></span>
|
|
2807
3139
|
</div>
|
|
2808
3140
|
|
|
2809
|
-
####
|
|
3141
|
+
#### Vga
|
|
3142
|
+
|
|
3143
|
+
```ruby
|
|
3144
|
+
set_predefined_palette(:vga)
|
|
3145
|
+
```
|
|
2810
3146
|
|
|
2811
3147
|
<div class='swatches'>
|
|
2812
3148
|
<span style='background-color: #000000'><span>0</span></span>
|
|
@@ -3067,7 +3403,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
3067
3403
|
<span style='background-color: #000000'><span>255</span></span>
|
|
3068
3404
|
</div>
|
|
3069
3405
|
|
|
3070
|
-
####
|
|
3406
|
+
#### Vines flexible linear ramps
|
|
3407
|
+
|
|
3408
|
+
```ruby
|
|
3409
|
+
set_predefined_palette(:vines_flexible_linear_ramps)
|
|
3410
|
+
```
|
|
3071
3411
|
|
|
3072
3412
|
<div class='swatches'>
|
|
3073
3413
|
<span style='background-color: #150a1f'><span>0</span></span>
|
|
@@ -3110,7 +3450,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
3110
3450
|
<span style='background-color: #97dbd2'><span>37</span></span>
|
|
3111
3451
|
</div>
|
|
3112
3452
|
|
|
3113
|
-
####
|
|
3453
|
+
#### Vinik24
|
|
3454
|
+
|
|
3455
|
+
```ruby
|
|
3456
|
+
set_predefined_palette(:vinik24)
|
|
3457
|
+
```
|
|
3114
3458
|
|
|
3115
3459
|
<div class='swatches'>
|
|
3116
3460
|
<span style='background-color: #000000'><span>0</span></span>
|
|
@@ -3139,7 +3483,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
3139
3483
|
<span style='background-color: #433455'><span>23</span></span>
|
|
3140
3484
|
</div>
|
|
3141
3485
|
|
|
3142
|
-
####
|
|
3486
|
+
#### Winter wonderland
|
|
3487
|
+
|
|
3488
|
+
```ruby
|
|
3489
|
+
set_predefined_palette(:winter_wonderland)
|
|
3490
|
+
```
|
|
3143
3491
|
|
|
3144
3492
|
<div class='swatches'>
|
|
3145
3493
|
<span style='background-color: #20284e'><span>0</span></span>
|
|
@@ -3152,7 +3500,11 @@ This sets the color number 0 to a deep blue. Changing a palette color will affec
|
|
|
3152
3500
|
<span style='background-color: #738d9d'><span>7</span></span>
|
|
3153
3501
|
</div>
|
|
3154
3502
|
|
|
3155
|
-
####
|
|
3503
|
+
#### Zughy 32
|
|
3504
|
+
|
|
3505
|
+
```ruby
|
|
3506
|
+
set_predefined_palette(:zughy_32)
|
|
3507
|
+
```
|
|
3156
3508
|
|
|
3157
3509
|
<div class='swatches'>
|
|
3158
3510
|
<span style='background-color: #472d3c'><span>0</span></span>
|