00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00031 #ifndef __MLV_COLOR_H__
00032 #define __MLV_COLOR_H__
00033
00034 #ifndef MEMORY_DEBUG
00035 #include <SDL/SDL.h>
00036 #else
00037 #include "memory_debug.h"
00038 #endif
00039
00040 #ifdef __cplusplus
00041 extern "C" {
00042 #endif
00043
00047 typedef Uint32 MLV_Color;
00048
00052 enum {
00053 MLV_ALPHA_TRANSPARENT = SDL_ALPHA_TRANSPARENT,
00054 MLV_ALPHA_OPAQUE = SDL_ALPHA_OPAQUE
00055 };
00056
00060 typedef Uint8 MLV_Alpha;
00061
00062
00074 MLV_Color MLV_rgba( Uint8 red, Uint8 green, Uint8 blue, Uint8 alpha );
00075
00086 MLV_Color MLV_convert_rgba_to_color(
00087 Uint8 red, Uint8 green, Uint8 blue, Uint8 alpha
00088 );
00089
00101 void MLV_convert_color_to_rgba(
00102 MLV_Color color, Uint8* red, Uint8* green, Uint8* blue, Uint8* alpha
00103 );
00104
00115 const char* MLV_convert_color_to_string( MLV_Color color );
00116
00126 MLV_Color MLV_convert_string_to_color( const char* color_name );
00127
00132 #define MLV_COLOR_SNOW MLV_rgba(255,250,250,255)
00133
00138 #define MLV_COLOR_GHOST_WHITE MLV_rgba(248,248,255,255)
00139
00144 #define MLV_COLOR_GHOSTWHITE MLV_rgba(248,248,255,255)
00145
00150 #define MLV_COLOR_WHITE_SMOKE MLV_rgba(245,245,245,255)
00151
00156 #define MLV_COLOR_WHITESMOKE MLV_rgba(245,245,245,255)
00157
00162 #define MLV_COLOR_GAINSBORO MLV_rgba(220,220,220,255)
00163
00168 #define MLV_COLOR_FLORAL_WHITE MLV_rgba(255,250,240,255)
00169
00174 #define MLV_COLOR_FLORALWHITE MLV_rgba(255,250,240,255)
00175
00180 #define MLV_COLOR_OLD_LACE MLV_rgba(253,245,230,255)
00181
00186 #define MLV_COLOR_OLDLACE MLV_rgba(253,245,230,255)
00187
00192 #define MLV_COLOR_LINEN MLV_rgba(250,240,230,255)
00193
00198 #define MLV_COLOR_ANTIQUE_WHITE MLV_rgba(250,235,215,255)
00199
00204 #define MLV_COLOR_ANTIQUEWHITE MLV_rgba(250,235,215,255)
00205
00210 #define MLV_COLOR_PAPAYA_WHIP MLV_rgba(255,239,213,255)
00211
00216 #define MLV_COLOR_PAPAYAWHIP MLV_rgba(255,239,213,255)
00217
00222 #define MLV_COLOR_BLANCHED_ALMOND MLV_rgba(255,235,205,255)
00223
00228 #define MLV_COLOR_BLANCHEDALMOND MLV_rgba(255,235,205,255)
00229
00234 #define MLV_COLOR_BISQUE MLV_rgba(255,228,196,255)
00235
00240 #define MLV_COLOR_PEACH_PUFF MLV_rgba(255,218,185,255)
00241
00246 #define MLV_COLOR_PEACHPUFF MLV_rgba(255,218,185,255)
00247
00252 #define MLV_COLOR_NAVAJO_WHITE MLV_rgba(255,222,173,255)
00253
00258 #define MLV_COLOR_NAVAJOWHITE MLV_rgba(255,222,173,255)
00259
00264 #define MLV_COLOR_MOCCASIN MLV_rgba(255,228,181,255)
00265
00270 #define MLV_COLOR_CORNSILK MLV_rgba(255,248,220,255)
00271
00276 #define MLV_COLOR_IVORY MLV_rgba(255,255,240,255)
00277
00282 #define MLV_COLOR_LEMON_CHIFFON MLV_rgba(255,250,205,255)
00283
00288 #define MLV_COLOR_LEMONCHIFFON MLV_rgba(255,250,205,255)
00289
00294 #define MLV_COLOR_SEASHELL MLV_rgba(255,245,238,255)
00295
00300 #define MLV_COLOR_HONEYDEW MLV_rgba(240,255,240,255)
00301
00306 #define MLV_COLOR_MINT_CREAM MLV_rgba(245,255,250,255)
00307
00312 #define MLV_COLOR_MINTCREAM MLV_rgba(245,255,250,255)
00313
00318 #define MLV_COLOR_AZURE MLV_rgba(240,255,255,255)
00319
00324 #define MLV_COLOR_ALICE_BLUE MLV_rgba(240,248,255,255)
00325
00330 #define MLV_COLOR_ALICEBLUE MLV_rgba(240,248,255,255)
00331
00336 #define MLV_COLOR_LAVENDER MLV_rgba(230,230,250,255)
00337
00342 #define MLV_COLOR_LAVENDER_BLUSH MLV_rgba(255,240,245,255)
00343
00348 #define MLV_COLOR_LAVENDERBLUSH MLV_rgba(255,240,245,255)
00349
00354 #define MLV_COLOR_MISTY_ROSE MLV_rgba(255,228,225,255)
00355
00360 #define MLV_COLOR_MISTYROSE MLV_rgba(255,228,225,255)
00361
00366 #define MLV_COLOR_WHITE MLV_rgba(255,255,255,255)
00367
00372 #define MLV_COLOR_BLACK MLV_rgba(0,0,0,255)
00373
00378 #define MLV_COLOR_DARK_SLATE_GRAY MLV_rgba(47,79,79,255)
00379
00384 #define MLV_COLOR_DARKSLATEGRAY MLV_rgba(47,79,79,255)
00385
00390 #define MLV_COLOR_DARK_SLATE_GREY MLV_rgba(47,79,79,255)
00391
00396 #define MLV_COLOR_DARKSLATEGREY MLV_rgba(47,79,79,255)
00397
00402 #define MLV_COLOR_DIM_GRAY MLV_rgba(105,105,105,255)
00403
00408 #define MLV_COLOR_DIMGRAY MLV_rgba(105,105,105,255)
00409
00414 #define MLV_COLOR_DIM_GREY MLV_rgba(105,105,105,255)
00415
00420 #define MLV_COLOR_DIMGREY MLV_rgba(105,105,105,255)
00421
00426 #define MLV_COLOR_SLATE_GRAY MLV_rgba(112,128,144,255)
00427
00432 #define MLV_COLOR_SLATEGRAY MLV_rgba(112,128,144,255)
00433
00438 #define MLV_COLOR_SLATE_GREY MLV_rgba(112,128,144,255)
00439
00444 #define MLV_COLOR_SLATEGREY MLV_rgba(112,128,144,255)
00445
00450 #define MLV_COLOR_LIGHT_SLATE_GRAY MLV_rgba(119,136,153,255)
00451
00456 #define MLV_COLOR_LIGHTSLATEGRAY MLV_rgba(119,136,153,255)
00457
00462 #define MLV_COLOR_LIGHT_SLATE_GREY MLV_rgba(119,136,153,255)
00463
00468 #define MLV_COLOR_LIGHTSLATEGREY MLV_rgba(119,136,153,255)
00469
00474 #define MLV_COLOR_GRAY MLV_rgba(190,190,190,255)
00475
00480 #define MLV_COLOR_GREY MLV_rgba(190,190,190,255)
00481
00486 #define MLV_COLOR_LIGHT_GREY MLV_rgba(211,211,211,255)
00487
00492 #define MLV_COLOR_LIGHTGREY MLV_rgba(211,211,211,255)
00493
00498 #define MLV_COLOR_LIGHT_GRAY MLV_rgba(211,211,211,255)
00499
00504 #define MLV_COLOR_LIGHTGRAY MLV_rgba(211,211,211,255)
00505
00510 #define MLV_COLOR_MIDNIGHT_BLUE MLV_rgba(25,25,112,255)
00511
00516 #define MLV_COLOR_MIDNIGHTBLUE MLV_rgba(25,25,112,255)
00517
00522 #define MLV_COLOR_NAVY MLV_rgba(0,0,128,255)
00523
00528 #define MLV_COLOR_NAVY_BLUE MLV_rgba(0,0,128,255)
00529
00534 #define MLV_COLOR_NAVYBLUE MLV_rgba(0,0,128,255)
00535
00540 #define MLV_COLOR_CORNFLOWER_BLUE MLV_rgba(100,149,237,255)
00541
00546 #define MLV_COLOR_CORNFLOWERBLUE MLV_rgba(100,149,237,255)
00547
00552 #define MLV_COLOR_DARK_SLATE_BLUE MLV_rgba(72,61,139,255)
00553
00558 #define MLV_COLOR_DARKSLATEBLUE MLV_rgba(72,61,139,255)
00559
00564 #define MLV_COLOR_SLATE_BLUE MLV_rgba(106,90,205,255)
00565
00570 #define MLV_COLOR_SLATEBLUE MLV_rgba(106,90,205,255)
00571
00576 #define MLV_COLOR_MEDIUM_SLATE_BLUE MLV_rgba(123,104,238,255)
00577
00582 #define MLV_COLOR_MEDIUMSLATEBLUE MLV_rgba(123,104,238,255)
00583
00588 #define MLV_COLOR_LIGHT_SLATE_BLUE MLV_rgba(132,112,255,255)
00589
00594 #define MLV_COLOR_LIGHTSLATEBLUE MLV_rgba(132,112,255,255)
00595
00600 #define MLV_COLOR_MEDIUM_BLUE MLV_rgba(0,0,205,255)
00601
00606 #define MLV_COLOR_MEDIUMBLUE MLV_rgba(0,0,205,255)
00607
00612 #define MLV_COLOR_ROYAL_BLUE MLV_rgba(65,105,225,255)
00613
00618 #define MLV_COLOR_ROYALBLUE MLV_rgba(65,105,225,255)
00619
00624 #define MLV_COLOR_BLUE MLV_rgba(0,0,255,255)
00625
00630 #define MLV_COLOR_DODGER_BLUE MLV_rgba(30,144,255,255)
00631
00636 #define MLV_COLOR_DODGERBLUE MLV_rgba(30,144,255,255)
00637
00642 #define MLV_COLOR_DEEP_SKY_BLUE MLV_rgba(0,191,255,255)
00643
00648 #define MLV_COLOR_DEEPSKYBLUE MLV_rgba(0,191,255,255)
00649
00654 #define MLV_COLOR_SKY_BLUE MLV_rgba(135,206,235,255)
00655
00660 #define MLV_COLOR_SKYBLUE MLV_rgba(135,206,235,255)
00661
00666 #define MLV_COLOR_LIGHT_SKY_BLUE MLV_rgba(135,206,250,255)
00667
00672 #define MLV_COLOR_LIGHTSKYBLUE MLV_rgba(135,206,250,255)
00673
00678 #define MLV_COLOR_STEEL_BLUE MLV_rgba(70,130,180,255)
00679
00684 #define MLV_COLOR_STEELBLUE MLV_rgba(70,130,180,255)
00685
00690 #define MLV_COLOR_LIGHT_STEEL_BLUE MLV_rgba(176,196,222,255)
00691
00696 #define MLV_COLOR_LIGHTSTEELBLUE MLV_rgba(176,196,222,255)
00697
00702 #define MLV_COLOR_LIGHT_BLUE MLV_rgba(173,216,230,255)
00703
00708 #define MLV_COLOR_LIGHTBLUE MLV_rgba(173,216,230,255)
00709
00714 #define MLV_COLOR_POWDER_BLUE MLV_rgba(176,224,230,255)
00715
00720 #define MLV_COLOR_POWDERBLUE MLV_rgba(176,224,230,255)
00721
00726 #define MLV_COLOR_PALE_TURQUOISE MLV_rgba(175,238,238,255)
00727
00732 #define MLV_COLOR_PALETURQUOISE MLV_rgba(175,238,238,255)
00733
00738 #define MLV_COLOR_DARK_TURQUOISE MLV_rgba(0,206,209,255)
00739
00744 #define MLV_COLOR_DARKTURQUOISE MLV_rgba(0,206,209,255)
00745
00750 #define MLV_COLOR_MEDIUM_TURQUOISE MLV_rgba(72,209,204,255)
00751
00756 #define MLV_COLOR_MEDIUMTURQUOISE MLV_rgba(72,209,204,255)
00757
00762 #define MLV_COLOR_TURQUOISE MLV_rgba(64,224,208,255)
00763
00768 #define MLV_COLOR_CYAN MLV_rgba(0,255,255,255)
00769
00774 #define MLV_COLOR_LIGHT_CYAN MLV_rgba(224,255,255,255)
00775
00780 #define MLV_COLOR_LIGHTCYAN MLV_rgba(224,255,255,255)
00781
00786 #define MLV_COLOR_CADET_BLUE MLV_rgba(95,158,160,255)
00787
00792 #define MLV_COLOR_CADETBLUE MLV_rgba(95,158,160,255)
00793
00798 #define MLV_COLOR_MEDIUM_AQUAMARINE MLV_rgba(102,205,170,255)
00799
00804 #define MLV_COLOR_MEDIUMAQUAMARINE MLV_rgba(102,205,170,255)
00805
00810 #define MLV_COLOR_AQUAMARINE MLV_rgba(127,255,212,255)
00811
00816 #define MLV_COLOR_DARK_GREEN MLV_rgba(0,100,0,255)
00817
00822 #define MLV_COLOR_DARKGREEN MLV_rgba(0,100,0,255)
00823
00828 #define MLV_COLOR_DARK_OLIVE_GREEN MLV_rgba(85,107,47,255)
00829
00834 #define MLV_COLOR_DARKOLIVEGREEN MLV_rgba(85,107,47,255)
00835
00840 #define MLV_COLOR_DARK_SEA_GREEN MLV_rgba(143,188,143,255)
00841
00846 #define MLV_COLOR_DARKSEAGREEN MLV_rgba(143,188,143,255)
00847
00852 #define MLV_COLOR_SEA_GREEN MLV_rgba(46,139,87,255)
00853
00858 #define MLV_COLOR_SEAGREEN MLV_rgba(46,139,87,255)
00859
00864 #define MLV_COLOR_MEDIUM_SEA_GREEN MLV_rgba(60,179,113,255)
00865
00870 #define MLV_COLOR_MEDIUMSEAGREEN MLV_rgba(60,179,113,255)
00871
00876 #define MLV_COLOR_LIGHT_SEA_GREEN MLV_rgba(32,178,170,255)
00877
00882 #define MLV_COLOR_LIGHTSEAGREEN MLV_rgba(32,178,170,255)
00883
00888 #define MLV_COLOR_PALE_GREEN MLV_rgba(152,251,152,255)
00889
00894 #define MLV_COLOR_PALEGREEN MLV_rgba(152,251,152,255)
00895
00900 #define MLV_COLOR_SPRING_GREEN MLV_rgba(0,255,127,255)
00901
00906 #define MLV_COLOR_SPRINGGREEN MLV_rgba(0,255,127,255)
00907
00912 #define MLV_COLOR_LAWN_GREEN MLV_rgba(124,252,0,255)
00913
00918 #define MLV_COLOR_LAWNGREEN MLV_rgba(124,252,0,255)
00919
00924 #define MLV_COLOR_GREEN MLV_rgba(0,255,0,255)
00925
00930 #define MLV_COLOR_CHARTREUSE MLV_rgba(127,255,0,255)
00931
00936 #define MLV_COLOR_MEDIUM_SPRING_GREEN MLV_rgba(0,250,154,255)
00937
00942 #define MLV_COLOR_MEDIUMSPRINGGREEN MLV_rgba(0,250,154,255)
00943
00948 #define MLV_COLOR_GREEN_YELLOW MLV_rgba(173,255,47,255)
00949
00954 #define MLV_COLOR_GREENYELLOW MLV_rgba(173,255,47,255)
00955
00960 #define MLV_COLOR_LIME_GREEN MLV_rgba(50,205,50,255)
00961
00966 #define MLV_COLOR_LIMEGREEN MLV_rgba(50,205,50,255)
00967
00972 #define MLV_COLOR_YELLOW_GREEN MLV_rgba(154,205,50,255)
00973
00978 #define MLV_COLOR_YELLOWGREEN MLV_rgba(154,205,50,255)
00979
00984 #define MLV_COLOR_FOREST_GREEN MLV_rgba(34,139,34,255)
00985
00990 #define MLV_COLOR_FORESTGREEN MLV_rgba(34,139,34,255)
00991
00996 #define MLV_COLOR_OLIVE_DRAB MLV_rgba(107,142,35,255)
00997
01002 #define MLV_COLOR_OLIVEDRAB MLV_rgba(107,142,35,255)
01003
01008 #define MLV_COLOR_DARK_KHAKI MLV_rgba(189,183,107,255)
01009
01014 #define MLV_COLOR_DARKKHAKI MLV_rgba(189,183,107,255)
01015
01020 #define MLV_COLOR_KHAKI MLV_rgba(240,230,140,255)
01021
01026 #define MLV_COLOR_PALE_GOLDENROD MLV_rgba(238,232,170,255)
01027
01032 #define MLV_COLOR_PALEGOLDENROD MLV_rgba(238,232,170,255)
01033
01038 #define MLV_COLOR_LIGHT_GOLDENROD_YELLOW MLV_rgba(250,250,210,255)
01039
01044 #define MLV_COLOR_LIGHTGOLDENRODYELLOW MLV_rgba(250,250,210,255)
01045
01050 #define MLV_COLOR_LIGHT_YELLOW MLV_rgba(255,255,224,255)
01051
01056 #define MLV_COLOR_LIGHTYELLOW MLV_rgba(255,255,224,255)
01057
01062 #define MLV_COLOR_YELLOW MLV_rgba(255,255,0,255)
01063
01068 #define MLV_COLOR_GOLD MLV_rgba(255,215,0,255)
01069
01074 #define MLV_COLOR_LIGHT_GOLDENROD MLV_rgba(238,221,130,255)
01075
01080 #define MLV_COLOR_LIGHTGOLDENROD MLV_rgba(238,221,130,255)
01081
01086 #define MLV_COLOR_GOLDENROD MLV_rgba(218,165,32,255)
01087
01092 #define MLV_COLOR_DARK_GOLDENROD MLV_rgba(184,134,11,255)
01093
01098 #define MLV_COLOR_DARKGOLDENROD MLV_rgba(184,134,11,255)
01099
01104 #define MLV_COLOR_ROSY_BROWN MLV_rgba(188,143,143,255)
01105
01110 #define MLV_COLOR_ROSYBROWN MLV_rgba(188,143,143,255)
01111
01116 #define MLV_COLOR_INDIAN_RED MLV_rgba(205,92,92,255)
01117
01122 #define MLV_COLOR_INDIANRED MLV_rgba(205,92,92,255)
01123
01128 #define MLV_COLOR_SADDLE_BROWN MLV_rgba(139,69,19,255)
01129
01134 #define MLV_COLOR_SADDLEBROWN MLV_rgba(139,69,19,255)
01135
01140 #define MLV_COLOR_SIENNA MLV_rgba(160,82,45,255)
01141
01146 #define MLV_COLOR_PERU MLV_rgba(205,133,63,255)
01147
01152 #define MLV_COLOR_BURLYWOOD MLV_rgba(222,184,135,255)
01153
01158 #define MLV_COLOR_BEIGE MLV_rgba(245,245,220,255)
01159
01164 #define MLV_COLOR_WHEAT MLV_rgba(245,222,179,255)
01165
01170 #define MLV_COLOR_SANDY_BROWN MLV_rgba(244,164,96,255)
01171
01176 #define MLV_COLOR_SANDYBROWN MLV_rgba(244,164,96,255)
01177
01182 #define MLV_COLOR_TAN MLV_rgba(210,180,140,255)
01183
01188 #define MLV_COLOR_CHOCOLATE MLV_rgba(210,105,30,255)
01189
01194 #define MLV_COLOR_FIREBRICK MLV_rgba(178,34,34,255)
01195
01200 #define MLV_COLOR_BROWN MLV_rgba(165,42,42,255)
01201
01206 #define MLV_COLOR_DARK_SALMON MLV_rgba(233,150,122,255)
01207
01212 #define MLV_COLOR_DARKSALMON MLV_rgba(233,150,122,255)
01213
01218 #define MLV_COLOR_SALMON MLV_rgba(250,128,114,255)
01219
01224 #define MLV_COLOR_LIGHT_SALMON MLV_rgba(255,160,122,255)
01225
01230 #define MLV_COLOR_LIGHTSALMON MLV_rgba(255,160,122,255)
01231
01236 #define MLV_COLOR_ORANGE MLV_rgba(255,165,0,255)
01237
01242 #define MLV_COLOR_DARK_ORANGE MLV_rgba(255,140,0,255)
01243
01248 #define MLV_COLOR_DARKORANGE MLV_rgba(255,140,0,255)
01249
01254 #define MLV_COLOR_CORAL MLV_rgba(255,127,80,255)
01255
01260 #define MLV_COLOR_LIGHT_CORAL MLV_rgba(240,128,128,255)
01261
01266 #define MLV_COLOR_LIGHTCORAL MLV_rgba(240,128,128,255)
01267
01272 #define MLV_COLOR_TOMATO MLV_rgba(255,99,71,255)
01273
01278 #define MLV_COLOR_ORANGE_RED MLV_rgba(255,69,0,255)
01279
01284 #define MLV_COLOR_ORANGERED MLV_rgba(255,69,0,255)
01285
01290 #define MLV_COLOR_RED MLV_rgba(255,0,0,255)
01291
01296 #define MLV_COLOR_HOT_PINK MLV_rgba(255,105,180,255)
01297
01302 #define MLV_COLOR_HOTPINK MLV_rgba(255,105,180,255)
01303
01308 #define MLV_COLOR_DEEP_PINK MLV_rgba(255,20,147,255)
01309
01314 #define MLV_COLOR_DEEPPINK MLV_rgba(255,20,147,255)
01315
01320 #define MLV_COLOR_PINK MLV_rgba(255,192,203,255)
01321
01326 #define MLV_COLOR_LIGHT_PINK MLV_rgba(255,182,193,255)
01327
01332 #define MLV_COLOR_LIGHTPINK MLV_rgba(255,182,193,255)
01333
01338 #define MLV_COLOR_PALE_VIOLET_RED MLV_rgba(219,112,147,255)
01339
01344 #define MLV_COLOR_PALEVIOLETRED MLV_rgba(219,112,147,255)
01345
01350 #define MLV_COLOR_MAROON MLV_rgba(176,48,96,255)
01351
01356 #define MLV_COLOR_MEDIUM_VIOLET_RED MLV_rgba(199,21,133,255)
01357
01362 #define MLV_COLOR_MEDIUMVIOLETRED MLV_rgba(199,21,133,255)
01363
01368 #define MLV_COLOR_VIOLET_RED MLV_rgba(208,32,144,255)
01369
01374 #define MLV_COLOR_VIOLETRED MLV_rgba(208,32,144,255)
01375
01380 #define MLV_COLOR_MAGENTA MLV_rgba(255,0,255,255)
01381
01386 #define MLV_COLOR_VIOLET MLV_rgba(238,130,238,255)
01387
01392 #define MLV_COLOR_PLUM MLV_rgba(221,160,221,255)
01393
01398 #define MLV_COLOR_ORCHID MLV_rgba(218,112,214,255)
01399
01404 #define MLV_COLOR_MEDIUM_ORCHID MLV_rgba(186,85,211,255)
01405
01410 #define MLV_COLOR_MEDIUMORCHID MLV_rgba(186,85,211,255)
01411
01416 #define MLV_COLOR_DARK_ORCHID MLV_rgba(153,50,204,255)
01417
01422 #define MLV_COLOR_DARKORCHID MLV_rgba(153,50,204,255)
01423
01428 #define MLV_COLOR_DARK_VIOLET MLV_rgba(148,0,211,255)
01429
01434 #define MLV_COLOR_DARKVIOLET MLV_rgba(148,0,211,255)
01435
01440 #define MLV_COLOR_BLUE_VIOLET MLV_rgba(138,43,226,255)
01441
01446 #define MLV_COLOR_BLUEVIOLET MLV_rgba(138,43,226,255)
01447
01452 #define MLV_COLOR_PURPLE MLV_rgba(160,32,240,255)
01453
01458 #define MLV_COLOR_MEDIUM_PURPLE MLV_rgba(147,112,219,255)
01459
01464 #define MLV_COLOR_MEDIUMPURPLE MLV_rgba(147,112,219,255)
01465
01470 #define MLV_COLOR_THISTLE MLV_rgba(216,191,216,255)
01471
01476 #define MLV_COLOR_SNOW1 MLV_rgba(255,250,250,255)
01477
01482 #define MLV_COLOR_SNOW2 MLV_rgba(238,233,233,255)
01483
01488 #define MLV_COLOR_SNOW3 MLV_rgba(205,201,201,255)
01489
01494 #define MLV_COLOR_SNOW4 MLV_rgba(139,137,137,255)
01495
01500 #define MLV_COLOR_SEASHELL1 MLV_rgba(255,245,238,255)
01501
01506 #define MLV_COLOR_SEASHELL2 MLV_rgba(238,229,222,255)
01507
01512 #define MLV_COLOR_SEASHELL3 MLV_rgba(205,197,191,255)
01513
01518 #define MLV_COLOR_SEASHELL4 MLV_rgba(139,134,130,255)
01519
01524 #define MLV_COLOR_ANTIQUEWHITE1 MLV_rgba(255,239,219,255)
01525
01530 #define MLV_COLOR_ANTIQUEWHITE2 MLV_rgba(238,223,204,255)
01531
01536 #define MLV_COLOR_ANTIQUEWHITE3 MLV_rgba(205,192,176,255)
01537
01542 #define MLV_COLOR_ANTIQUEWHITE4 MLV_rgba(139,131,120,255)
01543
01548 #define MLV_COLOR_BISQUE1 MLV_rgba(255,228,196,255)
01549
01554 #define MLV_COLOR_BISQUE2 MLV_rgba(238,213,183,255)
01555
01560 #define MLV_COLOR_BISQUE3 MLV_rgba(205,183,158,255)
01561
01566 #define MLV_COLOR_BISQUE4 MLV_rgba(139,125,107,255)
01567
01572 #define MLV_COLOR_PEACHPUFF1 MLV_rgba(255,218,185,255)
01573
01578 #define MLV_COLOR_PEACHPUFF2 MLV_rgba(238,203,173,255)
01579
01584 #define MLV_COLOR_PEACHPUFF3 MLV_rgba(205,175,149,255)
01585
01590 #define MLV_COLOR_PEACHPUFF4 MLV_rgba(139,119,101,255)
01591
01596 #define MLV_COLOR_NAVAJOWHITE1 MLV_rgba(255,222,173,255)
01597
01602 #define MLV_COLOR_NAVAJOWHITE2 MLV_rgba(238,207,161,255)
01603
01608 #define MLV_COLOR_NAVAJOWHITE3 MLV_rgba(205,179,139,255)
01609
01614 #define MLV_COLOR_NAVAJOWHITE4 MLV_rgba(139,121,94,255)
01615
01620 #define MLV_COLOR_LEMONCHIFFON1 MLV_rgba(255,250,205,255)
01621
01626 #define MLV_COLOR_LEMONCHIFFON2 MLV_rgba(238,233,191,255)
01627
01632 #define MLV_COLOR_LEMONCHIFFON3 MLV_rgba(205,201,165,255)
01633
01638 #define MLV_COLOR_LEMONCHIFFON4 MLV_rgba(139,137,112,255)
01639
01644 #define MLV_COLOR_CORNSILK1 MLV_rgba(255,248,220,255)
01645
01650 #define MLV_COLOR_CORNSILK2 MLV_rgba(238,232,205,255)
01651
01656 #define MLV_COLOR_CORNSILK3 MLV_rgba(205,200,177,255)
01657
01662 #define MLV_COLOR_CORNSILK4 MLV_rgba(139,136,120,255)
01663
01668 #define MLV_COLOR_IVORY1 MLV_rgba(255,255,240,255)
01669
01674 #define MLV_COLOR_IVORY2 MLV_rgba(238,238,224,255)
01675
01680 #define MLV_COLOR_IVORY3 MLV_rgba(205,205,193,255)
01681
01686 #define MLV_COLOR_IVORY4 MLV_rgba(139,139,131,255)
01687
01692 #define MLV_COLOR_HONEYDEW1 MLV_rgba(240,255,240,255)
01693
01698 #define MLV_COLOR_HONEYDEW2 MLV_rgba(224,238,224,255)
01699
01704 #define MLV_COLOR_HONEYDEW3 MLV_rgba(193,205,193,255)
01705
01710 #define MLV_COLOR_HONEYDEW4 MLV_rgba(131,139,131,255)
01711
01716 #define MLV_COLOR_LAVENDERBLUSH1 MLV_rgba(255,240,245,255)
01717
01722 #define MLV_COLOR_LAVENDERBLUSH2 MLV_rgba(238,224,229,255)
01723
01728 #define MLV_COLOR_LAVENDERBLUSH3 MLV_rgba(205,193,197,255)
01729
01734 #define MLV_COLOR_LAVENDERBLUSH4 MLV_rgba(139,131,134,255)
01735
01740 #define MLV_COLOR_MISTYROSE1 MLV_rgba(255,228,225,255)
01741
01746 #define MLV_COLOR_MISTYROSE2 MLV_rgba(238,213,210,255)
01747
01752 #define MLV_COLOR_MISTYROSE3 MLV_rgba(205,183,181,255)
01753
01758 #define MLV_COLOR_MISTYROSE4 MLV_rgba(139,125,123,255)
01759
01764 #define MLV_COLOR_AZURE1 MLV_rgba(240,255,255,255)
01765
01770 #define MLV_COLOR_AZURE2 MLV_rgba(224,238,238,255)
01771
01776 #define MLV_COLOR_AZURE3 MLV_rgba(193,205,205,255)
01777
01782 #define MLV_COLOR_AZURE4 MLV_rgba(131,139,139,255)
01783
01788 #define MLV_COLOR_SLATEBLUE1 MLV_rgba(131,111,255,255)
01789
01794 #define MLV_COLOR_SLATEBLUE2 MLV_rgba(122,103,238,255)
01795
01800 #define MLV_COLOR_SLATEBLUE3 MLV_rgba(105,89,205,255)
01801
01806 #define MLV_COLOR_SLATEBLUE4 MLV_rgba(71,60,139,255)
01807
01812 #define MLV_COLOR_ROYALBLUE1 MLV_rgba(72,118,255,255)
01813
01818 #define MLV_COLOR_ROYALBLUE2 MLV_rgba(67,110,238,255)
01819
01824 #define MLV_COLOR_ROYALBLUE3 MLV_rgba(58,95,205,255)
01825
01830 #define MLV_COLOR_ROYALBLUE4 MLV_rgba(39,64,139,255)
01831
01836 #define MLV_COLOR_BLUE1 MLV_rgba(0,0,255,255)
01837
01842 #define MLV_COLOR_BLUE2 MLV_rgba(0,0,238,255)
01843
01848 #define MLV_COLOR_BLUE3 MLV_rgba(0,0,205,255)
01849
01854 #define MLV_COLOR_BLUE4 MLV_rgba(0,0,139,255)
01855
01860 #define MLV_COLOR_DODGERBLUE1 MLV_rgba(30,144,255,255)
01861
01866 #define MLV_COLOR_DODGERBLUE2 MLV_rgba(28,134,238,255)
01867
01872 #define MLV_COLOR_DODGERBLUE3 MLV_rgba(24,116,205,255)
01873
01878 #define MLV_COLOR_DODGERBLUE4 MLV_rgba(16,78,139,255)
01879
01884 #define MLV_COLOR_STEELBLUE1 MLV_rgba(99,184,255,255)
01885
01890 #define MLV_COLOR_STEELBLUE2 MLV_rgba(92,172,238,255)
01891
01896 #define MLV_COLOR_STEELBLUE3 MLV_rgba(79,148,205,255)
01897
01902 #define MLV_COLOR_STEELBLUE4 MLV_rgba(54,100,139,255)
01903
01908 #define MLV_COLOR_DEEPSKYBLUE1 MLV_rgba(0,191,255,255)
01909
01914 #define MLV_COLOR_DEEPSKYBLUE2 MLV_rgba(0,178,238,255)
01915
01920 #define MLV_COLOR_DEEPSKYBLUE3 MLV_rgba(0,154,205,255)
01921
01926 #define MLV_COLOR_DEEPSKYBLUE4 MLV_rgba(0,104,139,255)
01927
01932 #define MLV_COLOR_SKYBLUE1 MLV_rgba(135,206,255,255)
01933
01938 #define MLV_COLOR_SKYBLUE2 MLV_rgba(126,192,238,255)
01939
01944 #define MLV_COLOR_SKYBLUE3 MLV_rgba(108,166,205,255)
01945
01950 #define MLV_COLOR_SKYBLUE4 MLV_rgba(74,112,139,255)
01951
01956 #define MLV_COLOR_LIGHTSKYBLUE1 MLV_rgba(176,226,255,255)
01957
01962 #define MLV_COLOR_LIGHTSKYBLUE2 MLV_rgba(164,211,238,255)
01963
01968 #define MLV_COLOR_LIGHTSKYBLUE3 MLV_rgba(141,182,205,255)
01969
01974 #define MLV_COLOR_LIGHTSKYBLUE4 MLV_rgba(96,123,139,255)
01975
01980 #define MLV_COLOR_SLATEGRAY1 MLV_rgba(198,226,255,255)
01981
01986 #define MLV_COLOR_SLATEGRAY2 MLV_rgba(185,211,238,255)
01987
01992 #define MLV_COLOR_SLATEGRAY3 MLV_rgba(159,182,205,255)
01993
01998 #define MLV_COLOR_SLATEGRAY4 MLV_rgba(108,123,139,255)
01999
02004 #define MLV_COLOR_LIGHTSTEELBLUE1 MLV_rgba(202,225,255,255)
02005
02010 #define MLV_COLOR_LIGHTSTEELBLUE2 MLV_rgba(188,210,238,255)
02011
02016 #define MLV_COLOR_LIGHTSTEELBLUE3 MLV_rgba(162,181,205,255)
02017
02022 #define MLV_COLOR_LIGHTSTEELBLUE4 MLV_rgba(110,123,139,255)
02023
02028 #define MLV_COLOR_LIGHTBLUE1 MLV_rgba(191,239,255,255)
02029
02034 #define MLV_COLOR_LIGHTBLUE2 MLV_rgba(178,223,238,255)
02035
02040 #define MLV_COLOR_LIGHTBLUE3 MLV_rgba(154,192,205,255)
02041
02046 #define MLV_COLOR_LIGHTBLUE4 MLV_rgba(104,131,139,255)
02047
02052 #define MLV_COLOR_LIGHTCYAN1 MLV_rgba(224,255,255,255)
02053
02058 #define MLV_COLOR_LIGHTCYAN2 MLV_rgba(209,238,238,255)
02059
02064 #define MLV_COLOR_LIGHTCYAN3 MLV_rgba(180,205,205,255)
02065
02070 #define MLV_COLOR_LIGHTCYAN4 MLV_rgba(122,139,139,255)
02071
02076 #define MLV_COLOR_PALETURQUOISE1 MLV_rgba(187,255,255,255)
02077
02082 #define MLV_COLOR_PALETURQUOISE2 MLV_rgba(174,238,238,255)
02083
02088 #define MLV_COLOR_PALETURQUOISE3 MLV_rgba(150,205,205,255)
02089
02094 #define MLV_COLOR_PALETURQUOISE4 MLV_rgba(102,139,139,255)
02095
02100 #define MLV_COLOR_CADETBLUE1 MLV_rgba(152,245,255,255)
02101
02106 #define MLV_COLOR_CADETBLUE2 MLV_rgba(142,229,238,255)
02107
02112 #define MLV_COLOR_CADETBLUE3 MLV_rgba(122,197,205,255)
02113
02118 #define MLV_COLOR_CADETBLUE4 MLV_rgba(83,134,139,255)
02119
02124 #define MLV_COLOR_TURQUOISE1 MLV_rgba(0,245,255,255)
02125
02130 #define MLV_COLOR_TURQUOISE2 MLV_rgba(0,229,238,255)
02131
02136 #define MLV_COLOR_TURQUOISE3 MLV_rgba(0,197,205,255)
02137
02142 #define MLV_COLOR_TURQUOISE4 MLV_rgba(0,134,139,255)
02143
02148 #define MLV_COLOR_CYAN1 MLV_rgba(0,255,255,255)
02149
02154 #define MLV_COLOR_CYAN2 MLV_rgba(0,238,238,255)
02155
02160 #define MLV_COLOR_CYAN3 MLV_rgba(0,205,205,255)
02161
02166 #define MLV_COLOR_CYAN4 MLV_rgba(0,139,139,255)
02167
02172 #define MLV_COLOR_DARKSLATEGRAY1 MLV_rgba(151,255,255,255)
02173
02178 #define MLV_COLOR_DARKSLATEGRAY2 MLV_rgba(141,238,238,255)
02179
02184 #define MLV_COLOR_DARKSLATEGRAY3 MLV_rgba(121,205,205,255)
02185
02190 #define MLV_COLOR_DARKSLATEGRAY4 MLV_rgba(82,139,139,255)
02191
02196 #define MLV_COLOR_AQUAMARINE1 MLV_rgba(127,255,212,255)
02197
02202 #define MLV_COLOR_AQUAMARINE2 MLV_rgba(118,238,198,255)
02203
02208 #define MLV_COLOR_AQUAMARINE3 MLV_rgba(102,205,170,255)
02209
02214 #define MLV_COLOR_AQUAMARINE4 MLV_rgba(69,139,116,255)
02215
02220 #define MLV_COLOR_DARKSEAGREEN1 MLV_rgba(193,255,193,255)
02221
02226 #define MLV_COLOR_DARKSEAGREEN2 MLV_rgba(180,238,180,255)
02227
02232 #define MLV_COLOR_DARKSEAGREEN3 MLV_rgba(155,205,155,255)
02233
02238 #define MLV_COLOR_DARKSEAGREEN4 MLV_rgba(105,139,105,255)
02239
02244 #define MLV_COLOR_SEAGREEN1 MLV_rgba(84,255,159,255)
02245
02250 #define MLV_COLOR_SEAGREEN2 MLV_rgba(78,238,148,255)
02251
02256 #define MLV_COLOR_SEAGREEN3 MLV_rgba(67,205,128,255)
02257
02262 #define MLV_COLOR_SEAGREEN4 MLV_rgba(46,139,87,255)
02263
02268 #define MLV_COLOR_PALEGREEN1 MLV_rgba(154,255,154,255)
02269
02274 #define MLV_COLOR_PALEGREEN2 MLV_rgba(144,238,144,255)
02275
02280 #define MLV_COLOR_PALEGREEN3 MLV_rgba(124,205,124,255)
02281
02286 #define MLV_COLOR_PALEGREEN4 MLV_rgba(84,139,84,255)
02287
02292 #define MLV_COLOR_SPRINGGREEN1 MLV_rgba(0,255,127,255)
02293
02298 #define MLV_COLOR_SPRINGGREEN2 MLV_rgba(0,238,118,255)
02299
02304 #define MLV_COLOR_SPRINGGREEN3 MLV_rgba(0,205,102,255)
02305
02310 #define MLV_COLOR_SPRINGGREEN4 MLV_rgba(0,139,69,255)
02311
02316 #define MLV_COLOR_GREEN1 MLV_rgba(0,255,0,255)
02317
02322 #define MLV_COLOR_GREEN2 MLV_rgba(0,238,0,255)
02323
02328 #define MLV_COLOR_GREEN3 MLV_rgba(0,205,0,255)
02329
02334 #define MLV_COLOR_GREEN4 MLV_rgba(0,139,0,255)
02335
02340 #define MLV_COLOR_CHARTREUSE1 MLV_rgba(127,255,0,255)
02341
02346 #define MLV_COLOR_CHARTREUSE2 MLV_rgba(118,238,0,255)
02347
02352 #define MLV_COLOR_CHARTREUSE3 MLV_rgba(102,205,0,255)
02353
02358 #define MLV_COLOR_CHARTREUSE4 MLV_rgba(69,139,0,255)
02359
02364 #define MLV_COLOR_OLIVEDRAB1 MLV_rgba(192,255,62,255)
02365
02370 #define MLV_COLOR_OLIVEDRAB2 MLV_rgba(179,238,58,255)
02371
02376 #define MLV_COLOR_OLIVEDRAB3 MLV_rgba(154,205,50,255)
02377
02382 #define MLV_COLOR_OLIVEDRAB4 MLV_rgba(105,139,34,255)
02383
02388 #define MLV_COLOR_DARKOLIVEGREEN1 MLV_rgba(202,255,112,255)
02389
02394 #define MLV_COLOR_DARKOLIVEGREEN2 MLV_rgba(188,238,104,255)
02395
02400 #define MLV_COLOR_DARKOLIVEGREEN3 MLV_rgba(162,205,90,255)
02401
02406 #define MLV_COLOR_DARKOLIVEGREEN4 MLV_rgba(110,139,61,255)
02407
02412 #define MLV_COLOR_KHAKI1 MLV_rgba(255,246,143,255)
02413
02418 #define MLV_COLOR_KHAKI2 MLV_rgba(238,230,133,255)
02419
02424 #define MLV_COLOR_KHAKI3 MLV_rgba(205,198,115,255)
02425
02430 #define MLV_COLOR_KHAKI4 MLV_rgba(139,134,78,255)
02431
02436 #define MLV_COLOR_LIGHTGOLDENROD1 MLV_rgba(255,236,139,255)
02437
02442 #define MLV_COLOR_LIGHTGOLDENROD2 MLV_rgba(238,220,130,255)
02443
02448 #define MLV_COLOR_LIGHTGOLDENROD3 MLV_rgba(205,190,112,255)
02449
02454 #define MLV_COLOR_LIGHTGOLDENROD4 MLV_rgba(139,129,76,255)
02455
02460 #define MLV_COLOR_LIGHTYELLOW1 MLV_rgba(255,255,224,255)
02461
02466 #define MLV_COLOR_LIGHTYELLOW2 MLV_rgba(238,238,209,255)
02467
02472 #define MLV_COLOR_LIGHTYELLOW3 MLV_rgba(205,205,180,255)
02473
02478 #define MLV_COLOR_LIGHTYELLOW4 MLV_rgba(139,139,122,255)
02479
02484 #define MLV_COLOR_YELLOW1 MLV_rgba(255,255,0,255)
02485
02490 #define MLV_COLOR_YELLOW2 MLV_rgba(238,238,0,255)
02491
02496 #define MLV_COLOR_YELLOW3 MLV_rgba(205,205,0,255)
02497
02502 #define MLV_COLOR_YELLOW4 MLV_rgba(139,139,0,255)
02503
02508 #define MLV_COLOR_GOLD1 MLV_rgba(255,215,0,255)
02509
02514 #define MLV_COLOR_GOLD2 MLV_rgba(238,201,0,255)
02515
02520 #define MLV_COLOR_GOLD3 MLV_rgba(205,173,0,255)
02521
02526 #define MLV_COLOR_GOLD4 MLV_rgba(139,117,0,255)
02527
02532 #define MLV_COLOR_GOLDENROD1 MLV_rgba(255,193,37,255)
02533
02538 #define MLV_COLOR_GOLDENROD2 MLV_rgba(238,180,34,255)
02539
02544 #define MLV_COLOR_GOLDENROD3 MLV_rgba(205,155,29,255)
02545
02550 #define MLV_COLOR_GOLDENROD4 MLV_rgba(139,105,20,255)
02551
02556 #define MLV_COLOR_DARKGOLDENROD1 MLV_rgba(255,185,15,255)
02557
02562 #define MLV_COLOR_DARKGOLDENROD2 MLV_rgba(238,173,14,255)
02563
02568 #define MLV_COLOR_DARKGOLDENROD3 MLV_rgba(205,149,12,255)
02569
02574 #define MLV_COLOR_DARKGOLDENROD4 MLV_rgba(139,101,8,255)
02575
02580 #define MLV_COLOR_ROSYBROWN1 MLV_rgba(255,193,193,255)
02581
02586 #define MLV_COLOR_ROSYBROWN2 MLV_rgba(238,180,180,255)
02587
02592 #define MLV_COLOR_ROSYBROWN3 MLV_rgba(205,155,155,255)
02593
02598 #define MLV_COLOR_ROSYBROWN4 MLV_rgba(139,105,105,255)
02599
02604 #define MLV_COLOR_INDIANRED1 MLV_rgba(255,106,106,255)
02605
02610 #define MLV_COLOR_INDIANRED2 MLV_rgba(238,99,99,255)
02611
02616 #define MLV_COLOR_INDIANRED3 MLV_rgba(205,85,85,255)
02617
02622 #define MLV_COLOR_INDIANRED4 MLV_rgba(139,58,58,255)
02623
02628 #define MLV_COLOR_SIENNA1 MLV_rgba(255,130,71,255)
02629
02634 #define MLV_COLOR_SIENNA2 MLV_rgba(238,121,66,255)
02635
02640 #define MLV_COLOR_SIENNA3 MLV_rgba(205,104,57,255)
02641
02646 #define MLV_COLOR_SIENNA4 MLV_rgba(139,71,38,255)
02647
02652 #define MLV_COLOR_BURLYWOOD1 MLV_rgba(255,211,155,255)
02653
02658 #define MLV_COLOR_BURLYWOOD2 MLV_rgba(238,197,145,255)
02659
02664 #define MLV_COLOR_BURLYWOOD3 MLV_rgba(205,170,125,255)
02665
02670 #define MLV_COLOR_BURLYWOOD4 MLV_rgba(139,115,85,255)
02671
02676 #define MLV_COLOR_WHEAT1 MLV_rgba(255,231,186,255)
02677
02682 #define MLV_COLOR_WHEAT2 MLV_rgba(238,216,174,255)
02683
02688 #define MLV_COLOR_WHEAT3 MLV_rgba(205,186,150,255)
02689
02694 #define MLV_COLOR_WHEAT4 MLV_rgba(139,126,102,255)
02695
02700 #define MLV_COLOR_TAN1 MLV_rgba(255,165,79,255)
02701
02706 #define MLV_COLOR_TAN2 MLV_rgba(238,154,73,255)
02707
02712 #define MLV_COLOR_TAN3 MLV_rgba(205,133,63,255)
02713
02718 #define MLV_COLOR_TAN4 MLV_rgba(139,90,43,255)
02719
02724 #define MLV_COLOR_CHOCOLATE1 MLV_rgba(255,127,36,255)
02725
02730 #define MLV_COLOR_CHOCOLATE2 MLV_rgba(238,118,33,255)
02731
02736 #define MLV_COLOR_CHOCOLATE3 MLV_rgba(205,102,29,255)
02737
02742 #define MLV_COLOR_CHOCOLATE4 MLV_rgba(139,69,19,255)
02743
02748 #define MLV_COLOR_FIREBRICK1 MLV_rgba(255,48,48,255)
02749
02754 #define MLV_COLOR_FIREBRICK2 MLV_rgba(238,44,44,255)
02755
02760 #define MLV_COLOR_FIREBRICK3 MLV_rgba(205,38,38,255)
02761
02766 #define MLV_COLOR_FIREBRICK4 MLV_rgba(139,26,26,255)
02767
02772 #define MLV_COLOR_BROWN1 MLV_rgba(255,64,64,255)
02773
02778 #define MLV_COLOR_BROWN2 MLV_rgba(238,59,59,255)
02779
02784 #define MLV_COLOR_BROWN3 MLV_rgba(205,51,51,255)
02785
02790 #define MLV_COLOR_BROWN4 MLV_rgba(139,35,35,255)
02791
02796 #define MLV_COLOR_SALMON1 MLV_rgba(255,140,105,255)
02797
02802 #define MLV_COLOR_SALMON2 MLV_rgba(238,130,98,255)
02803
02808 #define MLV_COLOR_SALMON3 MLV_rgba(205,112,84,255)
02809
02814 #define MLV_COLOR_SALMON4 MLV_rgba(139,76,57,255)
02815
02820 #define MLV_COLOR_LIGHTSALMON1 MLV_rgba(255,160,122,255)
02821
02826 #define MLV_COLOR_LIGHTSALMON2 MLV_rgba(238,149,114,255)
02827
02832 #define MLV_COLOR_LIGHTSALMON3 MLV_rgba(205,129,98,255)
02833
02838 #define MLV_COLOR_LIGHTSALMON4 MLV_rgba(139,87,66,255)
02839
02844 #define MLV_COLOR_ORANGE1 MLV_rgba(255,165,0,255)
02845
02850 #define MLV_COLOR_ORANGE2 MLV_rgba(238,154,0,255)
02851
02856 #define MLV_COLOR_ORANGE3 MLV_rgba(205,133,0,255)
02857
02862 #define MLV_COLOR_ORANGE4 MLV_rgba(139,90,0,255)
02863
02868 #define MLV_COLOR_DARKORANGE1 MLV_rgba(255,127,0,255)
02869
02874 #define MLV_COLOR_DARKORANGE2 MLV_rgba(238,118,0,255)
02875
02880 #define MLV_COLOR_DARKORANGE3 MLV_rgba(205,102,0,255)
02881
02886 #define MLV_COLOR_DARKORANGE4 MLV_rgba(139,69,0,255)
02887
02892 #define MLV_COLOR_CORAL1 MLV_rgba(255,114,86,255)
02893
02898 #define MLV_COLOR_CORAL2 MLV_rgba(238,106,80,255)
02899
02904 #define MLV_COLOR_CORAL3 MLV_rgba(205,91,69,255)
02905
02910 #define MLV_COLOR_CORAL4 MLV_rgba(139,62,47,255)
02911
02916 #define MLV_COLOR_TOMATO1 MLV_rgba(255,99,71,255)
02917
02922 #define MLV_COLOR_TOMATO2 MLV_rgba(238,92,66,255)
02923
02928 #define MLV_COLOR_TOMATO3 MLV_rgba(205,79,57,255)
02929
02934 #define MLV_COLOR_TOMATO4 MLV_rgba(139,54,38,255)
02935
02940 #define MLV_COLOR_ORANGERED1 MLV_rgba(255,69,0,255)
02941
02946 #define MLV_COLOR_ORANGERED2 MLV_rgba(238,64,0,255)
02947
02952 #define MLV_COLOR_ORANGERED3 MLV_rgba(205,55,0,255)
02953
02958 #define MLV_COLOR_ORANGERED4 MLV_rgba(139,37,0,255)
02959
02964 #define MLV_COLOR_RED1 MLV_rgba(255,0,0,255)
02965
02970 #define MLV_COLOR_RED2 MLV_rgba(238,0,0,255)
02971
02976 #define MLV_COLOR_RED3 MLV_rgba(205,0,0,255)
02977
02982 #define MLV_COLOR_RED4 MLV_rgba(139,0,0,255)
02983
02988 #define MLV_COLOR_DEEPPINK1 MLV_rgba(255,20,147,255)
02989
02994 #define MLV_COLOR_DEEPPINK2 MLV_rgba(238,18,137,255)
02995
03000 #define MLV_COLOR_DEEPPINK3 MLV_rgba(205,16,118,255)
03001
03006 #define MLV_COLOR_DEEPPINK4 MLV_rgba(139,10,80,255)
03007
03012 #define MLV_COLOR_HOTPINK1 MLV_rgba(255,110,180,255)
03013
03018 #define MLV_COLOR_HOTPINK2 MLV_rgba(238,106,167,255)
03019
03024 #define MLV_COLOR_HOTPINK3 MLV_rgba(205,96,144,255)
03025
03030 #define MLV_COLOR_HOTPINK4 MLV_rgba(139,58,98,255)
03031
03036 #define MLV_COLOR_PINK1 MLV_rgba(255,181,197,255)
03037
03042 #define MLV_COLOR_PINK2 MLV_rgba(238,169,184,255)
03043
03048 #define MLV_COLOR_PINK3 MLV_rgba(205,145,158,255)
03049
03054 #define MLV_COLOR_PINK4 MLV_rgba(139,99,108,255)
03055
03060 #define MLV_COLOR_LIGHTPINK1 MLV_rgba(255,174,185,255)
03061
03066 #define MLV_COLOR_LIGHTPINK2 MLV_rgba(238,162,173,255)
03067
03072 #define MLV_COLOR_LIGHTPINK3 MLV_rgba(205,140,149,255)
03073
03078 #define MLV_COLOR_LIGHTPINK4 MLV_rgba(139,95,101,255)
03079
03084 #define MLV_COLOR_PALEVIOLETRED1 MLV_rgba(255,130,171,255)
03085
03090 #define MLV_COLOR_PALEVIOLETRED2 MLV_rgba(238,121,159,255)
03091
03096 #define MLV_COLOR_PALEVIOLETRED3 MLV_rgba(205,104,137,255)
03097
03102 #define MLV_COLOR_PALEVIOLETRED4 MLV_rgba(139,71,93,255)
03103
03108 #define MLV_COLOR_MAROON1 MLV_rgba(255,52,179,255)
03109
03114 #define MLV_COLOR_MAROON2 MLV_rgba(238,48,167,255)
03115
03120 #define MLV_COLOR_MAROON3 MLV_rgba(205,41,144,255)
03121
03126 #define MLV_COLOR_MAROON4 MLV_rgba(139,28,98,255)
03127
03132 #define MLV_COLOR_VIOLETRED1 MLV_rgba(255,62,150,255)
03133
03138 #define MLV_COLOR_VIOLETRED2 MLV_rgba(238,58,140,255)
03139
03144 #define MLV_COLOR_VIOLETRED3 MLV_rgba(205,50,120,255)
03145
03150 #define MLV_COLOR_VIOLETRED4 MLV_rgba(139,34,82,255)
03151
03156 #define MLV_COLOR_MAGENTA1 MLV_rgba(255,0,255,255)
03157
03162 #define MLV_COLOR_MAGENTA2 MLV_rgba(238,0,238,255)
03163
03168 #define MLV_COLOR_MAGENTA3 MLV_rgba(205,0,205,255)
03169
03174 #define MLV_COLOR_MAGENTA4 MLV_rgba(139,0,139,255)
03175
03180 #define MLV_COLOR_ORCHID1 MLV_rgba(255,131,250,255)
03181
03186 #define MLV_COLOR_ORCHID2 MLV_rgba(238,122,233,255)
03187
03192 #define MLV_COLOR_ORCHID3 MLV_rgba(205,105,201,255)
03193
03198 #define MLV_COLOR_ORCHID4 MLV_rgba(139,71,137,255)
03199
03204 #define MLV_COLOR_PLUM1 MLV_rgba(255,187,255,255)
03205
03210 #define MLV_COLOR_PLUM2 MLV_rgba(238,174,238,255)
03211
03216 #define MLV_COLOR_PLUM3 MLV_rgba(205,150,205,255)
03217
03222 #define MLV_COLOR_PLUM4 MLV_rgba(139,102,139,255)
03223
03228 #define MLV_COLOR_MEDIUMORCHID1 MLV_rgba(224,102,255,255)
03229
03234 #define MLV_COLOR_MEDIUMORCHID2 MLV_rgba(209,95,238,255)
03235
03240 #define MLV_COLOR_MEDIUMORCHID3 MLV_rgba(180,82,205,255)
03241
03246 #define MLV_COLOR_MEDIUMORCHID4 MLV_rgba(122,55,139,255)
03247
03252 #define MLV_COLOR_DARKORCHID1 MLV_rgba(191,62,255,255)
03253
03258 #define MLV_COLOR_DARKORCHID2 MLV_rgba(178,58,238,255)
03259
03264 #define MLV_COLOR_DARKORCHID3 MLV_rgba(154,50,205,255)
03265
03270 #define MLV_COLOR_DARKORCHID4 MLV_rgba(104,34,139,255)
03271
03276 #define MLV_COLOR_PURPLE1 MLV_rgba(155,48,255,255)
03277
03282 #define MLV_COLOR_PURPLE2 MLV_rgba(145,44,238,255)
03283
03288 #define MLV_COLOR_PURPLE3 MLV_rgba(125,38,205,255)
03289
03294 #define MLV_COLOR_PURPLE4 MLV_rgba(85,26,139,255)
03295
03300 #define MLV_COLOR_MEDIUMPURPLE1 MLV_rgba(171,130,255,255)
03301
03306 #define MLV_COLOR_MEDIUMPURPLE2 MLV_rgba(159,121,238,255)
03307
03312 #define MLV_COLOR_MEDIUMPURPLE3 MLV_rgba(137,104,205,255)
03313
03318 #define MLV_COLOR_MEDIUMPURPLE4 MLV_rgba(93,71,139,255)
03319
03324 #define MLV_COLOR_THISTLE1 MLV_rgba(255,225,255,255)
03325
03330 #define MLV_COLOR_THISTLE2 MLV_rgba(238,210,238,255)
03331
03336 #define MLV_COLOR_THISTLE3 MLV_rgba(205,181,205,255)
03337
03342 #define MLV_COLOR_THISTLE4 MLV_rgba(139,123,139,255)
03343
03348 #define MLV_COLOR_GRAY0 MLV_rgba(0,0,0,255)
03349
03354 #define MLV_COLOR_GREY0 MLV_rgba(0,0,0,255)
03355
03360 #define MLV_COLOR_GRAY1 MLV_rgba(3,3,3,255)
03361
03366 #define MLV_COLOR_GREY1 MLV_rgba(3,3,3,255)
03367
03372 #define MLV_COLOR_GRAY2 MLV_rgba(5,5,5,255)
03373
03378 #define MLV_COLOR_GREY2 MLV_rgba(5,5,5,255)
03379
03384 #define MLV_COLOR_GRAY3 MLV_rgba(8,8,8,255)
03385
03390 #define MLV_COLOR_GREY3 MLV_rgba(8,8,8,255)
03391
03396 #define MLV_COLOR_GRAY4 MLV_rgba(10,10,10,255)
03397
03402 #define MLV_COLOR_GREY4 MLV_rgba(10,10,10,255)
03403
03408 #define MLV_COLOR_GRAY5 MLV_rgba(13,13,13,255)
03409
03414 #define MLV_COLOR_GREY5 MLV_rgba(13,13,13,255)
03415
03420 #define MLV_COLOR_GRAY6 MLV_rgba(15,15,15,255)
03421
03426 #define MLV_COLOR_GREY6 MLV_rgba(15,15,15,255)
03427
03432 #define MLV_COLOR_GRAY7 MLV_rgba(18,18,18,255)
03433
03438 #define MLV_COLOR_GREY7 MLV_rgba(18,18,18,255)
03439
03444 #define MLV_COLOR_GRAY8 MLV_rgba(20,20,20,255)
03445
03450 #define MLV_COLOR_GREY8 MLV_rgba(20,20,20,255)
03451
03456 #define MLV_COLOR_GRAY9 MLV_rgba(23,23,23,255)
03457
03462 #define MLV_COLOR_GREY9 MLV_rgba(23,23,23,255)
03463
03468 #define MLV_COLOR_GRAY10 MLV_rgba(26,26,26,255)
03469
03474 #define MLV_COLOR_GREY10 MLV_rgba(26,26,26,255)
03475
03480 #define MLV_COLOR_GRAY11 MLV_rgba(28,28,28,255)
03481
03486 #define MLV_COLOR_GREY11 MLV_rgba(28,28,28,255)
03487
03492 #define MLV_COLOR_GRAY12 MLV_rgba(31,31,31,255)
03493
03498 #define MLV_COLOR_GREY12 MLV_rgba(31,31,31,255)
03499
03504 #define MLV_COLOR_GRAY13 MLV_rgba(33,33,33,255)
03505
03510 #define MLV_COLOR_GREY13 MLV_rgba(33,33,33,255)
03511
03516 #define MLV_COLOR_GRAY14 MLV_rgba(36,36,36,255)
03517
03522 #define MLV_COLOR_GREY14 MLV_rgba(36,36,36,255)
03523
03528 #define MLV_COLOR_GRAY15 MLV_rgba(38,38,38,255)
03529
03534 #define MLV_COLOR_GREY15 MLV_rgba(38,38,38,255)
03535
03540 #define MLV_COLOR_GRAY16 MLV_rgba(41,41,41,255)
03541
03546 #define MLV_COLOR_GREY16 MLV_rgba(41,41,41,255)
03547
03552 #define MLV_COLOR_GRAY17 MLV_rgba(43,43,43,255)
03553
03558 #define MLV_COLOR_GREY17 MLV_rgba(43,43,43,255)
03559
03564 #define MLV_COLOR_GRAY18 MLV_rgba(46,46,46,255)
03565
03570 #define MLV_COLOR_GREY18 MLV_rgba(46,46,46,255)
03571
03576 #define MLV_COLOR_GRAY19 MLV_rgba(48,48,48,255)
03577
03582 #define MLV_COLOR_GREY19 MLV_rgba(48,48,48,255)
03583
03588 #define MLV_COLOR_GRAY20 MLV_rgba(51,51,51,255)
03589
03594 #define MLV_COLOR_GREY20 MLV_rgba(51,51,51,255)
03595
03600 #define MLV_COLOR_GRAY21 MLV_rgba(54,54,54,255)
03601
03606 #define MLV_COLOR_GREY21 MLV_rgba(54,54,54,255)
03607
03612 #define MLV_COLOR_GRAY22 MLV_rgba(56,56,56,255)
03613
03618 #define MLV_COLOR_GREY22 MLV_rgba(56,56,56,255)
03619
03624 #define MLV_COLOR_GRAY23 MLV_rgba(59,59,59,255)
03625
03630 #define MLV_COLOR_GREY23 MLV_rgba(59,59,59,255)
03631
03636 #define MLV_COLOR_GRAY24 MLV_rgba(61,61,61,255)
03637
03642 #define MLV_COLOR_GREY24 MLV_rgba(61,61,61,255)
03643
03648 #define MLV_COLOR_GRAY25 MLV_rgba(64,64,64,255)
03649
03654 #define MLV_COLOR_GREY25 MLV_rgba(64,64,64,255)
03655
03660 #define MLV_COLOR_GRAY26 MLV_rgba(66,66,66,255)
03661
03666 #define MLV_COLOR_GREY26 MLV_rgba(66,66,66,255)
03667
03672 #define MLV_COLOR_GRAY27 MLV_rgba(69,69,69,255)
03673
03678 #define MLV_COLOR_GREY27 MLV_rgba(69,69,69,255)
03679
03684 #define MLV_COLOR_GRAY28 MLV_rgba(71,71,71,255)
03685
03690 #define MLV_COLOR_GREY28 MLV_rgba(71,71,71,255)
03691
03696 #define MLV_COLOR_GRAY29 MLV_rgba(74,74,74,255)
03697
03702 #define MLV_COLOR_GREY29 MLV_rgba(74,74,74,255)
03703
03708 #define MLV_COLOR_GRAY30 MLV_rgba(77,77,77,255)
03709
03714 #define MLV_COLOR_GREY30 MLV_rgba(77,77,77,255)
03715
03720 #define MLV_COLOR_GRAY31 MLV_rgba(79,79,79,255)
03721
03726 #define MLV_COLOR_GREY31 MLV_rgba(79,79,79,255)
03727
03732 #define MLV_COLOR_GRAY32 MLV_rgba(82,82,82,255)
03733
03738 #define MLV_COLOR_GREY32 MLV_rgba(82,82,82,255)
03739
03744 #define MLV_COLOR_GRAY33 MLV_rgba(84,84,84,255)
03745
03750 #define MLV_COLOR_GREY33 MLV_rgba(84,84,84,255)
03751
03756 #define MLV_COLOR_GRAY34 MLV_rgba(87,87,87,255)
03757
03762 #define MLV_COLOR_GREY34 MLV_rgba(87,87,87,255)
03763
03768 #define MLV_COLOR_GRAY35 MLV_rgba(89,89,89,255)
03769
03774 #define MLV_COLOR_GREY35 MLV_rgba(89,89,89,255)
03775
03780 #define MLV_COLOR_GRAY36 MLV_rgba(92,92,92,255)
03781
03786 #define MLV_COLOR_GREY36 MLV_rgba(92,92,92,255)
03787
03792 #define MLV_COLOR_GRAY37 MLV_rgba(94,94,94,255)
03793
03798 #define MLV_COLOR_GREY37 MLV_rgba(94,94,94,255)
03799
03804 #define MLV_COLOR_GRAY38 MLV_rgba(97,97,97,255)
03805
03810 #define MLV_COLOR_GREY38 MLV_rgba(97,97,97,255)
03811
03816 #define MLV_COLOR_GRAY39 MLV_rgba(99,99,99,255)
03817
03822 #define MLV_COLOR_GREY39 MLV_rgba(99,99,99,255)
03823
03828 #define MLV_COLOR_GRAY40 MLV_rgba(102,102,102,255)
03829
03834 #define MLV_COLOR_GREY40 MLV_rgba(102,102,102,255)
03835
03840 #define MLV_COLOR_GRAY41 MLV_rgba(105,105,105,255)
03841
03846 #define MLV_COLOR_GREY41 MLV_rgba(105,105,105,255)
03847
03852 #define MLV_COLOR_GRAY42 MLV_rgba(107,107,107,255)
03853
03858 #define MLV_COLOR_GREY42 MLV_rgba(107,107,107,255)
03859
03864 #define MLV_COLOR_GRAY43 MLV_rgba(110,110,110,255)
03865
03870 #define MLV_COLOR_GREY43 MLV_rgba(110,110,110,255)
03871
03876 #define MLV_COLOR_GRAY44 MLV_rgba(112,112,112,255)
03877
03882 #define MLV_COLOR_GREY44 MLV_rgba(112,112,112,255)
03883
03888 #define MLV_COLOR_GRAY45 MLV_rgba(115,115,115,255)
03889
03894 #define MLV_COLOR_GREY45 MLV_rgba(115,115,115,255)
03895
03900 #define MLV_COLOR_GRAY46 MLV_rgba(117,117,117,255)
03901
03906 #define MLV_COLOR_GREY46 MLV_rgba(117,117,117,255)
03907
03912 #define MLV_COLOR_GRAY47 MLV_rgba(120,120,120,255)
03913
03918 #define MLV_COLOR_GREY47 MLV_rgba(120,120,120,255)
03919
03924 #define MLV_COLOR_GRAY48 MLV_rgba(122,122,122,255)
03925
03930 #define MLV_COLOR_GREY48 MLV_rgba(122,122,122,255)
03931
03936 #define MLV_COLOR_GRAY49 MLV_rgba(125,125,125,255)
03937
03942 #define MLV_COLOR_GREY49 MLV_rgba(125,125,125,255)
03943
03948 #define MLV_COLOR_GRAY50 MLV_rgba(127,127,127,255)
03949
03954 #define MLV_COLOR_GREY50 MLV_rgba(127,127,127,255)
03955
03960 #define MLV_COLOR_GRAY51 MLV_rgba(130,130,130,255)
03961
03966 #define MLV_COLOR_GREY51 MLV_rgba(130,130,130,255)
03967
03972 #define MLV_COLOR_GRAY52 MLV_rgba(133,133,133,255)
03973
03978 #define MLV_COLOR_GREY52 MLV_rgba(133,133,133,255)
03979
03984 #define MLV_COLOR_GRAY53 MLV_rgba(135,135,135,255)
03985
03990 #define MLV_COLOR_GREY53 MLV_rgba(135,135,135,255)
03991
03996 #define MLV_COLOR_GRAY54 MLV_rgba(138,138,138,255)
03997
04002 #define MLV_COLOR_GREY54 MLV_rgba(138,138,138,255)
04003
04008 #define MLV_COLOR_GRAY55 MLV_rgba(140,140,140,255)
04009
04014 #define MLV_COLOR_GREY55 MLV_rgba(140,140,140,255)
04015
04020 #define MLV_COLOR_GRAY56 MLV_rgba(143,143,143,255)
04021
04026 #define MLV_COLOR_GREY56 MLV_rgba(143,143,143,255)
04027
04032 #define MLV_COLOR_GRAY57 MLV_rgba(145,145,145,255)
04033
04038 #define MLV_COLOR_GREY57 MLV_rgba(145,145,145,255)
04039
04044 #define MLV_COLOR_GRAY58 MLV_rgba(148,148,148,255)
04045
04050 #define MLV_COLOR_GREY58 MLV_rgba(148,148,148,255)
04051
04056 #define MLV_COLOR_GRAY59 MLV_rgba(150,150,150,255)
04057
04062 #define MLV_COLOR_GREY59 MLV_rgba(150,150,150,255)
04063
04068 #define MLV_COLOR_GRAY60 MLV_rgba(153,153,153,255)
04069
04074 #define MLV_COLOR_GREY60 MLV_rgba(153,153,153,255)
04075
04080 #define MLV_COLOR_GRAY61 MLV_rgba(156,156,156,255)
04081
04086 #define MLV_COLOR_GREY61 MLV_rgba(156,156,156,255)
04087
04092 #define MLV_COLOR_GRAY62 MLV_rgba(158,158,158,255)
04093
04098 #define MLV_COLOR_GREY62 MLV_rgba(158,158,158,255)
04099
04104 #define MLV_COLOR_GRAY63 MLV_rgba(161,161,161,255)
04105
04110 #define MLV_COLOR_GREY63 MLV_rgba(161,161,161,255)
04111
04116 #define MLV_COLOR_GRAY64 MLV_rgba(163,163,163,255)
04117
04122 #define MLV_COLOR_GREY64 MLV_rgba(163,163,163,255)
04123
04128 #define MLV_COLOR_GRAY65 MLV_rgba(166,166,166,255)
04129
04134 #define MLV_COLOR_GREY65 MLV_rgba(166,166,166,255)
04135
04140 #define MLV_COLOR_GRAY66 MLV_rgba(168,168,168,255)
04141
04146 #define MLV_COLOR_GREY66 MLV_rgba(168,168,168,255)
04147
04152 #define MLV_COLOR_GRAY67 MLV_rgba(171,171,171,255)
04153
04158 #define MLV_COLOR_GREY67 MLV_rgba(171,171,171,255)
04159
04164 #define MLV_COLOR_GRAY68 MLV_rgba(173,173,173,255)
04165
04170 #define MLV_COLOR_GREY68 MLV_rgba(173,173,173,255)
04171
04176 #define MLV_COLOR_GRAY69 MLV_rgba(176,176,176,255)
04177
04182 #define MLV_COLOR_GREY69 MLV_rgba(176,176,176,255)
04183
04188 #define MLV_COLOR_GRAY70 MLV_rgba(179,179,179,255)
04189
04194 #define MLV_COLOR_GREY70 MLV_rgba(179,179,179,255)
04195
04200 #define MLV_COLOR_GRAY71 MLV_rgba(181,181,181,255)
04201
04206 #define MLV_COLOR_GREY71 MLV_rgba(181,181,181,255)
04207
04212 #define MLV_COLOR_GRAY72 MLV_rgba(184,184,184,255)
04213
04218 #define MLV_COLOR_GREY72 MLV_rgba(184,184,184,255)
04219
04224 #define MLV_COLOR_GRAY73 MLV_rgba(186,186,186,255)
04225
04230 #define MLV_COLOR_GREY73 MLV_rgba(186,186,186,255)
04231
04236 #define MLV_COLOR_GRAY74 MLV_rgba(189,189,189,255)
04237
04242 #define MLV_COLOR_GREY74 MLV_rgba(189,189,189,255)
04243
04248 #define MLV_COLOR_GRAY75 MLV_rgba(191,191,191,255)
04249
04254 #define MLV_COLOR_GREY75 MLV_rgba(191,191,191,255)
04255
04260 #define MLV_COLOR_GRAY76 MLV_rgba(194,194,194,255)
04261
04266 #define MLV_COLOR_GREY76 MLV_rgba(194,194,194,255)
04267
04272 #define MLV_COLOR_GRAY77 MLV_rgba(196,196,196,255)
04273
04278 #define MLV_COLOR_GREY77 MLV_rgba(196,196,196,255)
04279
04284 #define MLV_COLOR_GRAY78 MLV_rgba(199,199,199,255)
04285
04290 #define MLV_COLOR_GREY78 MLV_rgba(199,199,199,255)
04291
04296 #define MLV_COLOR_GRAY79 MLV_rgba(201,201,201,255)
04297
04302 #define MLV_COLOR_GREY79 MLV_rgba(201,201,201,255)
04303
04308 #define MLV_COLOR_GRAY80 MLV_rgba(204,204,204,255)
04309
04314 #define MLV_COLOR_GREY80 MLV_rgba(204,204,204,255)
04315
04320 #define MLV_COLOR_GRAY81 MLV_rgba(207,207,207,255)
04321
04326 #define MLV_COLOR_GREY81 MLV_rgba(207,207,207,255)
04327
04332 #define MLV_COLOR_GRAY82 MLV_rgba(209,209,209,255)
04333
04338 #define MLV_COLOR_GREY82 MLV_rgba(209,209,209,255)
04339
04344 #define MLV_COLOR_GRAY83 MLV_rgba(212,212,212,255)
04345
04350 #define MLV_COLOR_GREY83 MLV_rgba(212,212,212,255)
04351
04356 #define MLV_COLOR_GRAY84 MLV_rgba(214,214,214,255)
04357
04362 #define MLV_COLOR_GREY84 MLV_rgba(214,214,214,255)
04363
04368 #define MLV_COLOR_GRAY85 MLV_rgba(217,217,217,255)
04369
04374 #define MLV_COLOR_GREY85 MLV_rgba(217,217,217,255)
04375
04380 #define MLV_COLOR_GRAY86 MLV_rgba(219,219,219,255)
04381
04386 #define MLV_COLOR_GREY86 MLV_rgba(219,219,219,255)
04387
04392 #define MLV_COLOR_GRAY87 MLV_rgba(222,222,222,255)
04393
04398 #define MLV_COLOR_GREY87 MLV_rgba(222,222,222,255)
04399
04404 #define MLV_COLOR_GRAY88 MLV_rgba(224,224,224,255)
04405
04410 #define MLV_COLOR_GREY88 MLV_rgba(224,224,224,255)
04411
04416 #define MLV_COLOR_GRAY89 MLV_rgba(227,227,227,255)
04417
04422 #define MLV_COLOR_GREY89 MLV_rgba(227,227,227,255)
04423
04428 #define MLV_COLOR_GRAY90 MLV_rgba(229,229,229,255)
04429
04434 #define MLV_COLOR_GREY90 MLV_rgba(229,229,229,255)
04435
04440 #define MLV_COLOR_GRAY91 MLV_rgba(232,232,232,255)
04441
04446 #define MLV_COLOR_GREY91 MLV_rgba(232,232,232,255)
04447
04452 #define MLV_COLOR_GRAY92 MLV_rgba(235,235,235,255)
04453
04458 #define MLV_COLOR_GREY92 MLV_rgba(235,235,235,255)
04459
04464 #define MLV_COLOR_GRAY93 MLV_rgba(237,237,237,255)
04465
04470 #define MLV_COLOR_GREY93 MLV_rgba(237,237,237,255)
04471
04476 #define MLV_COLOR_GRAY94 MLV_rgba(240,240,240,255)
04477
04482 #define MLV_COLOR_GREY94 MLV_rgba(240,240,240,255)
04483
04488 #define MLV_COLOR_GRAY95 MLV_rgba(242,242,242,255)
04489
04494 #define MLV_COLOR_GREY95 MLV_rgba(242,242,242,255)
04495
04500 #define MLV_COLOR_GRAY96 MLV_rgba(245,245,245,255)
04501
04506 #define MLV_COLOR_GREY96 MLV_rgba(245,245,245,255)
04507
04512 #define MLV_COLOR_GRAY97 MLV_rgba(247,247,247,255)
04513
04518 #define MLV_COLOR_GREY97 MLV_rgba(247,247,247,255)
04519
04524 #define MLV_COLOR_GRAY98 MLV_rgba(250,250,250,255)
04525
04530 #define MLV_COLOR_GREY98 MLV_rgba(250,250,250,255)
04531
04536 #define MLV_COLOR_GRAY99 MLV_rgba(252,252,252,255)
04537
04542 #define MLV_COLOR_GREY99 MLV_rgba(252,252,252,255)
04543
04548 #define MLV_COLOR_GRAY100 MLV_rgba(255,255,255,255)
04549
04554 #define MLV_COLOR_GREY100 MLV_rgba(255,255,255,255)
04555
04560 #define MLV_COLOR_DARK_GREY MLV_rgba(169,169,169,255)
04561
04566 #define MLV_COLOR_DARKGREY MLV_rgba(169,169,169,255)
04567
04572 #define MLV_COLOR_DARK_GRAY MLV_rgba(169,169,169,255)
04573
04578 #define MLV_COLOR_DARKGRAY MLV_rgba(169,169,169,255)
04579
04584 #define MLV_COLOR_DARK_BLUE MLV_rgba(0,0,139,255)
04585
04590 #define MLV_COLOR_DARKBLUE MLV_rgba(0,0,139,255)
04591
04596 #define MLV_COLOR_DARK_CYAN MLV_rgba(0,139,139,255)
04597
04602 #define MLV_COLOR_DARKCYAN MLV_rgba(0,139,139,255)
04603
04608 #define MLV_COLOR_DARK_MAGENTA MLV_rgba(139,0,139,255)
04609
04614 #define MLV_COLOR_DARKMAGENTA MLV_rgba(139,0,139,255)
04615
04620 #define MLV_COLOR_DARK_RED MLV_rgba(139,0,0,255)
04621
04626 #define MLV_COLOR_DARKRED MLV_rgba(139,0,0,255)
04627
04632 #define MLV_COLOR_LIGHT_GREEN MLV_rgba(144,238,144,255)
04633
04638 #define MLV_COLOR_LIGHTGREEN MLV_rgba(144,238,144,255)
04639
04640
04641 #ifdef __cplusplus
04642 }
04643 #endif
04644
04645 #endif