00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00031 #ifndef __MLV__MLV_COLOR_H__
00032 #define __MLV__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
00054 typedef Uint32 MLV_Color;
00055
00059 enum {
00060 MLV_ALPHA_TRANSPARENT = SDL_ALPHA_TRANSPARENT,
00061 MLV_ALPHA_OPAQUE = SDL_ALPHA_OPAQUE
00062 };
00063
00067 typedef Uint8 MLV_Alpha;
00068
00069
00081 MLV_Color MLV_rgba( Uint8 red, Uint8 green, Uint8 blue, Uint8 alpha );
00082
00093 MLV_Color MLV_convert_rgba_to_color(
00094 Uint8 red, Uint8 green, Uint8 blue, Uint8 alpha
00095 );
00096
00108 void MLV_convert_color_to_rgba(
00109 MLV_Color color, Uint8* red, Uint8* green, Uint8* blue, Uint8* alpha
00110 );
00111
00122 const char* MLV_convert_color_to_string( MLV_Color color );
00123
00133 MLV_Color MLV_convert_string_to_color( const char* color_name );
00134
00139 #define MLV_COLOR_SNOW MLV_rgba(255,250,250,255)
00140
00145 #define MLV_COLOR_GHOST_WHITE MLV_rgba(248,248,255,255)
00146
00151 #define MLV_COLOR_GHOSTWHITE MLV_rgba(248,248,255,255)
00152
00157 #define MLV_COLOR_WHITE_SMOKE MLV_rgba(245,245,245,255)
00158
00163 #define MLV_COLOR_WHITESMOKE MLV_rgba(245,245,245,255)
00164
00169 #define MLV_COLOR_GAINSBORO MLV_rgba(220,220,220,255)
00170
00175 #define MLV_COLOR_FLORAL_WHITE MLV_rgba(255,250,240,255)
00176
00181 #define MLV_COLOR_FLORALWHITE MLV_rgba(255,250,240,255)
00182
00187 #define MLV_COLOR_OLD_LACE MLV_rgba(253,245,230,255)
00188
00193 #define MLV_COLOR_OLDLACE MLV_rgba(253,245,230,255)
00194
00199 #define MLV_COLOR_LINEN MLV_rgba(250,240,230,255)
00200
00205 #define MLV_COLOR_ANTIQUE_WHITE MLV_rgba(250,235,215,255)
00206
00211 #define MLV_COLOR_ANTIQUEWHITE MLV_rgba(250,235,215,255)
00212
00217 #define MLV_COLOR_PAPAYA_WHIP MLV_rgba(255,239,213,255)
00218
00223 #define MLV_COLOR_PAPAYAWHIP MLV_rgba(255,239,213,255)
00224
00229 #define MLV_COLOR_BLANCHED_ALMOND MLV_rgba(255,235,205,255)
00230
00235 #define MLV_COLOR_BLANCHEDALMOND MLV_rgba(255,235,205,255)
00236
00241 #define MLV_COLOR_BISQUE MLV_rgba(255,228,196,255)
00242
00247 #define MLV_COLOR_PEACH_PUFF MLV_rgba(255,218,185,255)
00248
00253 #define MLV_COLOR_PEACHPUFF MLV_rgba(255,218,185,255)
00254
00259 #define MLV_COLOR_NAVAJO_WHITE MLV_rgba(255,222,173,255)
00260
00265 #define MLV_COLOR_NAVAJOWHITE MLV_rgba(255,222,173,255)
00266
00271 #define MLV_COLOR_MOCCASIN MLV_rgba(255,228,181,255)
00272
00277 #define MLV_COLOR_CORNSILK MLV_rgba(255,248,220,255)
00278
00283 #define MLV_COLOR_IVORY MLV_rgba(255,255,240,255)
00284
00289 #define MLV_COLOR_LEMON_CHIFFON MLV_rgba(255,250,205,255)
00290
00295 #define MLV_COLOR_LEMONCHIFFON MLV_rgba(255,250,205,255)
00296
00301 #define MLV_COLOR_SEASHELL MLV_rgba(255,245,238,255)
00302
00307 #define MLV_COLOR_HONEYDEW MLV_rgba(240,255,240,255)
00308
00313 #define MLV_COLOR_MINT_CREAM MLV_rgba(245,255,250,255)
00314
00319 #define MLV_COLOR_MINTCREAM MLV_rgba(245,255,250,255)
00320
00325 #define MLV_COLOR_AZURE MLV_rgba(240,255,255,255)
00326
00331 #define MLV_COLOR_ALICE_BLUE MLV_rgba(240,248,255,255)
00332
00337 #define MLV_COLOR_ALICEBLUE MLV_rgba(240,248,255,255)
00338
00343 #define MLV_COLOR_LAVENDER MLV_rgba(230,230,250,255)
00344
00349 #define MLV_COLOR_LAVENDER_BLUSH MLV_rgba(255,240,245,255)
00350
00355 #define MLV_COLOR_LAVENDERBLUSH MLV_rgba(255,240,245,255)
00356
00361 #define MLV_COLOR_MISTY_ROSE MLV_rgba(255,228,225,255)
00362
00367 #define MLV_COLOR_MISTYROSE MLV_rgba(255,228,225,255)
00368
00373 #define MLV_COLOR_WHITE MLV_rgba(255,255,255,255)
00374
00379 #define MLV_COLOR_BLACK MLV_rgba(0,0,0,255)
00380
00385 #define MLV_COLOR_DARK_SLATE_GRAY MLV_rgba(47,79,79,255)
00386
00391 #define MLV_COLOR_DARKSLATEGRAY MLV_rgba(47,79,79,255)
00392
00397 #define MLV_COLOR_DARK_SLATE_GREY MLV_rgba(47,79,79,255)
00398
00403 #define MLV_COLOR_DARKSLATEGREY MLV_rgba(47,79,79,255)
00404
00409 #define MLV_COLOR_DIM_GRAY MLV_rgba(105,105,105,255)
00410
00415 #define MLV_COLOR_DIMGRAY MLV_rgba(105,105,105,255)
00416
00421 #define MLV_COLOR_DIM_GREY MLV_rgba(105,105,105,255)
00422
00427 #define MLV_COLOR_DIMGREY MLV_rgba(105,105,105,255)
00428
00433 #define MLV_COLOR_SLATE_GRAY MLV_rgba(112,128,144,255)
00434
00439 #define MLV_COLOR_SLATEGRAY MLV_rgba(112,128,144,255)
00440
00445 #define MLV_COLOR_SLATE_GREY MLV_rgba(112,128,144,255)
00446
00451 #define MLV_COLOR_SLATEGREY MLV_rgba(112,128,144,255)
00452
00457 #define MLV_COLOR_LIGHT_SLATE_GRAY MLV_rgba(119,136,153,255)
00458
00463 #define MLV_COLOR_LIGHTSLATEGRAY MLV_rgba(119,136,153,255)
00464
00469 #define MLV_COLOR_LIGHT_SLATE_GREY MLV_rgba(119,136,153,255)
00470
00475 #define MLV_COLOR_LIGHTSLATEGREY MLV_rgba(119,136,153,255)
00476
00481 #define MLV_COLOR_GRAY MLV_rgba(190,190,190,255)
00482
00487 #define MLV_COLOR_GREY MLV_rgba(190,190,190,255)
00488
00493 #define MLV_COLOR_LIGHT_GREY MLV_rgba(211,211,211,255)
00494
00499 #define MLV_COLOR_LIGHTGREY MLV_rgba(211,211,211,255)
00500
00505 #define MLV_COLOR_LIGHT_GRAY MLV_rgba(211,211,211,255)
00506
00511 #define MLV_COLOR_LIGHTGRAY MLV_rgba(211,211,211,255)
00512
00517 #define MLV_COLOR_MIDNIGHT_BLUE MLV_rgba(25,25,112,255)
00518
00523 #define MLV_COLOR_MIDNIGHTBLUE MLV_rgba(25,25,112,255)
00524
00529 #define MLV_COLOR_NAVY MLV_rgba(0,0,128,255)
00530
00535 #define MLV_COLOR_NAVY_BLUE MLV_rgba(0,0,128,255)
00536
00541 #define MLV_COLOR_NAVYBLUE MLV_rgba(0,0,128,255)
00542
00547 #define MLV_COLOR_CORNFLOWER_BLUE MLV_rgba(100,149,237,255)
00548
00553 #define MLV_COLOR_CORNFLOWERBLUE MLV_rgba(100,149,237,255)
00554
00559 #define MLV_COLOR_DARK_SLATE_BLUE MLV_rgba(72,61,139,255)
00560
00565 #define MLV_COLOR_DARKSLATEBLUE MLV_rgba(72,61,139,255)
00566
00571 #define MLV_COLOR_SLATE_BLUE MLV_rgba(106,90,205,255)
00572
00577 #define MLV_COLOR_SLATEBLUE MLV_rgba(106,90,205,255)
00578
00583 #define MLV_COLOR_MEDIUM_SLATE_BLUE MLV_rgba(123,104,238,255)
00584
00589 #define MLV_COLOR_MEDIUMSLATEBLUE MLV_rgba(123,104,238,255)
00590
00595 #define MLV_COLOR_LIGHT_SLATE_BLUE MLV_rgba(132,112,255,255)
00596
00601 #define MLV_COLOR_LIGHTSLATEBLUE MLV_rgba(132,112,255,255)
00602
00607 #define MLV_COLOR_MEDIUM_BLUE MLV_rgba(0,0,205,255)
00608
00613 #define MLV_COLOR_MEDIUMBLUE MLV_rgba(0,0,205,255)
00614
00619 #define MLV_COLOR_ROYAL_BLUE MLV_rgba(65,105,225,255)
00620
00625 #define MLV_COLOR_ROYALBLUE MLV_rgba(65,105,225,255)
00626
00631 #define MLV_COLOR_BLUE MLV_rgba(0,0,255,255)
00632
00637 #define MLV_COLOR_DODGER_BLUE MLV_rgba(30,144,255,255)
00638
00643 #define MLV_COLOR_DODGERBLUE MLV_rgba(30,144,255,255)
00644
00649 #define MLV_COLOR_DEEP_SKY_BLUE MLV_rgba(0,191,255,255)
00650
00655 #define MLV_COLOR_DEEPSKYBLUE MLV_rgba(0,191,255,255)
00656
00661 #define MLV_COLOR_SKY_BLUE MLV_rgba(135,206,235,255)
00662
00667 #define MLV_COLOR_SKYBLUE MLV_rgba(135,206,235,255)
00668
00673 #define MLV_COLOR_LIGHT_SKY_BLUE MLV_rgba(135,206,250,255)
00674
00679 #define MLV_COLOR_LIGHTSKYBLUE MLV_rgba(135,206,250,255)
00680
00685 #define MLV_COLOR_STEEL_BLUE MLV_rgba(70,130,180,255)
00686
00691 #define MLV_COLOR_STEELBLUE MLV_rgba(70,130,180,255)
00692
00697 #define MLV_COLOR_LIGHT_STEEL_BLUE MLV_rgba(176,196,222,255)
00698
00703 #define MLV_COLOR_LIGHTSTEELBLUE MLV_rgba(176,196,222,255)
00704
00709 #define MLV_COLOR_LIGHT_BLUE MLV_rgba(173,216,230,255)
00710
00715 #define MLV_COLOR_LIGHTBLUE MLV_rgba(173,216,230,255)
00716
00721 #define MLV_COLOR_POWDER_BLUE MLV_rgba(176,224,230,255)
00722
00727 #define MLV_COLOR_POWDERBLUE MLV_rgba(176,224,230,255)
00728
00733 #define MLV_COLOR_PALE_TURQUOISE MLV_rgba(175,238,238,255)
00734
00739 #define MLV_COLOR_PALETURQUOISE MLV_rgba(175,238,238,255)
00740
00745 #define MLV_COLOR_DARK_TURQUOISE MLV_rgba(0,206,209,255)
00746
00751 #define MLV_COLOR_DARKTURQUOISE MLV_rgba(0,206,209,255)
00752
00757 #define MLV_COLOR_MEDIUM_TURQUOISE MLV_rgba(72,209,204,255)
00758
00763 #define MLV_COLOR_MEDIUMTURQUOISE MLV_rgba(72,209,204,255)
00764
00769 #define MLV_COLOR_TURQUOISE MLV_rgba(64,224,208,255)
00770
00775 #define MLV_COLOR_CYAN MLV_rgba(0,255,255,255)
00776
00781 #define MLV_COLOR_LIGHT_CYAN MLV_rgba(224,255,255,255)
00782
00787 #define MLV_COLOR_LIGHTCYAN MLV_rgba(224,255,255,255)
00788
00793 #define MLV_COLOR_CADET_BLUE MLV_rgba(95,158,160,255)
00794
00799 #define MLV_COLOR_CADETBLUE MLV_rgba(95,158,160,255)
00800
00805 #define MLV_COLOR_MEDIUM_AQUAMARINE MLV_rgba(102,205,170,255)
00806
00811 #define MLV_COLOR_MEDIUMAQUAMARINE MLV_rgba(102,205,170,255)
00812
00817 #define MLV_COLOR_AQUAMARINE MLV_rgba(127,255,212,255)
00818
00823 #define MLV_COLOR_DARK_GREEN MLV_rgba(0,100,0,255)
00824
00829 #define MLV_COLOR_DARKGREEN MLV_rgba(0,100,0,255)
00830
00835 #define MLV_COLOR_DARK_OLIVE_GREEN MLV_rgba(85,107,47,255)
00836
00841 #define MLV_COLOR_DARKOLIVEGREEN MLV_rgba(85,107,47,255)
00842
00847 #define MLV_COLOR_DARK_SEA_GREEN MLV_rgba(143,188,143,255)
00848
00853 #define MLV_COLOR_DARKSEAGREEN MLV_rgba(143,188,143,255)
00854
00859 #define MLV_COLOR_SEA_GREEN MLV_rgba(46,139,87,255)
00860
00865 #define MLV_COLOR_SEAGREEN MLV_rgba(46,139,87,255)
00866
00871 #define MLV_COLOR_MEDIUM_SEA_GREEN MLV_rgba(60,179,113,255)
00872
00877 #define MLV_COLOR_MEDIUMSEAGREEN MLV_rgba(60,179,113,255)
00878
00883 #define MLV_COLOR_LIGHT_SEA_GREEN MLV_rgba(32,178,170,255)
00884
00889 #define MLV_COLOR_LIGHTSEAGREEN MLV_rgba(32,178,170,255)
00890
00895 #define MLV_COLOR_PALE_GREEN MLV_rgba(152,251,152,255)
00896
00901 #define MLV_COLOR_PALEGREEN MLV_rgba(152,251,152,255)
00902
00907 #define MLV_COLOR_SPRING_GREEN MLV_rgba(0,255,127,255)
00908
00913 #define MLV_COLOR_SPRINGGREEN MLV_rgba(0,255,127,255)
00914
00919 #define MLV_COLOR_LAWN_GREEN MLV_rgba(124,252,0,255)
00920
00925 #define MLV_COLOR_LAWNGREEN MLV_rgba(124,252,0,255)
00926
00931 #define MLV_COLOR_GREEN MLV_rgba(0,255,0,255)
00932
00937 #define MLV_COLOR_CHARTREUSE MLV_rgba(127,255,0,255)
00938
00943 #define MLV_COLOR_MEDIUM_SPRING_GREEN MLV_rgba(0,250,154,255)
00944
00949 #define MLV_COLOR_MEDIUMSPRINGGREEN MLV_rgba(0,250,154,255)
00950
00955 #define MLV_COLOR_GREEN_YELLOW MLV_rgba(173,255,47,255)
00956
00961 #define MLV_COLOR_GREENYELLOW MLV_rgba(173,255,47,255)
00962
00967 #define MLV_COLOR_LIME_GREEN MLV_rgba(50,205,50,255)
00968
00973 #define MLV_COLOR_LIMEGREEN MLV_rgba(50,205,50,255)
00974
00979 #define MLV_COLOR_YELLOW_GREEN MLV_rgba(154,205,50,255)
00980
00985 #define MLV_COLOR_YELLOWGREEN MLV_rgba(154,205,50,255)
00986
00991 #define MLV_COLOR_FOREST_GREEN MLV_rgba(34,139,34,255)
00992
00997 #define MLV_COLOR_FORESTGREEN MLV_rgba(34,139,34,255)
00998
01003 #define MLV_COLOR_OLIVE_DRAB MLV_rgba(107,142,35,255)
01004
01009 #define MLV_COLOR_OLIVEDRAB MLV_rgba(107,142,35,255)
01010
01015 #define MLV_COLOR_DARK_KHAKI MLV_rgba(189,183,107,255)
01016
01021 #define MLV_COLOR_DARKKHAKI MLV_rgba(189,183,107,255)
01022
01027 #define MLV_COLOR_KHAKI MLV_rgba(240,230,140,255)
01028
01033 #define MLV_COLOR_PALE_GOLDENROD MLV_rgba(238,232,170,255)
01034
01039 #define MLV_COLOR_PALEGOLDENROD MLV_rgba(238,232,170,255)
01040
01045 #define MLV_COLOR_LIGHT_GOLDENROD_YELLOW MLV_rgba(250,250,210,255)
01046
01051 #define MLV_COLOR_LIGHTGOLDENRODYELLOW MLV_rgba(250,250,210,255)
01052
01057 #define MLV_COLOR_LIGHT_YELLOW MLV_rgba(255,255,224,255)
01058
01063 #define MLV_COLOR_LIGHTYELLOW MLV_rgba(255,255,224,255)
01064
01069 #define MLV_COLOR_YELLOW MLV_rgba(255,255,0,255)
01070
01075 #define MLV_COLOR_GOLD MLV_rgba(255,215,0,255)
01076
01081 #define MLV_COLOR_LIGHT_GOLDENROD MLV_rgba(238,221,130,255)
01082
01087 #define MLV_COLOR_LIGHTGOLDENROD MLV_rgba(238,221,130,255)
01088
01093 #define MLV_COLOR_GOLDENROD MLV_rgba(218,165,32,255)
01094
01099 #define MLV_COLOR_DARK_GOLDENROD MLV_rgba(184,134,11,255)
01100
01105 #define MLV_COLOR_DARKGOLDENROD MLV_rgba(184,134,11,255)
01106
01111 #define MLV_COLOR_ROSY_BROWN MLV_rgba(188,143,143,255)
01112
01117 #define MLV_COLOR_ROSYBROWN MLV_rgba(188,143,143,255)
01118
01123 #define MLV_COLOR_INDIAN_RED MLV_rgba(205,92,92,255)
01124
01129 #define MLV_COLOR_INDIANRED MLV_rgba(205,92,92,255)
01130
01135 #define MLV_COLOR_SADDLE_BROWN MLV_rgba(139,69,19,255)
01136
01141 #define MLV_COLOR_SADDLEBROWN MLV_rgba(139,69,19,255)
01142
01147 #define MLV_COLOR_SIENNA MLV_rgba(160,82,45,255)
01148
01153 #define MLV_COLOR_PERU MLV_rgba(205,133,63,255)
01154
01159 #define MLV_COLOR_BURLYWOOD MLV_rgba(222,184,135,255)
01160
01165 #define MLV_COLOR_BEIGE MLV_rgba(245,245,220,255)
01166
01171 #define MLV_COLOR_WHEAT MLV_rgba(245,222,179,255)
01172
01177 #define MLV_COLOR_SANDY_BROWN MLV_rgba(244,164,96,255)
01178
01183 #define MLV_COLOR_SANDYBROWN MLV_rgba(244,164,96,255)
01184
01189 #define MLV_COLOR_TAN MLV_rgba(210,180,140,255)
01190
01195 #define MLV_COLOR_CHOCOLATE MLV_rgba(210,105,30,255)
01196
01201 #define MLV_COLOR_FIREBRICK MLV_rgba(178,34,34,255)
01202
01207 #define MLV_COLOR_BROWN MLV_rgba(165,42,42,255)
01208
01213 #define MLV_COLOR_DARK_SALMON MLV_rgba(233,150,122,255)
01214
01219 #define MLV_COLOR_DARKSALMON MLV_rgba(233,150,122,255)
01220
01225 #define MLV_COLOR_SALMON MLV_rgba(250,128,114,255)
01226
01231 #define MLV_COLOR_LIGHT_SALMON MLV_rgba(255,160,122,255)
01232
01237 #define MLV_COLOR_LIGHTSALMON MLV_rgba(255,160,122,255)
01238
01243 #define MLV_COLOR_ORANGE MLV_rgba(255,165,0,255)
01244
01249 #define MLV_COLOR_DARK_ORANGE MLV_rgba(255,140,0,255)
01250
01255 #define MLV_COLOR_DARKORANGE MLV_rgba(255,140,0,255)
01256
01261 #define MLV_COLOR_CORAL MLV_rgba(255,127,80,255)
01262
01267 #define MLV_COLOR_LIGHT_CORAL MLV_rgba(240,128,128,255)
01268
01273 #define MLV_COLOR_LIGHTCORAL MLV_rgba(240,128,128,255)
01274
01279 #define MLV_COLOR_TOMATO MLV_rgba(255,99,71,255)
01280
01285 #define MLV_COLOR_ORANGE_RED MLV_rgba(255,69,0,255)
01286
01291 #define MLV_COLOR_ORANGERED MLV_rgba(255,69,0,255)
01292
01297 #define MLV_COLOR_RED MLV_rgba(255,0,0,255)
01298
01303 #define MLV_COLOR_HOT_PINK MLV_rgba(255,105,180,255)
01304
01309 #define MLV_COLOR_HOTPINK MLV_rgba(255,105,180,255)
01310
01315 #define MLV_COLOR_DEEP_PINK MLV_rgba(255,20,147,255)
01316
01321 #define MLV_COLOR_DEEPPINK MLV_rgba(255,20,147,255)
01322
01327 #define MLV_COLOR_PINK MLV_rgba(255,192,203,255)
01328
01333 #define MLV_COLOR_LIGHT_PINK MLV_rgba(255,182,193,255)
01334
01339 #define MLV_COLOR_LIGHTPINK MLV_rgba(255,182,193,255)
01340
01345 #define MLV_COLOR_PALE_VIOLET_RED MLV_rgba(219,112,147,255)
01346
01351 #define MLV_COLOR_PALEVIOLETRED MLV_rgba(219,112,147,255)
01352
01357 #define MLV_COLOR_MAROON MLV_rgba(176,48,96,255)
01358
01363 #define MLV_COLOR_MEDIUM_VIOLET_RED MLV_rgba(199,21,133,255)
01364
01369 #define MLV_COLOR_MEDIUMVIOLETRED MLV_rgba(199,21,133,255)
01370
01375 #define MLV_COLOR_VIOLET_RED MLV_rgba(208,32,144,255)
01376
01381 #define MLV_COLOR_VIOLETRED MLV_rgba(208,32,144,255)
01382
01387 #define MLV_COLOR_MAGENTA MLV_rgba(255,0,255,255)
01388
01393 #define MLV_COLOR_VIOLET MLV_rgba(238,130,238,255)
01394
01399 #define MLV_COLOR_PLUM MLV_rgba(221,160,221,255)
01400
01405 #define MLV_COLOR_ORCHID MLV_rgba(218,112,214,255)
01406
01411 #define MLV_COLOR_MEDIUM_ORCHID MLV_rgba(186,85,211,255)
01412
01417 #define MLV_COLOR_MEDIUMORCHID MLV_rgba(186,85,211,255)
01418
01423 #define MLV_COLOR_DARK_ORCHID MLV_rgba(153,50,204,255)
01424
01429 #define MLV_COLOR_DARKORCHID MLV_rgba(153,50,204,255)
01430
01435 #define MLV_COLOR_DARK_VIOLET MLV_rgba(148,0,211,255)
01436
01441 #define MLV_COLOR_DARKVIOLET MLV_rgba(148,0,211,255)
01442
01447 #define MLV_COLOR_BLUE_VIOLET MLV_rgba(138,43,226,255)
01448
01453 #define MLV_COLOR_BLUEVIOLET MLV_rgba(138,43,226,255)
01454
01459 #define MLV_COLOR_PURPLE MLV_rgba(160,32,240,255)
01460
01465 #define MLV_COLOR_MEDIUM_PURPLE MLV_rgba(147,112,219,255)
01466
01471 #define MLV_COLOR_MEDIUMPURPLE MLV_rgba(147,112,219,255)
01472
01477 #define MLV_COLOR_THISTLE MLV_rgba(216,191,216,255)
01478
01483 #define MLV_COLOR_SNOW1 MLV_rgba(255,250,250,255)
01484
01489 #define MLV_COLOR_SNOW2 MLV_rgba(238,233,233,255)
01490
01495 #define MLV_COLOR_SNOW3 MLV_rgba(205,201,201,255)
01496
01501 #define MLV_COLOR_SNOW4 MLV_rgba(139,137,137,255)
01502
01507 #define MLV_COLOR_SEASHELL1 MLV_rgba(255,245,238,255)
01508
01513 #define MLV_COLOR_SEASHELL2 MLV_rgba(238,229,222,255)
01514
01519 #define MLV_COLOR_SEASHELL3 MLV_rgba(205,197,191,255)
01520
01525 #define MLV_COLOR_SEASHELL4 MLV_rgba(139,134,130,255)
01526
01531 #define MLV_COLOR_ANTIQUEWHITE1 MLV_rgba(255,239,219,255)
01532
01537 #define MLV_COLOR_ANTIQUEWHITE2 MLV_rgba(238,223,204,255)
01538
01543 #define MLV_COLOR_ANTIQUEWHITE3 MLV_rgba(205,192,176,255)
01544
01549 #define MLV_COLOR_ANTIQUEWHITE4 MLV_rgba(139,131,120,255)
01550
01555 #define MLV_COLOR_BISQUE1 MLV_rgba(255,228,196,255)
01556
01561 #define MLV_COLOR_BISQUE2 MLV_rgba(238,213,183,255)
01562
01567 #define MLV_COLOR_BISQUE3 MLV_rgba(205,183,158,255)
01568
01573 #define MLV_COLOR_BISQUE4 MLV_rgba(139,125,107,255)
01574
01579 #define MLV_COLOR_PEACHPUFF1 MLV_rgba(255,218,185,255)
01580
01585 #define MLV_COLOR_PEACHPUFF2 MLV_rgba(238,203,173,255)
01586
01591 #define MLV_COLOR_PEACHPUFF3 MLV_rgba(205,175,149,255)
01592
01597 #define MLV_COLOR_PEACHPUFF4 MLV_rgba(139,119,101,255)
01598
01603 #define MLV_COLOR_NAVAJOWHITE1 MLV_rgba(255,222,173,255)
01604
01609 #define MLV_COLOR_NAVAJOWHITE2 MLV_rgba(238,207,161,255)
01610
01615 #define MLV_COLOR_NAVAJOWHITE3 MLV_rgba(205,179,139,255)
01616
01621 #define MLV_COLOR_NAVAJOWHITE4 MLV_rgba(139,121,94,255)
01622
01627 #define MLV_COLOR_LEMONCHIFFON1 MLV_rgba(255,250,205,255)
01628
01633 #define MLV_COLOR_LEMONCHIFFON2 MLV_rgba(238,233,191,255)
01634
01639 #define MLV_COLOR_LEMONCHIFFON3 MLV_rgba(205,201,165,255)
01640
01645 #define MLV_COLOR_LEMONCHIFFON4 MLV_rgba(139,137,112,255)
01646
01651 #define MLV_COLOR_CORNSILK1 MLV_rgba(255,248,220,255)
01652
01657 #define MLV_COLOR_CORNSILK2 MLV_rgba(238,232,205,255)
01658
01663 #define MLV_COLOR_CORNSILK3 MLV_rgba(205,200,177,255)
01664
01669 #define MLV_COLOR_CORNSILK4 MLV_rgba(139,136,120,255)
01670
01675 #define MLV_COLOR_IVORY1 MLV_rgba(255,255,240,255)
01676
01681 #define MLV_COLOR_IVORY2 MLV_rgba(238,238,224,255)
01682
01687 #define MLV_COLOR_IVORY3 MLV_rgba(205,205,193,255)
01688
01693 #define MLV_COLOR_IVORY4 MLV_rgba(139,139,131,255)
01694
01699 #define MLV_COLOR_HONEYDEW1 MLV_rgba(240,255,240,255)
01700
01705 #define MLV_COLOR_HONEYDEW2 MLV_rgba(224,238,224,255)
01706
01711 #define MLV_COLOR_HONEYDEW3 MLV_rgba(193,205,193,255)
01712
01717 #define MLV_COLOR_HONEYDEW4 MLV_rgba(131,139,131,255)
01718
01723 #define MLV_COLOR_LAVENDERBLUSH1 MLV_rgba(255,240,245,255)
01724
01729 #define MLV_COLOR_LAVENDERBLUSH2 MLV_rgba(238,224,229,255)
01730
01735 #define MLV_COLOR_LAVENDERBLUSH3 MLV_rgba(205,193,197,255)
01736
01741 #define MLV_COLOR_LAVENDERBLUSH4 MLV_rgba(139,131,134,255)
01742
01747 #define MLV_COLOR_MISTYROSE1 MLV_rgba(255,228,225,255)
01748
01753 #define MLV_COLOR_MISTYROSE2 MLV_rgba(238,213,210,255)
01754
01759 #define MLV_COLOR_MISTYROSE3 MLV_rgba(205,183,181,255)
01760
01765 #define MLV_COLOR_MISTYROSE4 MLV_rgba(139,125,123,255)
01766
01771 #define MLV_COLOR_AZURE1 MLV_rgba(240,255,255,255)
01772
01777 #define MLV_COLOR_AZURE2 MLV_rgba(224,238,238,255)
01778
01783 #define MLV_COLOR_AZURE3 MLV_rgba(193,205,205,255)
01784
01789 #define MLV_COLOR_AZURE4 MLV_rgba(131,139,139,255)
01790
01795 #define MLV_COLOR_SLATEBLUE1 MLV_rgba(131,111,255,255)
01796
01801 #define MLV_COLOR_SLATEBLUE2 MLV_rgba(122,103,238,255)
01802
01807 #define MLV_COLOR_SLATEBLUE3 MLV_rgba(105,89,205,255)
01808
01813 #define MLV_COLOR_SLATEBLUE4 MLV_rgba(71,60,139,255)
01814
01819 #define MLV_COLOR_ROYALBLUE1 MLV_rgba(72,118,255,255)
01820
01825 #define MLV_COLOR_ROYALBLUE2 MLV_rgba(67,110,238,255)
01826
01831 #define MLV_COLOR_ROYALBLUE3 MLV_rgba(58,95,205,255)
01832
01837 #define MLV_COLOR_ROYALBLUE4 MLV_rgba(39,64,139,255)
01838
01843 #define MLV_COLOR_BLUE1 MLV_rgba(0,0,255,255)
01844
01849 #define MLV_COLOR_BLUE2 MLV_rgba(0,0,238,255)
01850
01855 #define MLV_COLOR_BLUE3 MLV_rgba(0,0,205,255)
01856
01861 #define MLV_COLOR_BLUE4 MLV_rgba(0,0,139,255)
01862
01867 #define MLV_COLOR_DODGERBLUE1 MLV_rgba(30,144,255,255)
01868
01873 #define MLV_COLOR_DODGERBLUE2 MLV_rgba(28,134,238,255)
01874
01879 #define MLV_COLOR_DODGERBLUE3 MLV_rgba(24,116,205,255)
01880
01885 #define MLV_COLOR_DODGERBLUE4 MLV_rgba(16,78,139,255)
01886
01891 #define MLV_COLOR_STEELBLUE1 MLV_rgba(99,184,255,255)
01892
01897 #define MLV_COLOR_STEELBLUE2 MLV_rgba(92,172,238,255)
01898
01903 #define MLV_COLOR_STEELBLUE3 MLV_rgba(79,148,205,255)
01904
01909 #define MLV_COLOR_STEELBLUE4 MLV_rgba(54,100,139,255)
01910
01915 #define MLV_COLOR_DEEPSKYBLUE1 MLV_rgba(0,191,255,255)
01916
01921 #define MLV_COLOR_DEEPSKYBLUE2 MLV_rgba(0,178,238,255)
01922
01927 #define MLV_COLOR_DEEPSKYBLUE3 MLV_rgba(0,154,205,255)
01928
01933 #define MLV_COLOR_DEEPSKYBLUE4 MLV_rgba(0,104,139,255)
01934
01939 #define MLV_COLOR_SKYBLUE1 MLV_rgba(135,206,255,255)
01940
01945 #define MLV_COLOR_SKYBLUE2 MLV_rgba(126,192,238,255)
01946
01951 #define MLV_COLOR_SKYBLUE3 MLV_rgba(108,166,205,255)
01952
01957 #define MLV_COLOR_SKYBLUE4 MLV_rgba(74,112,139,255)
01958
01963 #define MLV_COLOR_LIGHTSKYBLUE1 MLV_rgba(176,226,255,255)
01964
01969 #define MLV_COLOR_LIGHTSKYBLUE2 MLV_rgba(164,211,238,255)
01970
01975 #define MLV_COLOR_LIGHTSKYBLUE3 MLV_rgba(141,182,205,255)
01976
01981 #define MLV_COLOR_LIGHTSKYBLUE4 MLV_rgba(96,123,139,255)
01982
01987 #define MLV_COLOR_SLATEGRAY1 MLV_rgba(198,226,255,255)
01988
01993 #define MLV_COLOR_SLATEGRAY2 MLV_rgba(185,211,238,255)
01994
01999 #define MLV_COLOR_SLATEGRAY3 MLV_rgba(159,182,205,255)
02000
02005 #define MLV_COLOR_SLATEGRAY4 MLV_rgba(108,123,139,255)
02006
02011 #define MLV_COLOR_LIGHTSTEELBLUE1 MLV_rgba(202,225,255,255)
02012
02017 #define MLV_COLOR_LIGHTSTEELBLUE2 MLV_rgba(188,210,238,255)
02018
02023 #define MLV_COLOR_LIGHTSTEELBLUE3 MLV_rgba(162,181,205,255)
02024
02029 #define MLV_COLOR_LIGHTSTEELBLUE4 MLV_rgba(110,123,139,255)
02030
02035 #define MLV_COLOR_LIGHTBLUE1 MLV_rgba(191,239,255,255)
02036
02041 #define MLV_COLOR_LIGHTBLUE2 MLV_rgba(178,223,238,255)
02042
02047 #define MLV_COLOR_LIGHTBLUE3 MLV_rgba(154,192,205,255)
02048
02053 #define MLV_COLOR_LIGHTBLUE4 MLV_rgba(104,131,139,255)
02054
02059 #define MLV_COLOR_LIGHTCYAN1 MLV_rgba(224,255,255,255)
02060
02065 #define MLV_COLOR_LIGHTCYAN2 MLV_rgba(209,238,238,255)
02066
02071 #define MLV_COLOR_LIGHTCYAN3 MLV_rgba(180,205,205,255)
02072
02077 #define MLV_COLOR_LIGHTCYAN4 MLV_rgba(122,139,139,255)
02078
02083 #define MLV_COLOR_PALETURQUOISE1 MLV_rgba(187,255,255,255)
02084
02089 #define MLV_COLOR_PALETURQUOISE2 MLV_rgba(174,238,238,255)
02090
02095 #define MLV_COLOR_PALETURQUOISE3 MLV_rgba(150,205,205,255)
02096
02101 #define MLV_COLOR_PALETURQUOISE4 MLV_rgba(102,139,139,255)
02102
02107 #define MLV_COLOR_CADETBLUE1 MLV_rgba(152,245,255,255)
02108
02113 #define MLV_COLOR_CADETBLUE2 MLV_rgba(142,229,238,255)
02114
02119 #define MLV_COLOR_CADETBLUE3 MLV_rgba(122,197,205,255)
02120
02125 #define MLV_COLOR_CADETBLUE4 MLV_rgba(83,134,139,255)
02126
02131 #define MLV_COLOR_TURQUOISE1 MLV_rgba(0,245,255,255)
02132
02137 #define MLV_COLOR_TURQUOISE2 MLV_rgba(0,229,238,255)
02138
02143 #define MLV_COLOR_TURQUOISE3 MLV_rgba(0,197,205,255)
02144
02149 #define MLV_COLOR_TURQUOISE4 MLV_rgba(0,134,139,255)
02150
02155 #define MLV_COLOR_CYAN1 MLV_rgba(0,255,255,255)
02156
02161 #define MLV_COLOR_CYAN2 MLV_rgba(0,238,238,255)
02162
02167 #define MLV_COLOR_CYAN3 MLV_rgba(0,205,205,255)
02168
02173 #define MLV_COLOR_CYAN4 MLV_rgba(0,139,139,255)
02174
02179 #define MLV_COLOR_DARKSLATEGRAY1 MLV_rgba(151,255,255,255)
02180
02185 #define MLV_COLOR_DARKSLATEGRAY2 MLV_rgba(141,238,238,255)
02186
02191 #define MLV_COLOR_DARKSLATEGRAY3 MLV_rgba(121,205,205,255)
02192
02197 #define MLV_COLOR_DARKSLATEGRAY4 MLV_rgba(82,139,139,255)
02198
02203 #define MLV_COLOR_AQUAMARINE1 MLV_rgba(127,255,212,255)
02204
02209 #define MLV_COLOR_AQUAMARINE2 MLV_rgba(118,238,198,255)
02210
02215 #define MLV_COLOR_AQUAMARINE3 MLV_rgba(102,205,170,255)
02216
02221 #define MLV_COLOR_AQUAMARINE4 MLV_rgba(69,139,116,255)
02222
02227 #define MLV_COLOR_DARKSEAGREEN1 MLV_rgba(193,255,193,255)
02228
02233 #define MLV_COLOR_DARKSEAGREEN2 MLV_rgba(180,238,180,255)
02234
02239 #define MLV_COLOR_DARKSEAGREEN3 MLV_rgba(155,205,155,255)
02240
02245 #define MLV_COLOR_DARKSEAGREEN4 MLV_rgba(105,139,105,255)
02246
02251 #define MLV_COLOR_SEAGREEN1 MLV_rgba(84,255,159,255)
02252
02257 #define MLV_COLOR_SEAGREEN2 MLV_rgba(78,238,148,255)
02258
02263 #define MLV_COLOR_SEAGREEN3 MLV_rgba(67,205,128,255)
02264
02269 #define MLV_COLOR_SEAGREEN4 MLV_rgba(46,139,87,255)
02270
02275 #define MLV_COLOR_PALEGREEN1 MLV_rgba(154,255,154,255)
02276
02281 #define MLV_COLOR_PALEGREEN2 MLV_rgba(144,238,144,255)
02282
02287 #define MLV_COLOR_PALEGREEN3 MLV_rgba(124,205,124,255)
02288
02293 #define MLV_COLOR_PALEGREEN4 MLV_rgba(84,139,84,255)
02294
02299 #define MLV_COLOR_SPRINGGREEN1 MLV_rgba(0,255,127,255)
02300
02305 #define MLV_COLOR_SPRINGGREEN2 MLV_rgba(0,238,118,255)
02306
02311 #define MLV_COLOR_SPRINGGREEN3 MLV_rgba(0,205,102,255)
02312
02317 #define MLV_COLOR_SPRINGGREEN4 MLV_rgba(0,139,69,255)
02318
02323 #define MLV_COLOR_GREEN1 MLV_rgba(0,255,0,255)
02324
02329 #define MLV_COLOR_GREEN2 MLV_rgba(0,238,0,255)
02330
02335 #define MLV_COLOR_GREEN3 MLV_rgba(0,205,0,255)
02336
02341 #define MLV_COLOR_GREEN4 MLV_rgba(0,139,0,255)
02342
02347 #define MLV_COLOR_CHARTREUSE1 MLV_rgba(127,255,0,255)
02348
02353 #define MLV_COLOR_CHARTREUSE2 MLV_rgba(118,238,0,255)
02354
02359 #define MLV_COLOR_CHARTREUSE3 MLV_rgba(102,205,0,255)
02360
02365 #define MLV_COLOR_CHARTREUSE4 MLV_rgba(69,139,0,255)
02366
02371 #define MLV_COLOR_OLIVEDRAB1 MLV_rgba(192,255,62,255)
02372
02377 #define MLV_COLOR_OLIVEDRAB2 MLV_rgba(179,238,58,255)
02378
02383 #define MLV_COLOR_OLIVEDRAB3 MLV_rgba(154,205,50,255)
02384
02389 #define MLV_COLOR_OLIVEDRAB4 MLV_rgba(105,139,34,255)
02390
02395 #define MLV_COLOR_DARKOLIVEGREEN1 MLV_rgba(202,255,112,255)
02396
02401 #define MLV_COLOR_DARKOLIVEGREEN2 MLV_rgba(188,238,104,255)
02402
02407 #define MLV_COLOR_DARKOLIVEGREEN3 MLV_rgba(162,205,90,255)
02408
02413 #define MLV_COLOR_DARKOLIVEGREEN4 MLV_rgba(110,139,61,255)
02414
02419 #define MLV_COLOR_KHAKI1 MLV_rgba(255,246,143,255)
02420
02425 #define MLV_COLOR_KHAKI2 MLV_rgba(238,230,133,255)
02426
02431 #define MLV_COLOR_KHAKI3 MLV_rgba(205,198,115,255)
02432
02437 #define MLV_COLOR_KHAKI4 MLV_rgba(139,134,78,255)
02438
02443 #define MLV_COLOR_LIGHTGOLDENROD1 MLV_rgba(255,236,139,255)
02444
02449 #define MLV_COLOR_LIGHTGOLDENROD2 MLV_rgba(238,220,130,255)
02450
02455 #define MLV_COLOR_LIGHTGOLDENROD3 MLV_rgba(205,190,112,255)
02456
02461 #define MLV_COLOR_LIGHTGOLDENROD4 MLV_rgba(139,129,76,255)
02462
02467 #define MLV_COLOR_LIGHTYELLOW1 MLV_rgba(255,255,224,255)
02468
02473 #define MLV_COLOR_LIGHTYELLOW2 MLV_rgba(238,238,209,255)
02474
02479 #define MLV_COLOR_LIGHTYELLOW3 MLV_rgba(205,205,180,255)
02480
02485 #define MLV_COLOR_LIGHTYELLOW4 MLV_rgba(139,139,122,255)
02486
02491 #define MLV_COLOR_YELLOW1 MLV_rgba(255,255,0,255)
02492
02497 #define MLV_COLOR_YELLOW2 MLV_rgba(238,238,0,255)
02498
02503 #define MLV_COLOR_YELLOW3 MLV_rgba(205,205,0,255)
02504
02509 #define MLV_COLOR_YELLOW4 MLV_rgba(139,139,0,255)
02510
02515 #define MLV_COLOR_GOLD1 MLV_rgba(255,215,0,255)
02516
02521 #define MLV_COLOR_GOLD2 MLV_rgba(238,201,0,255)
02522
02527 #define MLV_COLOR_GOLD3 MLV_rgba(205,173,0,255)
02528
02533 #define MLV_COLOR_GOLD4 MLV_rgba(139,117,0,255)
02534
02539 #define MLV_COLOR_GOLDENROD1 MLV_rgba(255,193,37,255)
02540
02545 #define MLV_COLOR_GOLDENROD2 MLV_rgba(238,180,34,255)
02546
02551 #define MLV_COLOR_GOLDENROD3 MLV_rgba(205,155,29,255)
02552
02557 #define MLV_COLOR_GOLDENROD4 MLV_rgba(139,105,20,255)
02558
02563 #define MLV_COLOR_DARKGOLDENROD1 MLV_rgba(255,185,15,255)
02564
02569 #define MLV_COLOR_DARKGOLDENROD2 MLV_rgba(238,173,14,255)
02570
02575 #define MLV_COLOR_DARKGOLDENROD3 MLV_rgba(205,149,12,255)
02576
02581 #define MLV_COLOR_DARKGOLDENROD4 MLV_rgba(139,101,8,255)
02582
02587 #define MLV_COLOR_ROSYBROWN1 MLV_rgba(255,193,193,255)
02588
02593 #define MLV_COLOR_ROSYBROWN2 MLV_rgba(238,180,180,255)
02594
02599 #define MLV_COLOR_ROSYBROWN3 MLV_rgba(205,155,155,255)
02600
02605 #define MLV_COLOR_ROSYBROWN4 MLV_rgba(139,105,105,255)
02606
02611 #define MLV_COLOR_INDIANRED1 MLV_rgba(255,106,106,255)
02612
02617 #define MLV_COLOR_INDIANRED2 MLV_rgba(238,99,99,255)
02618
02623 #define MLV_COLOR_INDIANRED3 MLV_rgba(205,85,85,255)
02624
02629 #define MLV_COLOR_INDIANRED4 MLV_rgba(139,58,58,255)
02630
02635 #define MLV_COLOR_SIENNA1 MLV_rgba(255,130,71,255)
02636
02641 #define MLV_COLOR_SIENNA2 MLV_rgba(238,121,66,255)
02642
02647 #define MLV_COLOR_SIENNA3 MLV_rgba(205,104,57,255)
02648
02653 #define MLV_COLOR_SIENNA4 MLV_rgba(139,71,38,255)
02654
02659 #define MLV_COLOR_BURLYWOOD1 MLV_rgba(255,211,155,255)
02660
02665 #define MLV_COLOR_BURLYWOOD2 MLV_rgba(238,197,145,255)
02666
02671 #define MLV_COLOR_BURLYWOOD3 MLV_rgba(205,170,125,255)
02672
02677 #define MLV_COLOR_BURLYWOOD4 MLV_rgba(139,115,85,255)
02678
02683 #define MLV_COLOR_WHEAT1 MLV_rgba(255,231,186,255)
02684
02689 #define MLV_COLOR_WHEAT2 MLV_rgba(238,216,174,255)
02690
02695 #define MLV_COLOR_WHEAT3 MLV_rgba(205,186,150,255)
02696
02701 #define MLV_COLOR_WHEAT4 MLV_rgba(139,126,102,255)
02702
02707 #define MLV_COLOR_TAN1 MLV_rgba(255,165,79,255)
02708
02713 #define MLV_COLOR_TAN2 MLV_rgba(238,154,73,255)
02714
02719 #define MLV_COLOR_TAN3 MLV_rgba(205,133,63,255)
02720
02725 #define MLV_COLOR_TAN4 MLV_rgba(139,90,43,255)
02726
02731 #define MLV_COLOR_CHOCOLATE1 MLV_rgba(255,127,36,255)
02732
02737 #define MLV_COLOR_CHOCOLATE2 MLV_rgba(238,118,33,255)
02738
02743 #define MLV_COLOR_CHOCOLATE3 MLV_rgba(205,102,29,255)
02744
02749 #define MLV_COLOR_CHOCOLATE4 MLV_rgba(139,69,19,255)
02750
02755 #define MLV_COLOR_FIREBRICK1 MLV_rgba(255,48,48,255)
02756
02761 #define MLV_COLOR_FIREBRICK2 MLV_rgba(238,44,44,255)
02762
02767 #define MLV_COLOR_FIREBRICK3 MLV_rgba(205,38,38,255)
02768
02773 #define MLV_COLOR_FIREBRICK4 MLV_rgba(139,26,26,255)
02774
02779 #define MLV_COLOR_BROWN1 MLV_rgba(255,64,64,255)
02780
02785 #define MLV_COLOR_BROWN2 MLV_rgba(238,59,59,255)
02786
02791 #define MLV_COLOR_BROWN3 MLV_rgba(205,51,51,255)
02792
02797 #define MLV_COLOR_BROWN4 MLV_rgba(139,35,35,255)
02798
02803 #define MLV_COLOR_SALMON1 MLV_rgba(255,140,105,255)
02804
02809 #define MLV_COLOR_SALMON2 MLV_rgba(238,130,98,255)
02810
02815 #define MLV_COLOR_SALMON3 MLV_rgba(205,112,84,255)
02816
02821 #define MLV_COLOR_SALMON4 MLV_rgba(139,76,57,255)
02822
02827 #define MLV_COLOR_LIGHTSALMON1 MLV_rgba(255,160,122,255)
02828
02833 #define MLV_COLOR_LIGHTSALMON2 MLV_rgba(238,149,114,255)
02834
02839 #define MLV_COLOR_LIGHTSALMON3 MLV_rgba(205,129,98,255)
02840
02845 #define MLV_COLOR_LIGHTSALMON4 MLV_rgba(139,87,66,255)
02846
02851 #define MLV_COLOR_ORANGE1 MLV_rgba(255,165,0,255)
02852
02857 #define MLV_COLOR_ORANGE2 MLV_rgba(238,154,0,255)
02858
02863 #define MLV_COLOR_ORANGE3 MLV_rgba(205,133,0,255)
02864
02869 #define MLV_COLOR_ORANGE4 MLV_rgba(139,90,0,255)
02870
02875 #define MLV_COLOR_DARKORANGE1 MLV_rgba(255,127,0,255)
02876
02881 #define MLV_COLOR_DARKORANGE2 MLV_rgba(238,118,0,255)
02882
02887 #define MLV_COLOR_DARKORANGE3 MLV_rgba(205,102,0,255)
02888
02893 #define MLV_COLOR_DARKORANGE4 MLV_rgba(139,69,0,255)
02894
02899 #define MLV_COLOR_CORAL1 MLV_rgba(255,114,86,255)
02900
02905 #define MLV_COLOR_CORAL2 MLV_rgba(238,106,80,255)
02906
02911 #define MLV_COLOR_CORAL3 MLV_rgba(205,91,69,255)
02912
02917 #define MLV_COLOR_CORAL4 MLV_rgba(139,62,47,255)
02918
02923 #define MLV_COLOR_TOMATO1 MLV_rgba(255,99,71,255)
02924
02929 #define MLV_COLOR_TOMATO2 MLV_rgba(238,92,66,255)
02930
02935 #define MLV_COLOR_TOMATO3 MLV_rgba(205,79,57,255)
02936
02941 #define MLV_COLOR_TOMATO4 MLV_rgba(139,54,38,255)
02942
02947 #define MLV_COLOR_ORANGERED1 MLV_rgba(255,69,0,255)
02948
02953 #define MLV_COLOR_ORANGERED2 MLV_rgba(238,64,0,255)
02954
02959 #define MLV_COLOR_ORANGERED3 MLV_rgba(205,55,0,255)
02960
02965 #define MLV_COLOR_ORANGERED4 MLV_rgba(139,37,0,255)
02966
02971 #define MLV_COLOR_RED1 MLV_rgba(255,0,0,255)
02972
02977 #define MLV_COLOR_RED2 MLV_rgba(238,0,0,255)
02978
02983 #define MLV_COLOR_RED3 MLV_rgba(205,0,0,255)
02984
02989 #define MLV_COLOR_RED4 MLV_rgba(139,0,0,255)
02990
02995 #define MLV_COLOR_DEEPPINK1 MLV_rgba(255,20,147,255)
02996
03001 #define MLV_COLOR_DEEPPINK2 MLV_rgba(238,18,137,255)
03002
03007 #define MLV_COLOR_DEEPPINK3 MLV_rgba(205,16,118,255)
03008
03013 #define MLV_COLOR_DEEPPINK4 MLV_rgba(139,10,80,255)
03014
03019 #define MLV_COLOR_HOTPINK1 MLV_rgba(255,110,180,255)
03020
03025 #define MLV_COLOR_HOTPINK2 MLV_rgba(238,106,167,255)
03026
03031 #define MLV_COLOR_HOTPINK3 MLV_rgba(205,96,144,255)
03032
03037 #define MLV_COLOR_HOTPINK4 MLV_rgba(139,58,98,255)
03038
03043 #define MLV_COLOR_PINK1 MLV_rgba(255,181,197,255)
03044
03049 #define MLV_COLOR_PINK2 MLV_rgba(238,169,184,255)
03050
03055 #define MLV_COLOR_PINK3 MLV_rgba(205,145,158,255)
03056
03061 #define MLV_COLOR_PINK4 MLV_rgba(139,99,108,255)
03062
03067 #define MLV_COLOR_LIGHTPINK1 MLV_rgba(255,174,185,255)
03068
03073 #define MLV_COLOR_LIGHTPINK2 MLV_rgba(238,162,173,255)
03074
03079 #define MLV_COLOR_LIGHTPINK3 MLV_rgba(205,140,149,255)
03080
03085 #define MLV_COLOR_LIGHTPINK4 MLV_rgba(139,95,101,255)
03086
03091 #define MLV_COLOR_PALEVIOLETRED1 MLV_rgba(255,130,171,255)
03092
03097 #define MLV_COLOR_PALEVIOLETRED2 MLV_rgba(238,121,159,255)
03098
03103 #define MLV_COLOR_PALEVIOLETRED3 MLV_rgba(205,104,137,255)
03104
03109 #define MLV_COLOR_PALEVIOLETRED4 MLV_rgba(139,71,93,255)
03110
03115 #define MLV_COLOR_MAROON1 MLV_rgba(255,52,179,255)
03116
03121 #define MLV_COLOR_MAROON2 MLV_rgba(238,48,167,255)
03122
03127 #define MLV_COLOR_MAROON3 MLV_rgba(205,41,144,255)
03128
03133 #define MLV_COLOR_MAROON4 MLV_rgba(139,28,98,255)
03134
03139 #define MLV_COLOR_VIOLETRED1 MLV_rgba(255,62,150,255)
03140
03145 #define MLV_COLOR_VIOLETRED2 MLV_rgba(238,58,140,255)
03146
03151 #define MLV_COLOR_VIOLETRED3 MLV_rgba(205,50,120,255)
03152
03157 #define MLV_COLOR_VIOLETRED4 MLV_rgba(139,34,82,255)
03158
03163 #define MLV_COLOR_MAGENTA1 MLV_rgba(255,0,255,255)
03164
03169 #define MLV_COLOR_MAGENTA2 MLV_rgba(238,0,238,255)
03170
03175 #define MLV_COLOR_MAGENTA3 MLV_rgba(205,0,205,255)
03176
03181 #define MLV_COLOR_MAGENTA4 MLV_rgba(139,0,139,255)
03182
03187 #define MLV_COLOR_ORCHID1 MLV_rgba(255,131,250,255)
03188
03193 #define MLV_COLOR_ORCHID2 MLV_rgba(238,122,233,255)
03194
03199 #define MLV_COLOR_ORCHID3 MLV_rgba(205,105,201,255)
03200
03205 #define MLV_COLOR_ORCHID4 MLV_rgba(139,71,137,255)
03206
03211 #define MLV_COLOR_PLUM1 MLV_rgba(255,187,255,255)
03212
03217 #define MLV_COLOR_PLUM2 MLV_rgba(238,174,238,255)
03218
03223 #define MLV_COLOR_PLUM3 MLV_rgba(205,150,205,255)
03224
03229 #define MLV_COLOR_PLUM4 MLV_rgba(139,102,139,255)
03230
03235 #define MLV_COLOR_MEDIUMORCHID1 MLV_rgba(224,102,255,255)
03236
03241 #define MLV_COLOR_MEDIUMORCHID2 MLV_rgba(209,95,238,255)
03242
03247 #define MLV_COLOR_MEDIUMORCHID3 MLV_rgba(180,82,205,255)
03248
03253 #define MLV_COLOR_MEDIUMORCHID4 MLV_rgba(122,55,139,255)
03254
03259 #define MLV_COLOR_DARKORCHID1 MLV_rgba(191,62,255,255)
03260
03265 #define MLV_COLOR_DARKORCHID2 MLV_rgba(178,58,238,255)
03266
03271 #define MLV_COLOR_DARKORCHID3 MLV_rgba(154,50,205,255)
03272
03277 #define MLV_COLOR_DARKORCHID4 MLV_rgba(104,34,139,255)
03278
03283 #define MLV_COLOR_PURPLE1 MLV_rgba(155,48,255,255)
03284
03289 #define MLV_COLOR_PURPLE2 MLV_rgba(145,44,238,255)
03290
03295 #define MLV_COLOR_PURPLE3 MLV_rgba(125,38,205,255)
03296
03301 #define MLV_COLOR_PURPLE4 MLV_rgba(85,26,139,255)
03302
03307 #define MLV_COLOR_MEDIUMPURPLE1 MLV_rgba(171,130,255,255)
03308
03313 #define MLV_COLOR_MEDIUMPURPLE2 MLV_rgba(159,121,238,255)
03314
03319 #define MLV_COLOR_MEDIUMPURPLE3 MLV_rgba(137,104,205,255)
03320
03325 #define MLV_COLOR_MEDIUMPURPLE4 MLV_rgba(93,71,139,255)
03326
03331 #define MLV_COLOR_THISTLE1 MLV_rgba(255,225,255,255)
03332
03337 #define MLV_COLOR_THISTLE2 MLV_rgba(238,210,238,255)
03338
03343 #define MLV_COLOR_THISTLE3 MLV_rgba(205,181,205,255)
03344
03349 #define MLV_COLOR_THISTLE4 MLV_rgba(139,123,139,255)
03350
03355 #define MLV_COLOR_GRAY0 MLV_rgba(0,0,0,255)
03356
03361 #define MLV_COLOR_GREY0 MLV_rgba(0,0,0,255)
03362
03367 #define MLV_COLOR_GRAY1 MLV_rgba(3,3,3,255)
03368
03373 #define MLV_COLOR_GREY1 MLV_rgba(3,3,3,255)
03374
03379 #define MLV_COLOR_GRAY2 MLV_rgba(5,5,5,255)
03380
03385 #define MLV_COLOR_GREY2 MLV_rgba(5,5,5,255)
03386
03391 #define MLV_COLOR_GRAY3 MLV_rgba(8,8,8,255)
03392
03397 #define MLV_COLOR_GREY3 MLV_rgba(8,8,8,255)
03398
03403 #define MLV_COLOR_GRAY4 MLV_rgba(10,10,10,255)
03404
03409 #define MLV_COLOR_GREY4 MLV_rgba(10,10,10,255)
03410
03415 #define MLV_COLOR_GRAY5 MLV_rgba(13,13,13,255)
03416
03421 #define MLV_COLOR_GREY5 MLV_rgba(13,13,13,255)
03422
03427 #define MLV_COLOR_GRAY6 MLV_rgba(15,15,15,255)
03428
03433 #define MLV_COLOR_GREY6 MLV_rgba(15,15,15,255)
03434
03439 #define MLV_COLOR_GRAY7 MLV_rgba(18,18,18,255)
03440
03445 #define MLV_COLOR_GREY7 MLV_rgba(18,18,18,255)
03446
03451 #define MLV_COLOR_GRAY8 MLV_rgba(20,20,20,255)
03452
03457 #define MLV_COLOR_GREY8 MLV_rgba(20,20,20,255)
03458
03463 #define MLV_COLOR_GRAY9 MLV_rgba(23,23,23,255)
03464
03469 #define MLV_COLOR_GREY9 MLV_rgba(23,23,23,255)
03470
03475 #define MLV_COLOR_GRAY10 MLV_rgba(26,26,26,255)
03476
03481 #define MLV_COLOR_GREY10 MLV_rgba(26,26,26,255)
03482
03487 #define MLV_COLOR_GRAY11 MLV_rgba(28,28,28,255)
03488
03493 #define MLV_COLOR_GREY11 MLV_rgba(28,28,28,255)
03494
03499 #define MLV_COLOR_GRAY12 MLV_rgba(31,31,31,255)
03500
03505 #define MLV_COLOR_GREY12 MLV_rgba(31,31,31,255)
03506
03511 #define MLV_COLOR_GRAY13 MLV_rgba(33,33,33,255)
03512
03517 #define MLV_COLOR_GREY13 MLV_rgba(33,33,33,255)
03518
03523 #define MLV_COLOR_GRAY14 MLV_rgba(36,36,36,255)
03524
03529 #define MLV_COLOR_GREY14 MLV_rgba(36,36,36,255)
03530
03535 #define MLV_COLOR_GRAY15 MLV_rgba(38,38,38,255)
03536
03541 #define MLV_COLOR_GREY15 MLV_rgba(38,38,38,255)
03542
03547 #define MLV_COLOR_GRAY16 MLV_rgba(41,41,41,255)
03548
03553 #define MLV_COLOR_GREY16 MLV_rgba(41,41,41,255)
03554
03559 #define MLV_COLOR_GRAY17 MLV_rgba(43,43,43,255)
03560
03565 #define MLV_COLOR_GREY17 MLV_rgba(43,43,43,255)
03566
03571 #define MLV_COLOR_GRAY18 MLV_rgba(46,46,46,255)
03572
03577 #define MLV_COLOR_GREY18 MLV_rgba(46,46,46,255)
03578
03583 #define MLV_COLOR_GRAY19 MLV_rgba(48,48,48,255)
03584
03589 #define MLV_COLOR_GREY19 MLV_rgba(48,48,48,255)
03590
03595 #define MLV_COLOR_GRAY20 MLV_rgba(51,51,51,255)
03596
03601 #define MLV_COLOR_GREY20 MLV_rgba(51,51,51,255)
03602
03607 #define MLV_COLOR_GRAY21 MLV_rgba(54,54,54,255)
03608
03613 #define MLV_COLOR_GREY21 MLV_rgba(54,54,54,255)
03614
03619 #define MLV_COLOR_GRAY22 MLV_rgba(56,56,56,255)
03620
03625 #define MLV_COLOR_GREY22 MLV_rgba(56,56,56,255)
03626
03631 #define MLV_COLOR_GRAY23 MLV_rgba(59,59,59,255)
03632
03637 #define MLV_COLOR_GREY23 MLV_rgba(59,59,59,255)
03638
03643 #define MLV_COLOR_GRAY24 MLV_rgba(61,61,61,255)
03644
03649 #define MLV_COLOR_GREY24 MLV_rgba(61,61,61,255)
03650
03655 #define MLV_COLOR_GRAY25 MLV_rgba(64,64,64,255)
03656
03661 #define MLV_COLOR_GREY25 MLV_rgba(64,64,64,255)
03662
03667 #define MLV_COLOR_GRAY26 MLV_rgba(66,66,66,255)
03668
03673 #define MLV_COLOR_GREY26 MLV_rgba(66,66,66,255)
03674
03679 #define MLV_COLOR_GRAY27 MLV_rgba(69,69,69,255)
03680
03685 #define MLV_COLOR_GREY27 MLV_rgba(69,69,69,255)
03686
03691 #define MLV_COLOR_GRAY28 MLV_rgba(71,71,71,255)
03692
03697 #define MLV_COLOR_GREY28 MLV_rgba(71,71,71,255)
03698
03703 #define MLV_COLOR_GRAY29 MLV_rgba(74,74,74,255)
03704
03709 #define MLV_COLOR_GREY29 MLV_rgba(74,74,74,255)
03710
03715 #define MLV_COLOR_GRAY30 MLV_rgba(77,77,77,255)
03716
03721 #define MLV_COLOR_GREY30 MLV_rgba(77,77,77,255)
03722
03727 #define MLV_COLOR_GRAY31 MLV_rgba(79,79,79,255)
03728
03733 #define MLV_COLOR_GREY31 MLV_rgba(79,79,79,255)
03734
03739 #define MLV_COLOR_GRAY32 MLV_rgba(82,82,82,255)
03740
03745 #define MLV_COLOR_GREY32 MLV_rgba(82,82,82,255)
03746
03751 #define MLV_COLOR_GRAY33 MLV_rgba(84,84,84,255)
03752
03757 #define MLV_COLOR_GREY33 MLV_rgba(84,84,84,255)
03758
03763 #define MLV_COLOR_GRAY34 MLV_rgba(87,87,87,255)
03764
03769 #define MLV_COLOR_GREY34 MLV_rgba(87,87,87,255)
03770
03775 #define MLV_COLOR_GRAY35 MLV_rgba(89,89,89,255)
03776
03781 #define MLV_COLOR_GREY35 MLV_rgba(89,89,89,255)
03782
03787 #define MLV_COLOR_GRAY36 MLV_rgba(92,92,92,255)
03788
03793 #define MLV_COLOR_GREY36 MLV_rgba(92,92,92,255)
03794
03799 #define MLV_COLOR_GRAY37 MLV_rgba(94,94,94,255)
03800
03805 #define MLV_COLOR_GREY37 MLV_rgba(94,94,94,255)
03806
03811 #define MLV_COLOR_GRAY38 MLV_rgba(97,97,97,255)
03812
03817 #define MLV_COLOR_GREY38 MLV_rgba(97,97,97,255)
03818
03823 #define MLV_COLOR_GRAY39 MLV_rgba(99,99,99,255)
03824
03829 #define MLV_COLOR_GREY39 MLV_rgba(99,99,99,255)
03830
03835 #define MLV_COLOR_GRAY40 MLV_rgba(102,102,102,255)
03836
03841 #define MLV_COLOR_GREY40 MLV_rgba(102,102,102,255)
03842
03847 #define MLV_COLOR_GRAY41 MLV_rgba(105,105,105,255)
03848
03853 #define MLV_COLOR_GREY41 MLV_rgba(105,105,105,255)
03854
03859 #define MLV_COLOR_GRAY42 MLV_rgba(107,107,107,255)
03860
03865 #define MLV_COLOR_GREY42 MLV_rgba(107,107,107,255)
03866
03871 #define MLV_COLOR_GRAY43 MLV_rgba(110,110,110,255)
03872
03877 #define MLV_COLOR_GREY43 MLV_rgba(110,110,110,255)
03878
03883 #define MLV_COLOR_GRAY44 MLV_rgba(112,112,112,255)
03884
03889 #define MLV_COLOR_GREY44 MLV_rgba(112,112,112,255)
03890
03895 #define MLV_COLOR_GRAY45 MLV_rgba(115,115,115,255)
03896
03901 #define MLV_COLOR_GREY45 MLV_rgba(115,115,115,255)
03902
03907 #define MLV_COLOR_GRAY46 MLV_rgba(117,117,117,255)
03908
03913 #define MLV_COLOR_GREY46 MLV_rgba(117,117,117,255)
03914
03919 #define MLV_COLOR_GRAY47 MLV_rgba(120,120,120,255)
03920
03925 #define MLV_COLOR_GREY47 MLV_rgba(120,120,120,255)
03926
03931 #define MLV_COLOR_GRAY48 MLV_rgba(122,122,122,255)
03932
03937 #define MLV_COLOR_GREY48 MLV_rgba(122,122,122,255)
03938
03943 #define MLV_COLOR_GRAY49 MLV_rgba(125,125,125,255)
03944
03949 #define MLV_COLOR_GREY49 MLV_rgba(125,125,125,255)
03950
03955 #define MLV_COLOR_GRAY50 MLV_rgba(127,127,127,255)
03956
03961 #define MLV_COLOR_GREY50 MLV_rgba(127,127,127,255)
03962
03967 #define MLV_COLOR_GRAY51 MLV_rgba(130,130,130,255)
03968
03973 #define MLV_COLOR_GREY51 MLV_rgba(130,130,130,255)
03974
03979 #define MLV_COLOR_GRAY52 MLV_rgba(133,133,133,255)
03980
03985 #define MLV_COLOR_GREY52 MLV_rgba(133,133,133,255)
03986
03991 #define MLV_COLOR_GRAY53 MLV_rgba(135,135,135,255)
03992
03997 #define MLV_COLOR_GREY53 MLV_rgba(135,135,135,255)
03998
04003 #define MLV_COLOR_GRAY54 MLV_rgba(138,138,138,255)
04004
04009 #define MLV_COLOR_GREY54 MLV_rgba(138,138,138,255)
04010
04015 #define MLV_COLOR_GRAY55 MLV_rgba(140,140,140,255)
04016
04021 #define MLV_COLOR_GREY55 MLV_rgba(140,140,140,255)
04022
04027 #define MLV_COLOR_GRAY56 MLV_rgba(143,143,143,255)
04028
04033 #define MLV_COLOR_GREY56 MLV_rgba(143,143,143,255)
04034
04039 #define MLV_COLOR_GRAY57 MLV_rgba(145,145,145,255)
04040
04045 #define MLV_COLOR_GREY57 MLV_rgba(145,145,145,255)
04046
04051 #define MLV_COLOR_GRAY58 MLV_rgba(148,148,148,255)
04052
04057 #define MLV_COLOR_GREY58 MLV_rgba(148,148,148,255)
04058
04063 #define MLV_COLOR_GRAY59 MLV_rgba(150,150,150,255)
04064
04069 #define MLV_COLOR_GREY59 MLV_rgba(150,150,150,255)
04070
04075 #define MLV_COLOR_GRAY60 MLV_rgba(153,153,153,255)
04076
04081 #define MLV_COLOR_GREY60 MLV_rgba(153,153,153,255)
04082
04087 #define MLV_COLOR_GRAY61 MLV_rgba(156,156,156,255)
04088
04093 #define MLV_COLOR_GREY61 MLV_rgba(156,156,156,255)
04094
04099 #define MLV_COLOR_GRAY62 MLV_rgba(158,158,158,255)
04100
04105 #define MLV_COLOR_GREY62 MLV_rgba(158,158,158,255)
04106
04111 #define MLV_COLOR_GRAY63 MLV_rgba(161,161,161,255)
04112
04117 #define MLV_COLOR_GREY63 MLV_rgba(161,161,161,255)
04118
04123 #define MLV_COLOR_GRAY64 MLV_rgba(163,163,163,255)
04124
04129 #define MLV_COLOR_GREY64 MLV_rgba(163,163,163,255)
04130
04135 #define MLV_COLOR_GRAY65 MLV_rgba(166,166,166,255)
04136
04141 #define MLV_COLOR_GREY65 MLV_rgba(166,166,166,255)
04142
04147 #define MLV_COLOR_GRAY66 MLV_rgba(168,168,168,255)
04148
04153 #define MLV_COLOR_GREY66 MLV_rgba(168,168,168,255)
04154
04159 #define MLV_COLOR_GRAY67 MLV_rgba(171,171,171,255)
04160
04165 #define MLV_COLOR_GREY67 MLV_rgba(171,171,171,255)
04166
04171 #define MLV_COLOR_GRAY68 MLV_rgba(173,173,173,255)
04172
04177 #define MLV_COLOR_GREY68 MLV_rgba(173,173,173,255)
04178
04183 #define MLV_COLOR_GRAY69 MLV_rgba(176,176,176,255)
04184
04189 #define MLV_COLOR_GREY69 MLV_rgba(176,176,176,255)
04190
04195 #define MLV_COLOR_GRAY70 MLV_rgba(179,179,179,255)
04196
04201 #define MLV_COLOR_GREY70 MLV_rgba(179,179,179,255)
04202
04207 #define MLV_COLOR_GRAY71 MLV_rgba(181,181,181,255)
04208
04213 #define MLV_COLOR_GREY71 MLV_rgba(181,181,181,255)
04214
04219 #define MLV_COLOR_GRAY72 MLV_rgba(184,184,184,255)
04220
04225 #define MLV_COLOR_GREY72 MLV_rgba(184,184,184,255)
04226
04231 #define MLV_COLOR_GRAY73 MLV_rgba(186,186,186,255)
04232
04237 #define MLV_COLOR_GREY73 MLV_rgba(186,186,186,255)
04238
04243 #define MLV_COLOR_GRAY74 MLV_rgba(189,189,189,255)
04244
04249 #define MLV_COLOR_GREY74 MLV_rgba(189,189,189,255)
04250
04255 #define MLV_COLOR_GRAY75 MLV_rgba(191,191,191,255)
04256
04261 #define MLV_COLOR_GREY75 MLV_rgba(191,191,191,255)
04262
04267 #define MLV_COLOR_GRAY76 MLV_rgba(194,194,194,255)
04268
04273 #define MLV_COLOR_GREY76 MLV_rgba(194,194,194,255)
04274
04279 #define MLV_COLOR_GRAY77 MLV_rgba(196,196,196,255)
04280
04285 #define MLV_COLOR_GREY77 MLV_rgba(196,196,196,255)
04286
04291 #define MLV_COLOR_GRAY78 MLV_rgba(199,199,199,255)
04292
04297 #define MLV_COLOR_GREY78 MLV_rgba(199,199,199,255)
04298
04303 #define MLV_COLOR_GRAY79 MLV_rgba(201,201,201,255)
04304
04309 #define MLV_COLOR_GREY79 MLV_rgba(201,201,201,255)
04310
04315 #define MLV_COLOR_GRAY80 MLV_rgba(204,204,204,255)
04316
04321 #define MLV_COLOR_GREY80 MLV_rgba(204,204,204,255)
04322
04327 #define MLV_COLOR_GRAY81 MLV_rgba(207,207,207,255)
04328
04333 #define MLV_COLOR_GREY81 MLV_rgba(207,207,207,255)
04334
04339 #define MLV_COLOR_GRAY82 MLV_rgba(209,209,209,255)
04340
04345 #define MLV_COLOR_GREY82 MLV_rgba(209,209,209,255)
04346
04351 #define MLV_COLOR_GRAY83 MLV_rgba(212,212,212,255)
04352
04357 #define MLV_COLOR_GREY83 MLV_rgba(212,212,212,255)
04358
04363 #define MLV_COLOR_GRAY84 MLV_rgba(214,214,214,255)
04364
04369 #define MLV_COLOR_GREY84 MLV_rgba(214,214,214,255)
04370
04375 #define MLV_COLOR_GRAY85 MLV_rgba(217,217,217,255)
04376
04381 #define MLV_COLOR_GREY85 MLV_rgba(217,217,217,255)
04382
04387 #define MLV_COLOR_GRAY86 MLV_rgba(219,219,219,255)
04388
04393 #define MLV_COLOR_GREY86 MLV_rgba(219,219,219,255)
04394
04399 #define MLV_COLOR_GRAY87 MLV_rgba(222,222,222,255)
04400
04405 #define MLV_COLOR_GREY87 MLV_rgba(222,222,222,255)
04406
04411 #define MLV_COLOR_GRAY88 MLV_rgba(224,224,224,255)
04412
04417 #define MLV_COLOR_GREY88 MLV_rgba(224,224,224,255)
04418
04423 #define MLV_COLOR_GRAY89 MLV_rgba(227,227,227,255)
04424
04429 #define MLV_COLOR_GREY89 MLV_rgba(227,227,227,255)
04430
04435 #define MLV_COLOR_GRAY90 MLV_rgba(229,229,229,255)
04436
04441 #define MLV_COLOR_GREY90 MLV_rgba(229,229,229,255)
04442
04447 #define MLV_COLOR_GRAY91 MLV_rgba(232,232,232,255)
04448
04453 #define MLV_COLOR_GREY91 MLV_rgba(232,232,232,255)
04454
04459 #define MLV_COLOR_GRAY92 MLV_rgba(235,235,235,255)
04460
04465 #define MLV_COLOR_GREY92 MLV_rgba(235,235,235,255)
04466
04471 #define MLV_COLOR_GRAY93 MLV_rgba(237,237,237,255)
04472
04477 #define MLV_COLOR_GREY93 MLV_rgba(237,237,237,255)
04478
04483 #define MLV_COLOR_GRAY94 MLV_rgba(240,240,240,255)
04484
04489 #define MLV_COLOR_GREY94 MLV_rgba(240,240,240,255)
04490
04495 #define MLV_COLOR_GRAY95 MLV_rgba(242,242,242,255)
04496
04501 #define MLV_COLOR_GREY95 MLV_rgba(242,242,242,255)
04502
04507 #define MLV_COLOR_GRAY96 MLV_rgba(245,245,245,255)
04508
04513 #define MLV_COLOR_GREY96 MLV_rgba(245,245,245,255)
04514
04519 #define MLV_COLOR_GRAY97 MLV_rgba(247,247,247,255)
04520
04525 #define MLV_COLOR_GREY97 MLV_rgba(247,247,247,255)
04526
04531 #define MLV_COLOR_GRAY98 MLV_rgba(250,250,250,255)
04532
04537 #define MLV_COLOR_GREY98 MLV_rgba(250,250,250,255)
04538
04543 #define MLV_COLOR_GRAY99 MLV_rgba(252,252,252,255)
04544
04549 #define MLV_COLOR_GREY99 MLV_rgba(252,252,252,255)
04550
04555 #define MLV_COLOR_GRAY100 MLV_rgba(255,255,255,255)
04556
04561 #define MLV_COLOR_GREY100 MLV_rgba(255,255,255,255)
04562
04567 #define MLV_COLOR_DARK_GREY MLV_rgba(169,169,169,255)
04568
04573 #define MLV_COLOR_DARKGREY MLV_rgba(169,169,169,255)
04574
04579 #define MLV_COLOR_DARK_GRAY MLV_rgba(169,169,169,255)
04580
04585 #define MLV_COLOR_DARKGRAY MLV_rgba(169,169,169,255)
04586
04591 #define MLV_COLOR_DARK_BLUE MLV_rgba(0,0,139,255)
04592
04597 #define MLV_COLOR_DARKBLUE MLV_rgba(0,0,139,255)
04598
04603 #define MLV_COLOR_DARK_CYAN MLV_rgba(0,139,139,255)
04604
04609 #define MLV_COLOR_DARKCYAN MLV_rgba(0,139,139,255)
04610
04615 #define MLV_COLOR_DARK_MAGENTA MLV_rgba(139,0,139,255)
04616
04621 #define MLV_COLOR_DARKMAGENTA MLV_rgba(139,0,139,255)
04622
04627 #define MLV_COLOR_DARK_RED MLV_rgba(139,0,0,255)
04628
04633 #define MLV_COLOR_DARKRED MLV_rgba(139,0,0,255)
04634
04639 #define MLV_COLOR_LIGHT_GREEN MLV_rgba(144,238,144,255)
04640
04645 #define MLV_COLOR_LIGHTGREEN MLV_rgba(144,238,144,255)
04646
04647
04648 #ifdef __cplusplus
04649 }
04650 #endif
04651
04652 #endif