logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

MLV_color.h - Définit toutes les couleurs disponibles dans la bibliothèque MLV.

Auteur

       Généré automatiquement par Doxygen pour MLV-3.1.0 à partir du code source.

MLV-3.1.0                                    Samedi 29 Janvier 2022                               MLV_color.h(3)

Description Détaillée

       Définit toutes les couleurs disponibles dans la bibliothèque MLV.

       Auteur
           Adrien Boussicault

           Marc Zipstein

Documentation Des Définitions De Type

typedefUint32MLV_Color
       Définit un type couleur pour la bibliothèque MLV. Les couleurs sont définies à l'aide de 4 entiers
       compris entre 0 et 256 exclu, que l'on appelle composantes :

       • la composante Rouge ( R );

       • la composante Verte ( G );

       • la composant Blue ( B );

       • la composante Alpha, c'est la transparence ( A ).

Documentation Des Fonctions

voidMLV_convert_color_to_rgba(MLV_Colorcolor,Uint8*red,Uint8*green,Uint8*blue,Uint8*alpha)
       Convertit une couleur MLV en une couleur codée sur 4 entier de 8 bits représentant les composantes rouge,
       bleue et verte en un entier 32 bits.

       Paramètrescolor La couleur à convertir
           red La composante rouge de la couleur
           green La composante verte de la couleur
           blue La composante bleue de la couleur
           alpha La composante alpha (transparence) de la couleur

   constchar*MLV_convert_color_to_string(MLV_Colorcolor)
       Convertit  une  couleur en un chaine de caractères. Cette fonction est de complexité lineaire par rapport
       au nombre de couleurs. ( environ 700 )

       Paramètrescolor Le code de la couleur

       Renvoie
           La chaîne associée au code de la couleur

   MLV_ColorMLV_convert_rgba_to_color(Uint8red,Uint8green,Uint8blue,Uint8alpha)
       Convertit une couleur codée sur 4 entier de 8 bits représentant les composantes rouge, bleue et verte  en
       un entier 32 bits.

       Paramètresred La composante rouge de la couleur
           green La composante verte de la couleur
           blue La composante bleue de la couleur
           alpha La composante alpha (transparence) de la couleur

       Renvoie
           La couleur codée sur 32 bits.

   MLV_ColorMLV_convert_string_to_color(constchar*color_name)
       Convertit un nom de couleur en son code couleur. Cette fonction est de complexité lineaire par rapport au
       nombre de couleurs. ( environ 700 )

       Paramètrescolor_name Le nom de la couleur

       Renvoie
           Le code couleur associée au nom passé en paramètre.

   MLV_ColorMLV_rgba(Uint8red,Uint8green,Uint8blue,Uint8alpha)
       Raccourci vers MLV_Color MLV_get_color_from_rgba.

       Voirégalement
           MLV_get_color_from_rgba

       Paramètresred La composante rouge de la couleur
           green La composante verte de la couleur
           blue La composante bleue de la couleur
           alpha La composante alpha (transparence) de la couleur

       Renvoie
           La couleur codée sur 32 bits.

       Exemplesadvanced/08_zone_click.c, et medium/06_colors.c.

Documentation Des Macros

#defineMLV_COLOR_ALICE_BLUEMLV_rgba(240,248,255,255)
       Define the ALICE_BLUE color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_ALICEBLUEMLV_rgba(240,248,255,255)
       Define the ALICEBLUE color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_ANTIQUE_WHITEMLV_rgba(250,235,215,255)
       Define the ANTIQUE_WHITE color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_ANTIQUEWHITEMLV_rgba(250,235,215,255)
       Define the ANTIQUEWHITE color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_ANTIQUEWHITE1MLV_rgba(255,239,219,255)
       Define the ANTIQUEWHITE1 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_ANTIQUEWHITE2MLV_rgba(238,223,204,255)
       Define the ANTIQUEWHITE2 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_ANTIQUEWHITE3MLV_rgba(205,192,176,255)
       Define the ANTIQUEWHITE3 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_ANTIQUEWHITE4MLV_rgba(139,131,120,255)
       Define the ANTIQUEWHITE4 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_AQUAMARINEMLV_rgba(127,255,212,255)
       Define the AQUAMARINE color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_AQUAMARINE1MLV_rgba(127,255,212,255)
       Define the AQUAMARINE1 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_AQUAMARINE2MLV_rgba(118,238,198,255)
       Define the AQUAMARINE2 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_AQUAMARINE3MLV_rgba(102,205,170,255)
       Define the AQUAMARINE3 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_AQUAMARINE4MLV_rgba(69,139,116,255)
       Define the AQUAMARINE4 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_AZUREMLV_rgba(240,255,255,255)
       Define the AZURE color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_AZURE1MLV_rgba(240,255,255,255)
       Define the AZURE1 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_AZURE2MLV_rgba(224,238,238,255)
       Define the AZURE2 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_AZURE3MLV_rgba(193,205,205,255)
       Define the AZURE3 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_AZURE4MLV_rgba(131,139,139,255)
       Define the AZURE4 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_BEIGEMLV_rgba(245,245,220,255)
       Define the BEIGE color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_BISQUEMLV_rgba(255,228,196,255)
       Define the BISQUE color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_BISQUE1MLV_rgba(255,228,196,255)
       Define the BISQUE1 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_BISQUE2MLV_rgba(238,213,183,255)
       Define the BISQUE2 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_BISQUE3MLV_rgba(205,183,158,255)
       Define the BISQUE3 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_BISQUE4MLV_rgba(139,125,107,255)
       Define the BISQUE4 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_BLACKMLV_rgba(0,0,0,255)
       Define the BLACK color.

       Exemplesadvanced/01_texts_and_boxes.c, advanced/07_transparency.c, advanced/08_zone_click.c,
           advanced/11_animation_book.c, beginner/04_texts_and_boxes.c, beginner/07_input_box.c,
           beginner/08_mouse_keyboard_input_box_timer.c, beginner/09_colors.c,
           beginner/10_library_informations.c, medium/01_keyboard_events.c, medium/02_mouse_events.c,
           medium/03_input_box_events.c, medium/04_events.c, medium/05_exit.c, medium/06_colors.c,
           medium/07_time.c, medium/08_full_screen.c, medium/09_keyboard_accents.c,
           medium/10_mouse_or_keyboard_access.c, et medium/11_keys_codes.c.

   #defineMLV_COLOR_BLANCHED_ALMONDMLV_rgba(255,235,205,255)
       Define the BLANCHED_ALMOND color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_BLANCHEDALMONDMLV_rgba(255,235,205,255)
       Define the BLANCHEDALMOND color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_BLUEMLV_rgba(0,0,255,255)
       Define the BLUE color.

       Exemplesbeginner/02_shapes.c, beginner/09_colors.c, et medium/04_events.c.

   #defineMLV_COLOR_BLUE1MLV_rgba(0,0,255,255)
       Define the BLUE1 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_BLUE2MLV_rgba(0,0,238,255)
       Define the BLUE2 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_BLUE3MLV_rgba(0,0,205,255)
       Define the BLUE3 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_BLUE4MLV_rgba(0,0,139,255)
       Define the BLUE4 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_BLUE_VIOLETMLV_rgba(138,43,226,255)
       Define the BLUE_VIOLET color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_BLUEVIOLETMLV_rgba(138,43,226,255)
       Define the BLUEVIOLET color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_BROWNMLV_rgba(165,42,42,255)
       Define the BROWN color.

       Exemplesadvanced/09_animation.c, advanced/11_animation_book.c, beginner/02_shapes.c, et beginner/09_colors.c.

   #defineMLV_COLOR_BROWN1MLV_rgba(255,64,64,255)
       Define the BROWN1 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_BROWN2MLV_rgba(238,59,59,255)
       Define the BROWN2 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_BROWN3MLV_rgba(205,51,51,255)
       Define the BROWN3 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_BROWN4MLV_rgba(139,35,35,255)
       Define the BROWN4 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_BURLYWOODMLV_rgba(222,184,135,255)
       Define the BURLYWOOD color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_BURLYWOOD1MLV_rgba(255,211,155,255)
       Define the BURLYWOOD1 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_BURLYWOOD2MLV_rgba(238,197,145,255)
       Define the BURLYWOOD2 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_BURLYWOOD3MLV_rgba(205,170,125,255)
       Define the BURLYWOOD3 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_BURLYWOOD4MLV_rgba(139,115,85,255)
       Define the BURLYWOOD4 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_CADET_BLUEMLV_rgba(95,158,160,255)
       Define the CADET_BLUE color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_CADETBLUEMLV_rgba(95,158,160,255)
       Define the CADETBLUE color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_CADETBLUE1MLV_rgba(152,245,255,255)
       Define the CADETBLUE1 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_CADETBLUE2MLV_rgba(142,229,238,255)
       Define the CADETBLUE2 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_CADETBLUE3MLV_rgba(122,197,205,255)
       Define the CADETBLUE3 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_CADETBLUE4MLV_rgba(83,134,139,255)
       Define the CADETBLUE4 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_CHARTREUSEMLV_rgba(127,255,0,255)
       Define the CHARTREUSE color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_CHARTREUSE1MLV_rgba(127,255,0,255)
       Define the CHARTREUSE1 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_CHARTREUSE2MLV_rgba(118,238,0,255)
       Define the CHARTREUSE2 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_CHARTREUSE3MLV_rgba(102,205,0,255)
       Define the CHARTREUSE3 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_CHARTREUSE4MLV_rgba(69,139,0,255)
       Define the CHARTREUSE4 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_CHOCOLATEMLV_rgba(210,105,30,255)
       Define the CHOCOLATE color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_CHOCOLATE1MLV_rgba(255,127,36,255)
       Define the CHOCOLATE1 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_CHOCOLATE2MLV_rgba(238,118,33,255)
       Define the CHOCOLATE2 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_CHOCOLATE3MLV_rgba(205,102,29,255)
       Define the CHOCOLATE3 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_CHOCOLATE4MLV_rgba(139,69,19,255)
       Define the CHOCOLATE4 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_CORALMLV_rgba(255,127,80,255)
       Define the CORAL color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_CORAL1MLV_rgba(255,114,86,255)
       Define the CORAL1 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_CORAL2MLV_rgba(238,106,80,255)
       Define the CORAL2 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_CORAL3MLV_rgba(205,91,69,255)
       Define the CORAL3 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_CORAL4MLV_rgba(139,62,47,255)
       Define the CORAL4 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_CORNFLOWER_BLUEMLV_rgba(100,149,237,255)
       Define the CORNFLOWER_BLUE color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_CORNFLOWERBLUEMLV_rgba(100,149,237,255)
       Define the CORNFLOWERBLUE color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_CORNSILKMLV_rgba(255,248,220,255)
       Define the CORNSILK color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_CORNSILK1MLV_rgba(255,248,220,255)
       Define the CORNSILK1 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_CORNSILK2MLV_rgba(238,232,205,255)
       Define the CORNSILK2 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_CORNSILK3MLV_rgba(205,200,177,255)
       Define the CORNSILK3 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_CORNSILK4MLV_rgba(139,136,120,255)
       Define the CORNSILK4 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_CYANMLV_rgba(0,255,255,255)
       Define the CYAN color.

       Exemplesbeginner/02_shapes.c, et beginner/09_colors.c.

   #defineMLV_COLOR_CYAN1MLV_rgba(0,255,255,255)
       Define the CYAN1 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_CYAN2MLV_rgba(0,238,238,255)
       Define the CYAN2 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_CYAN3MLV_rgba(0,205,205,255)
       Define the CYAN3 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_CYAN4MLV_rgba(0,139,139,255)
       Define the CYAN4 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_DARK_BLUEMLV_rgba(0,0,139,255)
       Define the DARK_BLUE color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_DARK_CYANMLV_rgba(0,139,139,255)
       Define the DARK_CYAN color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_DARK_GOLDENRODMLV_rgba(184,134,11,255)
       Define the DARK_GOLDENROD color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_DARK_GRAYMLV_rgba(169,169,169,255)
       Define the DARK_GRAY color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_DARK_GREENMLV_rgba(0,100,0,255)
       Define the DARK_GREEN color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_DARK_GREYMLV_rgba(169,169,169,255)
       Define the DARK_GREY color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_DARK_KHAKIMLV_rgba(189,183,107,255)
       Define the DARK_KHAKI color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_DARK_MAGENTAMLV_rgba(139,0,139,255)
       Define the DARK_MAGENTA color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_DARK_OLIVE_GREENMLV_rgba(85,107,47,255)
       Define the DARK_OLIVE_GREEN color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_DARK_ORANGEMLV_rgba(255,140,0,255)
       Define the DARK_ORANGE color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_DARK_ORCHIDMLV_rgba(153,50,204,255)
       Define the DARK_ORCHID color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_DARK_REDMLV_rgba(139,0,0,255)
       Define the DARK_RED color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_DARK_SALMONMLV_rgba(233,150,122,255)
       Define the DARK_SALMON color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_DARK_SEA_GREENMLV_rgba(143,188,143,255)
       Define the DARK_SEA_GREEN color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_DARK_SLATE_BLUEMLV_rgba(72,61,139,255)
       Define the DARK_SLATE_BLUE color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_DARK_SLATE_GRAYMLV_rgba(47,79,79,255)
       Define the DARK_SLATE_GRAY color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_DARK_SLATE_GREYMLV_rgba(47,79,79,255)
       Define the DARK_SLATE_GREY color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_DARK_TURQUOISEMLV_rgba(0,206,209,255)
       Define the DARK_TURQUOISE color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_DARK_VIOLETMLV_rgba(148,0,211,255)
       Define the DARK_VIOLET color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_DARKBLUEMLV_rgba(0,0,139,255)
       Define the DARKBLUE color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_DARKCYANMLV_rgba(0,139,139,255)
       Define the DARKCYAN color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_DARKGOLDENRODMLV_rgba(184,134,11,255)
       Define the DARKGOLDENROD color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_DARKGOLDENROD1MLV_rgba(255,185,15,255)
       Define the DARKGOLDENROD1 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_DARKGOLDENROD2MLV_rgba(238,173,14,255)
       Define the DARKGOLDENROD2 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_DARKGOLDENROD3MLV_rgba(205,149,12,255)
       Define the DARKGOLDENROD3 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_DARKGOLDENROD4MLV_rgba(139,101,8,255)
       Define the DARKGOLDENROD4 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_DARKGRAYMLV_rgba(169,169,169,255)
       Define the DARKGRAY color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_DARKGREENMLV_rgba(0,100,0,255)
       Define the DARKGREEN color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_DARKGREYMLV_rgba(169,169,169,255)
       Define the DARKGREY color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_DARKKHAKIMLV_rgba(189,183,107,255)
       Define the DARKKHAKI color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_DARKMAGENTAMLV_rgba(139,0,139,255)
       Define the DARKMAGENTA color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_DARKOLIVEGREENMLV_rgba(85,107,47,255)
       Define the DARKOLIVEGREEN color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_DARKOLIVEGREEN1MLV_rgba(202,255,112,255)
       Define the DARKOLIVEGREEN1 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_DARKOLIVEGREEN2MLV_rgba(188,238,104,255)
       Define the DARKOLIVEGREEN2 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_DARKOLIVEGREEN3MLV_rgba(162,205,90,255)
       Define the DARKOLIVEGREEN3 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_DARKOLIVEGREEN4MLV_rgba(110,139,61,255)
       Define the DARKOLIVEGREEN4 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_DARKORANGEMLV_rgba(255,140,0,255)
       Define the DARKORANGE color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_DARKORANGE1MLV_rgba(255,127,0,255)
       Define the DARKORANGE1 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_DARKORANGE2MLV_rgba(238,118,0,255)
       Define the DARKORANGE2 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_DARKORANGE3MLV_rgba(205,102,0,255)
       Define the DARKORANGE3 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_DARKORANGE4MLV_rgba(139,69,0,255)
       Define the DARKORANGE4 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_DARKORCHIDMLV_rgba(153,50,204,255)
       Define the DARKORCHID color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_DARKORCHID1MLV_rgba(191,62,255,255)
       Define the DARKORCHID1 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_DARKORCHID2MLV_rgba(178,58,238,255)
       Define the DARKORCHID2 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_DARKORCHID3MLV_rgba(154,50,205,255)
       Define the DARKORCHID3 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_DARKORCHID4MLV_rgba(104,34,139,255)
       Define the DARKORCHID4 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_DARKREDMLV_rgba(139,0,0,255)
       Define the DARKRED color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_DARKSALMONMLV_rgba(233,150,122,255)
       Define the DARKSALMON color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_DARKSEAGREENMLV_rgba(143,188,143,255)
       Define the DARKSEAGREEN color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_DARKSEAGREEN1MLV_rgba(193,255,193,255)
       Define the DARKSEAGREEN1 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_DARKSEAGREEN2MLV_rgba(180,238,180,255)
       Define the DARKSEAGREEN2 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_DARKSEAGREEN3MLV_rgba(155,205,155,255)
       Define the DARKSEAGREEN3 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_DARKSEAGREEN4MLV_rgba(105,139,105,255)
       Define the DARKSEAGREEN4 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_DARKSLATEBLUEMLV_rgba(72,61,139,255)
       Define the DARKSLATEBLUE color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_DARKSLATEGRAYMLV_rgba(47,79,79,255)
       Define the DARKSLATEGRAY color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_DARKSLATEGRAY1MLV_rgba(151,255,255,255)
       Define the DARKSLATEGRAY1 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_DARKSLATEGRAY2MLV_rgba(141,238,238,255)
       Define the DARKSLATEGRAY2 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_DARKSLATEGRAY3MLV_rgba(121,205,205,255)
       Define the DARKSLATEGRAY3 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_DARKSLATEGRAY4MLV_rgba(82,139,139,255)
       Define the DARKSLATEGRAY4 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_DARKSLATEGREYMLV_rgba(47,79,79,255)
       Define the DARKSLATEGREY color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_DARKTURQUOISEMLV_rgba(0,206,209,255)
       Define the DARKTURQUOISE color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_DARKVIOLETMLV_rgba(148,0,211,255)
       Define the DARKVIOLET color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_DEEP_PINKMLV_rgba(255,20,147,255)
       Define the DEEP_PINK color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_DEEP_SKY_BLUEMLV_rgba(0,191,255,255)
       Define the DEEP_SKY_BLUE color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_DEEPPINKMLV_rgba(255,20,147,255)
       Define the DEEPPINK color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_DEEPPINK1MLV_rgba(255,20,147,255)
       Define the DEEPPINK1 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_DEEPPINK2MLV_rgba(238,18,137,255)
       Define the DEEPPINK2 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_DEEPPINK3MLV_rgba(205,16,118,255)
       Define the DEEPPINK3 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_DEEPPINK4MLV_rgba(139,10,80,255)
       Define the DEEPPINK4 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_DEEPSKYBLUEMLV_rgba(0,191,255,255)
       Define the DEEPSKYBLUE color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_DEEPSKYBLUE1MLV_rgba(0,191,255,255)
       Define the DEEPSKYBLUE1 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_DEEPSKYBLUE2MLV_rgba(0,178,238,255)
       Define the DEEPSKYBLUE2 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_DEEPSKYBLUE3MLV_rgba(0,154,205,255)
       Define the DEEPSKYBLUE3 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_DEEPSKYBLUE4MLV_rgba(0,104,139,255)
       Define the DEEPSKYBLUE4 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_DIM_GRAYMLV_rgba(105,105,105,255)
       Define the DIM_GRAY color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_DIM_GREYMLV_rgba(105,105,105,255)
       Define the DIM_GREY color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_DIMGRAYMLV_rgba(105,105,105,255)
       Define the DIMGRAY color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_DIMGREYMLV_rgba(105,105,105,255)
       Define the DIMGREY color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_DODGER_BLUEMLV_rgba(30,144,255,255)
       Define the DODGER_BLUE color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_DODGERBLUEMLV_rgba(30,144,255,255)
       Define the DODGERBLUE color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_DODGERBLUE1MLV_rgba(30,144,255,255)
       Define the DODGERBLUE1 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_DODGERBLUE2MLV_rgba(28,134,238,255)
       Define the DODGERBLUE2 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_DODGERBLUE3MLV_rgba(24,116,205,255)
       Define the DODGERBLUE3 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_DODGERBLUE4MLV_rgba(16,78,139,255)
       Define the DODGERBLUE4 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_FIREBRICKMLV_rgba(178,34,34,255)
       Define the FIREBRICK color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_FIREBRICK1MLV_rgba(255,48,48,255)
       Define the FIREBRICK1 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_FIREBRICK2MLV_rgba(238,44,44,255)
       Define the FIREBRICK2 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_FIREBRICK3MLV_rgba(205,38,38,255)
       Define the FIREBRICK3 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_FIREBRICK4MLV_rgba(139,26,26,255)
       Define the FIREBRICK4 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_FLORAL_WHITEMLV_rgba(255,250,240,255)
       Define the FLORAL_WHITE color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_FLORALWHITEMLV_rgba(255,250,240,255)
       Define the FLORALWHITE color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_FOREST_GREENMLV_rgba(34,139,34,255)
       Define the FOREST_GREEN color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_FORESTGREENMLV_rgba(34,139,34,255)
       Define the FORESTGREEN color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GAINSBOROMLV_rgba(220,220,220,255)
       Define the GAINSBORO color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GHOST_WHITEMLV_rgba(248,248,255,255)
       Define the GHOST_WHITE color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GHOSTWHITEMLV_rgba(248,248,255,255)
       Define the GHOSTWHITE color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GOLDMLV_rgba(255,215,0,255)
       Define the GOLD color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GOLD1MLV_rgba(255,215,0,255)
       Define the GOLD1 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GOLD2MLV_rgba(238,201,0,255)
       Define the GOLD2 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GOLD3MLV_rgba(205,173,0,255)
       Define the GOLD3 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GOLD4MLV_rgba(139,117,0,255)
       Define the GOLD4 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GOLDENRODMLV_rgba(218,165,32,255)
       Define the GOLDENROD color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GOLDENROD1MLV_rgba(255,193,37,255)
       Define the GOLDENROD1 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GOLDENROD2MLV_rgba(238,180,34,255)
       Define the GOLDENROD2 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GOLDENROD3MLV_rgba(205,155,29,255)
       Define the GOLDENROD3 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GOLDENROD4MLV_rgba(139,105,20,255)
       Define the GOLDENROD4 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAYMLV_rgba(190,190,190,255)
       Define the GRAY color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY0MLV_rgba(0,0,0,255)
       Define the GRAY0 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY1MLV_rgba(3,3,3,255)
       Define the GRAY1 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY10MLV_rgba(26,26,26,255)
       Define the GRAY10 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY100MLV_rgba(255,255,255,255)
       Define the GRAY100 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY11MLV_rgba(28,28,28,255)
       Define the GRAY11 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY12MLV_rgba(31,31,31,255)
       Define the GRAY12 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY13MLV_rgba(33,33,33,255)
       Define the GRAY13 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY14MLV_rgba(36,36,36,255)
       Define the GRAY14 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY15MLV_rgba(38,38,38,255)
       Define the GRAY15 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY16MLV_rgba(41,41,41,255)
       Define the GRAY16 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY17MLV_rgba(43,43,43,255)
       Define the GRAY17 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY18MLV_rgba(46,46,46,255)
       Define the GRAY18 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY19MLV_rgba(48,48,48,255)
       Define the GRAY19 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY2MLV_rgba(5,5,5,255)
       Define the GRAY2 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY20MLV_rgba(51,51,51,255)
       Define the GRAY20 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY21MLV_rgba(54,54,54,255)
       Define the GRAY21 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY22MLV_rgba(56,56,56,255)
       Define the GRAY22 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY23MLV_rgba(59,59,59,255)
       Define the GRAY23 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY24MLV_rgba(61,61,61,255)
       Define the GRAY24 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY25MLV_rgba(64,64,64,255)
       Define the GRAY25 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY26MLV_rgba(66,66,66,255)
       Define the GRAY26 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY27MLV_rgba(69,69,69,255)
       Define the GRAY27 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY28MLV_rgba(71,71,71,255)
       Define the GRAY28 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY29MLV_rgba(74,74,74,255)
       Define the GRAY29 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY3MLV_rgba(8,8,8,255)
       Define the GRAY3 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY30MLV_rgba(77,77,77,255)
       Define the GRAY30 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY31MLV_rgba(79,79,79,255)
       Define the GRAY31 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY32MLV_rgba(82,82,82,255)
       Define the GRAY32 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY33MLV_rgba(84,84,84,255)
       Define the GRAY33 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY34MLV_rgba(87,87,87,255)
       Define the GRAY34 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY35MLV_rgba(89,89,89,255)
       Define the GRAY35 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY36MLV_rgba(92,92,92,255)
       Define the GRAY36 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY37MLV_rgba(94,94,94,255)
       Define the GRAY37 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY38MLV_rgba(97,97,97,255)
       Define the GRAY38 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY39MLV_rgba(99,99,99,255)
       Define the GRAY39 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY4MLV_rgba(10,10,10,255)
       Define the GRAY4 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY40MLV_rgba(102,102,102,255)
       Define the GRAY40 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY41MLV_rgba(105,105,105,255)
       Define the GRAY41 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY42MLV_rgba(107,107,107,255)
       Define the GRAY42 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY43MLV_rgba(110,110,110,255)
       Define the GRAY43 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY44MLV_rgba(112,112,112,255)
       Define the GRAY44 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY45MLV_rgba(115,115,115,255)
       Define the GRAY45 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY46MLV_rgba(117,117,117,255)
       Define the GRAY46 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY47MLV_rgba(120,120,120,255)
       Define the GRAY47 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY48MLV_rgba(122,122,122,255)
       Define the GRAY48 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY49MLV_rgba(125,125,125,255)
       Define the GRAY49 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY5MLV_rgba(13,13,13,255)
       Define the GRAY5 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY50MLV_rgba(127,127,127,255)
       Define the GRAY50 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY51MLV_rgba(130,130,130,255)
       Define the GRAY51 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY52MLV_rgba(133,133,133,255)
       Define the GRAY52 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY53MLV_rgba(135,135,135,255)
       Define the GRAY53 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY54MLV_rgba(138,138,138,255)
       Define the GRAY54 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY55MLV_rgba(140,140,140,255)
       Define the GRAY55 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY56MLV_rgba(143,143,143,255)
       Define the GRAY56 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY57MLV_rgba(145,145,145,255)
       Define the GRAY57 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY58MLV_rgba(148,148,148,255)
       Define the GRAY58 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY59MLV_rgba(150,150,150,255)
       Define the GRAY59 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY6MLV_rgba(15,15,15,255)
       Define the GRAY6 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY60MLV_rgba(153,153,153,255)
       Define the GRAY60 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY61MLV_rgba(156,156,156,255)
       Define the GRAY61 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY62MLV_rgba(158,158,158,255)
       Define the GRAY62 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY63MLV_rgba(161,161,161,255)
       Define the GRAY63 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY64MLV_rgba(163,163,163,255)
       Define the GRAY64 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY65MLV_rgba(166,166,166,255)
       Define the GRAY65 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY66MLV_rgba(168,168,168,255)
       Define the GRAY66 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY67MLV_rgba(171,171,171,255)
       Define the GRAY67 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY68MLV_rgba(173,173,173,255)
       Define the GRAY68 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY69MLV_rgba(176,176,176,255)
       Define the GRAY69 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY7MLV_rgba(18,18,18,255)
       Define the GRAY7 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY70MLV_rgba(179,179,179,255)
       Define the GRAY70 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY71MLV_rgba(181,181,181,255)
       Define the GRAY71 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY72MLV_rgba(184,184,184,255)
       Define the GRAY72 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY73MLV_rgba(186,186,186,255)
       Define the GRAY73 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY74MLV_rgba(189,189,189,255)
       Define the GRAY74 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY75MLV_rgba(191,191,191,255)
       Define the GRAY75 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY76MLV_rgba(194,194,194,255)
       Define the GRAY76 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY77MLV_rgba(196,196,196,255)
       Define the GRAY77 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY78MLV_rgba(199,199,199,255)
       Define the GRAY78 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY79MLV_rgba(201,201,201,255)
       Define the GRAY79 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY8MLV_rgba(20,20,20,255)
       Define the GRAY8 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY80MLV_rgba(204,204,204,255)
       Define the GRAY80 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY81MLV_rgba(207,207,207,255)
       Define the GRAY81 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY82MLV_rgba(209,209,209,255)
       Define the GRAY82 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY83MLV_rgba(212,212,212,255)
       Define the GRAY83 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY84MLV_rgba(214,214,214,255)
       Define the GRAY84 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY85MLV_rgba(217,217,217,255)
       Define the GRAY85 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY86MLV_rgba(219,219,219,255)
       Define the GRAY86 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY87MLV_rgba(222,222,222,255)
       Define the GRAY87 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY88MLV_rgba(224,224,224,255)
       Define the GRAY88 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY89MLV_rgba(227,227,227,255)
       Define the GRAY89 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY9MLV_rgba(23,23,23,255)
       Define the GRAY9 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY90MLV_rgba(229,229,229,255)
       Define the GRAY90 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY91MLV_rgba(232,232,232,255)
       Define the GRAY91 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY92MLV_rgba(235,235,235,255)
       Define the GRAY92 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY93MLV_rgba(237,237,237,255)
       Define the GRAY93 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY94MLV_rgba(240,240,240,255)
       Define the GRAY94 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY95MLV_rgba(242,242,242,255)
       Define the GRAY95 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY96MLV_rgba(245,245,245,255)
       Define the GRAY96 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY97MLV_rgba(247,247,247,255)
       Define the GRAY97 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY98MLV_rgba(250,250,250,255)
       Define the GRAY98 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GRAY99MLV_rgba(252,252,252,255)
       Define the GRAY99 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREENMLV_rgba(0,255,0,255)
       Define the GREEN color.

       Exemplesadvanced/01_texts_and_boxes.c, advanced/02_font.c, advanced/04_sound.c, advanced/07_transparency.c,
           beginner/02_shapes.c, beginner/04_texts_and_boxes.c, beginner/05_mouse.c, beginner/06_keyboard.c,
           beginner/07_input_box.c, beginner/08_mouse_keyboard_input_box_timer.c, beginner/09_colors.c,
           beginner/10_library_informations.c, beginner/11_turtle.c, medium/01_keyboard_events.c,
           medium/02_mouse_events.c, medium/03_input_box_events.c, medium/04_events.c, medium/05_exit.c,
           medium/07_time.c, medium/09_keyboard_accents.c, medium/10_mouse_or_keyboard_access.c,
           medium/11_keys_codes.c, et medium/12_desktop_size.c.

   #defineMLV_COLOR_GREEN1MLV_rgba(0,255,0,255)
       Define the GREEN1 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREEN2MLV_rgba(0,238,0,255)
       Define the GREEN2 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREEN3MLV_rgba(0,205,0,255)
       Define the GREEN3 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREEN4MLV_rgba(0,139,0,255)
       Define the GREEN4 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREEN_YELLOWMLV_rgba(173,255,47,255)
       Define the GREEN_YELLOW color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREENYELLOWMLV_rgba(173,255,47,255)
       Define the GREENYELLOW color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREYMLV_rgba(190,190,190,255)
       Define the GREY color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY0MLV_rgba(0,0,0,255)
       Define the GREY0 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY1MLV_rgba(3,3,3,255)
       Define the GREY1 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY10MLV_rgba(26,26,26,255)
       Define the GREY10 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY100MLV_rgba(255,255,255,255)
       Define the GREY100 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY11MLV_rgba(28,28,28,255)
       Define the GREY11 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY12MLV_rgba(31,31,31,255)
       Define the GREY12 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY13MLV_rgba(33,33,33,255)
       Define the GREY13 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY14MLV_rgba(36,36,36,255)
       Define the GREY14 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY15MLV_rgba(38,38,38,255)
       Define the GREY15 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY16MLV_rgba(41,41,41,255)
       Define the GREY16 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY17MLV_rgba(43,43,43,255)
       Define the GREY17 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY18MLV_rgba(46,46,46,255)
       Define the GREY18 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY19MLV_rgba(48,48,48,255)
       Define the GREY19 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY2MLV_rgba(5,5,5,255)
       Define the GREY2 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY20MLV_rgba(51,51,51,255)
       Define the GREY20 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY21MLV_rgba(54,54,54,255)
       Define the GREY21 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY22MLV_rgba(56,56,56,255)
       Define the GREY22 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY23MLV_rgba(59,59,59,255)
       Define the GREY23 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY24MLV_rgba(61,61,61,255)
       Define the GREY24 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY25MLV_rgba(64,64,64,255)
       Define the GREY25 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY26MLV_rgba(66,66,66,255)
       Define the GREY26 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY27MLV_rgba(69,69,69,255)
       Define the GREY27 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY28MLV_rgba(71,71,71,255)
       Define the GREY28 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY29MLV_rgba(74,74,74,255)
       Define the GREY29 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY3MLV_rgba(8,8,8,255)
       Define the GREY3 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY30MLV_rgba(77,77,77,255)
       Define the GREY30 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY31MLV_rgba(79,79,79,255)
       Define the GREY31 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY32MLV_rgba(82,82,82,255)
       Define the GREY32 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY33MLV_rgba(84,84,84,255)
       Define the GREY33 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY34MLV_rgba(87,87,87,255)
       Define the GREY34 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY35MLV_rgba(89,89,89,255)
       Define the GREY35 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY36MLV_rgba(92,92,92,255)
       Define the GREY36 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY37MLV_rgba(94,94,94,255)
       Define the GREY37 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY38MLV_rgba(97,97,97,255)
       Define the GREY38 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY39MLV_rgba(99,99,99,255)
       Define the GREY39 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY4MLV_rgba(10,10,10,255)
       Define the GREY4 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY40MLV_rgba(102,102,102,255)
       Define the GREY40 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY41MLV_rgba(105,105,105,255)
       Define the GREY41 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY42MLV_rgba(107,107,107,255)
       Define the GREY42 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY43MLV_rgba(110,110,110,255)
       Define the GREY43 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY44MLV_rgba(112,112,112,255)
       Define the GREY44 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY45MLV_rgba(115,115,115,255)
       Define the GREY45 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY46MLV_rgba(117,117,117,255)
       Define the GREY46 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY47MLV_rgba(120,120,120,255)
       Define the GREY47 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY48MLV_rgba(122,122,122,255)
       Define the GREY48 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY49MLV_rgba(125,125,125,255)
       Define the GREY49 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY5MLV_rgba(13,13,13,255)
       Define the GREY5 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY50MLV_rgba(127,127,127,255)
       Define the GREY50 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY51MLV_rgba(130,130,130,255)
       Define the GREY51 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY52MLV_rgba(133,133,133,255)
       Define the GREY52 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY53MLV_rgba(135,135,135,255)
       Define the GREY53 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY54MLV_rgba(138,138,138,255)
       Define the GREY54 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY55MLV_rgba(140,140,140,255)
       Define the GREY55 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY56MLV_rgba(143,143,143,255)
       Define the GREY56 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY57MLV_rgba(145,145,145,255)
       Define the GREY57 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY58MLV_rgba(148,148,148,255)
       Define the GREY58 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY59MLV_rgba(150,150,150,255)
       Define the GREY59 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY6MLV_rgba(15,15,15,255)
       Define the GREY6 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY60MLV_rgba(153,153,153,255)
       Define the GREY60 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY61MLV_rgba(156,156,156,255)
       Define the GREY61 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY62MLV_rgba(158,158,158,255)
       Define the GREY62 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY63MLV_rgba(161,161,161,255)
       Define the GREY63 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY64MLV_rgba(163,163,163,255)
       Define the GREY64 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY65MLV_rgba(166,166,166,255)
       Define the GREY65 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY66MLV_rgba(168,168,168,255)
       Define the GREY66 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY67MLV_rgba(171,171,171,255)
       Define the GREY67 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY68MLV_rgba(173,173,173,255)
       Define the GREY68 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY69MLV_rgba(176,176,176,255)
       Define the GREY69 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY7MLV_rgba(18,18,18,255)
       Define the GREY7 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY70MLV_rgba(179,179,179,255)
       Define the GREY70 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY71MLV_rgba(181,181,181,255)
       Define the GREY71 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY72MLV_rgba(184,184,184,255)
       Define the GREY72 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY73MLV_rgba(186,186,186,255)
       Define the GREY73 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY74MLV_rgba(189,189,189,255)
       Define the GREY74 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY75MLV_rgba(191,191,191,255)
       Define the GREY75 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY76MLV_rgba(194,194,194,255)
       Define the GREY76 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY77MLV_rgba(196,196,196,255)
       Define the GREY77 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY78MLV_rgba(199,199,199,255)
       Define the GREY78 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY79MLV_rgba(201,201,201,255)
       Define the GREY79 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY8MLV_rgba(20,20,20,255)
       Define the GREY8 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY80MLV_rgba(204,204,204,255)
       Define the GREY80 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY81MLV_rgba(207,207,207,255)
       Define the GREY81 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY82MLV_rgba(209,209,209,255)
       Define the GREY82 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY83MLV_rgba(212,212,212,255)
       Define the GREY83 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY84MLV_rgba(214,214,214,255)
       Define the GREY84 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY85MLV_rgba(217,217,217,255)
       Define the GREY85 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY86MLV_rgba(219,219,219,255)
       Define the GREY86 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY87MLV_rgba(222,222,222,255)
       Define the GREY87 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY88MLV_rgba(224,224,224,255)
       Define the GREY88 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY89MLV_rgba(227,227,227,255)
       Define the GREY89 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY9MLV_rgba(23,23,23,255)
       Define the GREY9 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY90MLV_rgba(229,229,229,255)
       Define the GREY90 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY91MLV_rgba(232,232,232,255)
       Define the GREY91 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY92MLV_rgba(235,235,235,255)
       Define the GREY92 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY93MLV_rgba(237,237,237,255)
       Define the GREY93 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY94MLV_rgba(240,240,240,255)
       Define the GREY94 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY95MLV_rgba(242,242,242,255)
       Define the GREY95 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY96MLV_rgba(245,245,245,255)
       Define the GREY96 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY97MLV_rgba(247,247,247,255)
       Define the GREY97 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY98MLV_rgba(250,250,250,255)
       Define the GREY98 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_GREY99MLV_rgba(252,252,252,255)
       Define the GREY99 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_HONEYDEWMLV_rgba(240,255,240,255)
       Define the HONEYDEW color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_HONEYDEW1MLV_rgba(240,255,240,255)
       Define the HONEYDEW1 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_HONEYDEW2MLV_rgba(224,238,224,255)
       Define the HONEYDEW2 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_HONEYDEW3MLV_rgba(193,205,193,255)
       Define the HONEYDEW3 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_HONEYDEW4MLV_rgba(131,139,131,255)
       Define the HONEYDEW4 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_HOT_PINKMLV_rgba(255,105,180,255)
       Define the HOT_PINK color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_HOTPINKMLV_rgba(255,105,180,255)
       Define the HOTPINK color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_HOTPINK1MLV_rgba(255,110,180,255)
       Define the HOTPINK1 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_HOTPINK2MLV_rgba(238,106,167,255)
       Define the HOTPINK2 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_HOTPINK3MLV_rgba(205,96,144,255)
       Define the HOTPINK3 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_HOTPINK4MLV_rgba(139,58,98,255)
       Define the HOTPINK4 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_INDIAN_REDMLV_rgba(205,92,92,255)
       Define the INDIAN_RED color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_INDIANREDMLV_rgba(205,92,92,255)
       Define the INDIANRED color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_INDIANRED1MLV_rgba(255,106,106,255)
       Define the INDIANRED1 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_INDIANRED2MLV_rgba(238,99,99,255)
       Define the INDIANRED2 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_INDIANRED3MLV_rgba(205,85,85,255)
       Define the INDIANRED3 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_INDIANRED4MLV_rgba(139,58,58,255)
       Define the INDIANRED4 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_IVORYMLV_rgba(255,255,240,255)
       Define the IVORY color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_IVORY1MLV_rgba(255,255,240,255)
       Define the IVORY1 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_IVORY2MLV_rgba(238,238,224,255)
       Define the IVORY2 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_IVORY3MLV_rgba(205,205,193,255)
       Define the IVORY3 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_IVORY4MLV_rgba(139,139,131,255)
       Define the IVORY4 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_KHAKIMLV_rgba(240,230,140,255)
       Define the KHAKI color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_KHAKI1MLV_rgba(255,246,143,255)
       Define the KHAKI1 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_KHAKI2MLV_rgba(238,230,133,255)
       Define the KHAKI2 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_KHAKI3MLV_rgba(205,198,115,255)
       Define the KHAKI3 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_KHAKI4MLV_rgba(139,134,78,255)
       Define the KHAKI4 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_LAVENDERMLV_rgba(230,230,250,255)
       Define the LAVENDER color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_LAVENDER_BLUSHMLV_rgba(255,240,245,255)
       Define the LAVENDER_BLUSH color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_LAVENDERBLUSHMLV_rgba(255,240,245,255)
       Define the LAVENDERBLUSH color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_LAVENDERBLUSH1MLV_rgba(255,240,245,255)
       Define the LAVENDERBLUSH1 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_LAVENDERBLUSH2MLV_rgba(238,224,229,255)
       Define the LAVENDERBLUSH2 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_LAVENDERBLUSH3MLV_rgba(205,193,197,255)
       Define the LAVENDERBLUSH3 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_LAVENDERBLUSH4MLV_rgba(139,131,134,255)
       Define the LAVENDERBLUSH4 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_LAWN_GREENMLV_rgba(124,252,0,255)
       Define the LAWN_GREEN color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_LAWNGREENMLV_rgba(124,252,0,255)
       Define the LAWNGREEN color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_LEMON_CHIFFONMLV_rgba(255,250,205,255)
       Define the LEMON_CHIFFON color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_LEMONCHIFFONMLV_rgba(255,250,205,255)
       Define the LEMONCHIFFON color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_LEMONCHIFFON1MLV_rgba(255,250,205,255)
       Define the LEMONCHIFFON1 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_LEMONCHIFFON2MLV_rgba(238,233,191,255)
       Define the LEMONCHIFFON2 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_LEMONCHIFFON3MLV_rgba(205,201,165,255)
       Define the LEMONCHIFFON3 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_LEMONCHIFFON4MLV_rgba(139,137,112,255)
       Define the LEMONCHIFFON4 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_LIGHT_BLUEMLV_rgba(173,216,230,255)
       Define the LIGHT_BLUE color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_LIGHT_CORALMLV_rgba(240,128,128,255)
       Define the LIGHT_CORAL color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_LIGHT_CYANMLV_rgba(224,255,255,255)
       Define the LIGHT_CYAN color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_LIGHT_GOLDENRODMLV_rgba(238,221,130,255)
       Define the LIGHT_GOLDENROD color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_LIGHT_GOLDENROD_YELLOWMLV_rgba(250,250,210,255)
       Define the LIGHT_GOLDENROD_YELLOW color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_LIGHT_GRAYMLV_rgba(211,211,211,255)
       Define the LIGHT_GRAY color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_LIGHT_GREENMLV_rgba(144,238,144,255)
       Define the LIGHT_GREEN color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_LIGHT_GREYMLV_rgba(211,211,211,255)
       Define the LIGHT_GREY color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_LIGHT_PINKMLV_rgba(255,182,193,255)
       Define the LIGHT_PINK color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_LIGHT_SALMONMLV_rgba(255,160,122,255)
       Define the LIGHT_SALMON color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_LIGHT_SEA_GREENMLV_rgba(32,178,170,255)
       Define the LIGHT_SEA_GREEN color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_LIGHT_SKY_BLUEMLV_rgba(135,206,250,255)
       Define the LIGHT_SKY_BLUE color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_LIGHT_SLATE_BLUEMLV_rgba(132,112,255,255)
       Define the LIGHT_SLATE_BLUE color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_LIGHT_SLATE_GRAYMLV_rgba(119,136,153,255)
       Define the LIGHT_SLATE_GRAY color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_LIGHT_SLATE_GREYMLV_rgba(119,136,153,255)
       Define the LIGHT_SLATE_GREY color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_LIGHT_STEEL_BLUEMLV_rgba(176,196,222,255)
       Define the LIGHT_STEEL_BLUE color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_LIGHT_YELLOWMLV_rgba(255,255,224,255)
       Define the LIGHT_YELLOW color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_LIGHTBLUEMLV_rgba(173,216,230,255)
       Define the LIGHTBLUE color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_LIGHTBLUE1MLV_rgba(191,239,255,255)
       Define the LIGHTBLUE1 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_LIGHTBLUE2MLV_rgba(178,223,238,255)
       Define the LIGHTBLUE2 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_LIGHTBLUE3MLV_rgba(154,192,205,255)
       Define the LIGHTBLUE3 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_LIGHTBLUE4MLV_rgba(104,131,139,255)
       Define the LIGHTBLUE4 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_LIGHTCORALMLV_rgba(240,128,128,255)
       Define the LIGHTCORAL color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_LIGHTCYANMLV_rgba(224,255,255,255)
       Define the LIGHTCYAN color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_LIGHTCYAN1MLV_rgba(224,255,255,255)
       Define the LIGHTCYAN1 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_LIGHTCYAN2MLV_rgba(209,238,238,255)
       Define the LIGHTCYAN2 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_LIGHTCYAN3MLV_rgba(180,205,205,255)
       Define the LIGHTCYAN3 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_LIGHTCYAN4MLV_rgba(122,139,139,255)
       Define the LIGHTCYAN4 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_LIGHTGOLDENRODMLV_rgba(238,221,130,255)
       Define the LIGHTGOLDENROD color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_LIGHTGOLDENROD1MLV_rgba(255,236,139,255)
       Define the LIGHTGOLDENROD1 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_LIGHTGOLDENROD2MLV_rgba(238,220,130,255)
       Define the LIGHTGOLDENROD2 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_LIGHTGOLDENROD3MLV_rgba(205,190,112,255)
       Define the LIGHTGOLDENROD3 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_LIGHTGOLDENROD4MLV_rgba(139,129,76,255)
       Define the LIGHTGOLDENROD4 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_LIGHTGOLDENRODYELLOWMLV_rgba(250,250,210,255)
       Define the LIGHTGOLDENRODYELLOW color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_LIGHTGRAYMLV_rgba(211,211,211,255)
       Define the LIGHTGRAY color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_LIGHTGREENMLV_rgba(144,238,144,255)
       Define the LIGHTGREEN color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_LIGHTGREYMLV_rgba(211,211,211,255)
       Define the LIGHTGREY color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_LIGHTPINKMLV_rgba(255,182,193,255)
       Define the LIGHTPINK color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_LIGHTPINK1MLV_rgba(255,174,185,255)
       Define the LIGHTPINK1 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_LIGHTPINK2MLV_rgba(238,162,173,255)
       Define the LIGHTPINK2 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_LIGHTPINK3MLV_rgba(205,140,149,255)
       Define the LIGHTPINK3 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_LIGHTPINK4MLV_rgba(139,95,101,255)
       Define the LIGHTPINK4 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_LIGHTSALMONMLV_rgba(255,160,122,255)
       Define the LIGHTSALMON color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_LIGHTSALMON1MLV_rgba(255,160,122,255)
       Define the LIGHTSALMON1 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_LIGHTSALMON2MLV_rgba(238,149,114,255)
       Define the LIGHTSALMON2 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_LIGHTSALMON3MLV_rgba(205,129,98,255)
       Define the LIGHTSALMON3 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_LIGHTSALMON4MLV_rgba(139,87,66,255)
       Define the LIGHTSALMON4 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_LIGHTSEAGREENMLV_rgba(32,178,170,255)
       Define the LIGHTSEAGREEN color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_LIGHTSKYBLUEMLV_rgba(135,206,250,255)
       Define the LIGHTSKYBLUE color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_LIGHTSKYBLUE1MLV_rgba(176,226,255,255)
       Define the LIGHTSKYBLUE1 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_LIGHTSKYBLUE2MLV_rgba(164,211,238,255)
       Define the LIGHTSKYBLUE2 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_LIGHTSKYBLUE3MLV_rgba(141,182,205,255)
       Define the LIGHTSKYBLUE3 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_LIGHTSKYBLUE4MLV_rgba(96,123,139,255)
       Define the LIGHTSKYBLUE4 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_LIGHTSLATEBLUEMLV_rgba(132,112,255,255)
       Define the LIGHTSLATEBLUE color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_LIGHTSLATEGRAYMLV_rgba(119,136,153,255)
       Define the LIGHTSLATEGRAY color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_LIGHTSLATEGREYMLV_rgba(119,136,153,255)
       Define the LIGHTSLATEGREY color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_LIGHTSTEELBLUEMLV_rgba(176,196,222,255)
       Define the LIGHTSTEELBLUE color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_LIGHTSTEELBLUE1MLV_rgba(202,225,255,255)
       Define the LIGHTSTEELBLUE1 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_LIGHTSTEELBLUE2MLV_rgba(188,210,238,255)
       Define the LIGHTSTEELBLUE2 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_LIGHTSTEELBLUE3MLV_rgba(162,181,205,255)
       Define the LIGHTSTEELBLUE3 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_LIGHTSTEELBLUE4MLV_rgba(110,123,139,255)
       Define the LIGHTSTEELBLUE4 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_LIGHTYELLOWMLV_rgba(255,255,224,255)
       Define the LIGHTYELLOW color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_LIGHTYELLOW1MLV_rgba(255,255,224,255)
       Define the LIGHTYELLOW1 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_LIGHTYELLOW2MLV_rgba(238,238,209,255)
       Define the LIGHTYELLOW2 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_LIGHTYELLOW3MLV_rgba(205,205,180,255)
       Define the LIGHTYELLOW3 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_LIGHTYELLOW4MLV_rgba(139,139,122,255)
       Define the LIGHTYELLOW4 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_LIME_GREENMLV_rgba(50,205,50,255)
       Define the LIME_GREEN color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_LIMEGREENMLV_rgba(50,205,50,255)
       Define the LIMEGREEN color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_LINENMLV_rgba(250,240,230,255)
       Define the LINEN color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_MAGENTAMLV_rgba(255,0,255,255)
       Define the MAGENTA color.

       Exemplesadvanced/05_playlist.c, beginner/01_hello_world.c, beginner/02_shapes.c,
           beginner/04_texts_and_boxes.c, et beginner/09_colors.c.

   #defineMLV_COLOR_MAGENTA1MLV_rgba(255,0,255,255)
       Define the MAGENTA1 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_MAGENTA2MLV_rgba(238,0,238,255)
       Define the MAGENTA2 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_MAGENTA3MLV_rgba(205,0,205,255)
       Define the MAGENTA3 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_MAGENTA4MLV_rgba(139,0,139,255)
       Define the MAGENTA4 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_MAROONMLV_rgba(176,48,96,255)
       Define the MAROON color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_MAROON1MLV_rgba(255,52,179,255)
       Define the MAROON1 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_MAROON2MLV_rgba(238,48,167,255)
       Define the MAROON2 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_MAROON3MLV_rgba(205,41,144,255)
       Define the MAROON3 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_MAROON4MLV_rgba(139,28,98,255)
       Define the MAROON4 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_MEDIUM_AQUAMARINEMLV_rgba(102,205,170,255)
       Define the MEDIUM_AQUAMARINE color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_MEDIUM_BLUEMLV_rgba(0,0,205,255)
       Define the MEDIUM_BLUE color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_MEDIUM_ORCHIDMLV_rgba(186,85,211,255)
       Define the MEDIUM_ORCHID color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_MEDIUM_PURPLEMLV_rgba(147,112,219,255)
       Define the MEDIUM_PURPLE color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_MEDIUM_SEA_GREENMLV_rgba(60,179,113,255)
       Define the MEDIUM_SEA_GREEN color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_MEDIUM_SLATE_BLUEMLV_rgba(123,104,238,255)
       Define the MEDIUM_SLATE_BLUE color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_MEDIUM_SPRING_GREENMLV_rgba(0,250,154,255)
       Define the MEDIUM_SPRING_GREEN color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_MEDIUM_TURQUOISEMLV_rgba(72,209,204,255)
       Define the MEDIUM_TURQUOISE color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_MEDIUM_VIOLET_REDMLV_rgba(199,21,133,255)
       Define the MEDIUM_VIOLET_RED color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_MEDIUMAQUAMARINEMLV_rgba(102,205,170,255)
       Define the MEDIUMAQUAMARINE color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_MEDIUMBLUEMLV_rgba(0,0,205,255)
       Define the MEDIUMBLUE color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_MEDIUMORCHIDMLV_rgba(186,85,211,255)
       Define the MEDIUMORCHID color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_MEDIUMORCHID1MLV_rgba(224,102,255,255)
       Define the MEDIUMORCHID1 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_MEDIUMORCHID2MLV_rgba(209,95,238,255)
       Define the MEDIUMORCHID2 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_MEDIUMORCHID3MLV_rgba(180,82,205,255)
       Define the MEDIUMORCHID3 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_MEDIUMORCHID4MLV_rgba(122,55,139,255)
       Define the MEDIUMORCHID4 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_MEDIUMPURPLEMLV_rgba(147,112,219,255)
       Define the MEDIUMPURPLE color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_MEDIUMPURPLE1MLV_rgba(171,130,255,255)
       Define the MEDIUMPURPLE1 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_MEDIUMPURPLE2MLV_rgba(159,121,238,255)
       Define the MEDIUMPURPLE2 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_MEDIUMPURPLE3MLV_rgba(137,104,205,255)
       Define the MEDIUMPURPLE3 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_MEDIUMPURPLE4MLV_rgba(93,71,139,255)
       Define the MEDIUMPURPLE4 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_MEDIUMSEAGREENMLV_rgba(60,179,113,255)
       Define the MEDIUMSEAGREEN color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_MEDIUMSLATEBLUEMLV_rgba(123,104,238,255)
       Define the MEDIUMSLATEBLUE color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_MEDIUMSPRINGGREENMLV_rgba(0,250,154,255)
       Define the MEDIUMSPRINGGREEN color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_MEDIUMTURQUOISEMLV_rgba(72,209,204,255)
       Define the MEDIUMTURQUOISE color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_MEDIUMVIOLETREDMLV_rgba(199,21,133,255)
       Define the MEDIUMVIOLETRED color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_MIDNIGHT_BLUEMLV_rgba(25,25,112,255)
       Define the MIDNIGHT_BLUE color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_MIDNIGHTBLUEMLV_rgba(25,25,112,255)
       Define the MIDNIGHTBLUE color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_MINT_CREAMMLV_rgba(245,255,250,255)
       Define the MINT_CREAM color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_MINTCREAMMLV_rgba(245,255,250,255)
       Define the MINTCREAM color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_MISTY_ROSEMLV_rgba(255,228,225,255)
       Define the MISTY_ROSE color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_MISTYROSEMLV_rgba(255,228,225,255)
       Define the MISTYROSE color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_MISTYROSE1MLV_rgba(255,228,225,255)
       Define the MISTYROSE1 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_MISTYROSE2MLV_rgba(238,213,210,255)
       Define the MISTYROSE2 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_MISTYROSE3MLV_rgba(205,183,181,255)
       Define the MISTYROSE3 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_MISTYROSE4MLV_rgba(139,125,123,255)
       Define the MISTYROSE4 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_MOCCASINMLV_rgba(255,228,181,255)
       Define the MOCCASIN color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_NAVAJO_WHITEMLV_rgba(255,222,173,255)
       Define the NAVAJO_WHITE color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_NAVAJOWHITEMLV_rgba(255,222,173,255)
       Define the NAVAJOWHITE color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_NAVAJOWHITE1MLV_rgba(255,222,173,255)
       Define the NAVAJOWHITE1 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_NAVAJOWHITE2MLV_rgba(238,207,161,255)
       Define the NAVAJOWHITE2 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_NAVAJOWHITE3MLV_rgba(205,179,139,255)
       Define the NAVAJOWHITE3 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_NAVAJOWHITE4MLV_rgba(139,121,94,255)
       Define the NAVAJOWHITE4 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_NAVYMLV_rgba(0,0,128,255)
       Define the NAVY color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_NAVY_BLUEMLV_rgba(0,0,128,255)
       Define the NAVY_BLUE color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_NAVYBLUEMLV_rgba(0,0,128,255)
       Define the NAVYBLUE color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_OLD_LACEMLV_rgba(253,245,230,255)
       Define the OLD_LACE color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_OLDLACEMLV_rgba(253,245,230,255)
       Define the OLDLACE color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_OLIVE_DRABMLV_rgba(107,142,35,255)
       Define the OLIVE_DRAB color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_OLIVEDRABMLV_rgba(107,142,35,255)
       Define the OLIVEDRAB color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_OLIVEDRAB1MLV_rgba(192,255,62,255)
       Define the OLIVEDRAB1 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_OLIVEDRAB2MLV_rgba(179,238,58,255)
       Define the OLIVEDRAB2 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_OLIVEDRAB3MLV_rgba(154,205,50,255)
       Define the OLIVEDRAB3 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_OLIVEDRAB4MLV_rgba(105,139,34,255)
       Define the OLIVEDRAB4 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_ORANGEMLV_rgba(255,165,0,255)
       Define the ORANGE color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_ORANGE1MLV_rgba(255,165,0,255)
       Define the ORANGE1 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_ORANGE2MLV_rgba(238,154,0,255)
       Define the ORANGE2 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_ORANGE3MLV_rgba(205,133,0,255)
       Define the ORANGE3 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_ORANGE4MLV_rgba(139,90,0,255)
       Define the ORANGE4 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_ORANGE_REDMLV_rgba(255,69,0,255)
       Define the ORANGE_RED color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_ORANGEREDMLV_rgba(255,69,0,255)
       Define the ORANGERED color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_ORANGERED1MLV_rgba(255,69,0,255)
       Define the ORANGERED1 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_ORANGERED2MLV_rgba(238,64,0,255)
       Define the ORANGERED2 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_ORANGERED3MLV_rgba(205,55,0,255)
       Define the ORANGERED3 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_ORANGERED4MLV_rgba(139,37,0,255)
       Define the ORANGERED4 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_ORCHIDMLV_rgba(218,112,214,255)
       Define the ORCHID color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_ORCHID1MLV_rgba(255,131,250,255)
       Define the ORCHID1 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_ORCHID2MLV_rgba(238,122,233,255)
       Define the ORCHID2 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_ORCHID3MLV_rgba(205,105,201,255)
       Define the ORCHID3 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_ORCHID4MLV_rgba(139,71,137,255)
       Define the ORCHID4 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_PALE_GOLDENRODMLV_rgba(238,232,170,255)
       Define the PALE_GOLDENROD color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_PALE_GREENMLV_rgba(152,251,152,255)
       Define the PALE_GREEN color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_PALE_TURQUOISEMLV_rgba(175,238,238,255)
       Define the PALE_TURQUOISE color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_PALE_VIOLET_REDMLV_rgba(219,112,147,255)
       Define the PALE_VIOLET_RED color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_PALEGOLDENRODMLV_rgba(238,232,170,255)
       Define the PALEGOLDENROD color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_PALEGREENMLV_rgba(152,251,152,255)
       Define the PALEGREEN color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_PALEGREEN1MLV_rgba(154,255,154,255)
       Define the PALEGREEN1 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_PALEGREEN2MLV_rgba(144,238,144,255)
       Define the PALEGREEN2 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_PALEGREEN3MLV_rgba(124,205,124,255)
       Define the PALEGREEN3 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_PALEGREEN4MLV_rgba(84,139,84,255)
       Define the PALEGREEN4 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_PALETURQUOISEMLV_rgba(175,238,238,255)
       Define the PALETURQUOISE color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_PALETURQUOISE1MLV_rgba(187,255,255,255)
       Define the PALETURQUOISE1 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_PALETURQUOISE2MLV_rgba(174,238,238,255)
       Define the PALETURQUOISE2 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_PALETURQUOISE3MLV_rgba(150,205,205,255)
       Define the PALETURQUOISE3 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_PALETURQUOISE4MLV_rgba(102,139,139,255)
       Define the PALETURQUOISE4 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_PALEVIOLETREDMLV_rgba(219,112,147,255)
       Define the PALEVIOLETRED color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_PALEVIOLETRED1MLV_rgba(255,130,171,255)
       Define the PALEVIOLETRED1 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_PALEVIOLETRED2MLV_rgba(238,121,159,255)
       Define the PALEVIOLETRED2 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_PALEVIOLETRED3MLV_rgba(205,104,137,255)
       Define the PALEVIOLETRED3 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_PALEVIOLETRED4MLV_rgba(139,71,93,255)
       Define the PALEVIOLETRED4 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_PAPAYA_WHIPMLV_rgba(255,239,213,255)
       Define the PAPAYA_WHIP color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_PAPAYAWHIPMLV_rgba(255,239,213,255)
       Define the PAPAYAWHIP color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_PEACH_PUFFMLV_rgba(255,218,185,255)
       Define the PEACH_PUFF color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_PEACHPUFFMLV_rgba(255,218,185,255)
       Define the PEACHPUFF color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_PEACHPUFF1MLV_rgba(255,218,185,255)
       Define the PEACHPUFF1 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_PEACHPUFF2MLV_rgba(238,203,173,255)
       Define the PEACHPUFF2 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_PEACHPUFF3MLV_rgba(205,175,149,255)
       Define the PEACHPUFF3 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_PEACHPUFF4MLV_rgba(139,119,101,255)
       Define the PEACHPUFF4 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_PERUMLV_rgba(205,133,63,255)
       Define the PERU color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_PINKMLV_rgba(255,192,203,255)
       Define the PINK color.

       Exemplesbeginner/02_shapes.c, et beginner/09_colors.c.

   #defineMLV_COLOR_PINK1MLV_rgba(255,181,197,255)
       Define the PINK1 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_PINK2MLV_rgba(238,169,184,255)
       Define the PINK2 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_PINK3MLV_rgba(205,145,158,255)
       Define the PINK3 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_PINK4MLV_rgba(139,99,108,255)
       Define the PINK4 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_PLUMMLV_rgba(221,160,221,255)
       Define the PLUM color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_PLUM1MLV_rgba(255,187,255,255)
       Define the PLUM1 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_PLUM2MLV_rgba(238,174,238,255)
       Define the PLUM2 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_PLUM3MLV_rgba(205,150,205,255)
       Define the PLUM3 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_PLUM4MLV_rgba(139,102,139,255)
       Define the PLUM4 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_POWDER_BLUEMLV_rgba(176,224,230,255)
       Define the POWDER_BLUE color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_POWDERBLUEMLV_rgba(176,224,230,255)
       Define the POWDERBLUE color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_PURPLEMLV_rgba(160,32,240,255)
       Define the PURPLE color.

       Exemplesbeginner/02_shapes.c, et beginner/09_colors.c.

   #defineMLV_COLOR_PURPLE1MLV_rgba(155,48,255,255)
       Define the PURPLE1 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_PURPLE2MLV_rgba(145,44,238,255)
       Define the PURPLE2 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_PURPLE3MLV_rgba(125,38,205,255)
       Define the PURPLE3 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_PURPLE4MLV_rgba(85,26,139,255)
       Define the PURPLE4 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_REDMLV_rgba(255,0,0,255)
       Define the RED color.

       Exemplesadvanced/01_texts_and_boxes.c, beginner/02_shapes.c, beginner/04_texts_and_boxes.c,
           beginner/05_mouse.c, beginner/07_input_box.c, beginner/08_mouse_keyboard_input_box_timer.c,
           beginner/09_colors.c, medium/04_events.c, medium/05_exit.c, medium/06_colors.c, et
           medium/08_full_screen.c.

   #defineMLV_COLOR_RED1MLV_rgba(255,0,0,255)
       Define the RED1 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_RED2MLV_rgba(238,0,0,255)
       Define the RED2 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_RED3MLV_rgba(205,0,0,255)
       Define the RED3 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_RED4MLV_rgba(139,0,0,255)
       Define the RED4 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_ROSY_BROWNMLV_rgba(188,143,143,255)
       Define the ROSY_BROWN color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_ROSYBROWNMLV_rgba(188,143,143,255)
       Define the ROSYBROWN color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_ROSYBROWN1MLV_rgba(255,193,193,255)
       Define the ROSYBROWN1 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_ROSYBROWN2MLV_rgba(238,180,180,255)
       Define the ROSYBROWN2 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_ROSYBROWN3MLV_rgba(205,155,155,255)
       Define the ROSYBROWN3 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_ROSYBROWN4MLV_rgba(139,105,105,255)
       Define the ROSYBROWN4 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_ROYAL_BLUEMLV_rgba(65,105,225,255)
       Define the ROYAL_BLUE color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_ROYALBLUEMLV_rgba(65,105,225,255)
       Define the ROYALBLUE color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_ROYALBLUE1MLV_rgba(72,118,255,255)
       Define the ROYALBLUE1 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_ROYALBLUE2MLV_rgba(67,110,238,255)
       Define the ROYALBLUE2 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_ROYALBLUE3MLV_rgba(58,95,205,255)
       Define the ROYALBLUE3 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_ROYALBLUE4MLV_rgba(39,64,139,255)
       Define the ROYALBLUE4 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_SADDLE_BROWNMLV_rgba(139,69,19,255)
       Define the SADDLE_BROWN color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_SADDLEBROWNMLV_rgba(139,69,19,255)
       Define the SADDLEBROWN color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_SALMONMLV_rgba(250,128,114,255)
       Define the SALMON color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_SALMON1MLV_rgba(255,140,105,255)
       Define the SALMON1 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_SALMON2MLV_rgba(238,130,98,255)
       Define the SALMON2 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_SALMON3MLV_rgba(205,112,84,255)
       Define the SALMON3 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_SALMON4MLV_rgba(139,76,57,255)
       Define the SALMON4 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_SANDY_BROWNMLV_rgba(244,164,96,255)
       Define the SANDY_BROWN color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_SANDYBROWNMLV_rgba(244,164,96,255)
       Define the SANDYBROWN color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_SEA_GREENMLV_rgba(46,139,87,255)
       Define the SEA_GREEN color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_SEAGREENMLV_rgba(46,139,87,255)
       Define the SEAGREEN color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_SEAGREEN1MLV_rgba(84,255,159,255)
       Define the SEAGREEN1 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_SEAGREEN2MLV_rgba(78,238,148,255)
       Define the SEAGREEN2 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_SEAGREEN3MLV_rgba(67,205,128,255)
       Define the SEAGREEN3 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_SEAGREEN4MLV_rgba(46,139,87,255)
       Define the SEAGREEN4 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_SEASHELLMLV_rgba(255,245,238,255)
       Define the SEASHELL color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_SEASHELL1MLV_rgba(255,245,238,255)
       Define the SEASHELL1 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_SEASHELL2MLV_rgba(238,229,222,255)
       Define the SEASHELL2 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_SEASHELL3MLV_rgba(205,197,191,255)
       Define the SEASHELL3 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_SEASHELL4MLV_rgba(139,134,130,255)
       Define the SEASHELL4 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_SIENNAMLV_rgba(160,82,45,255)
       Define the SIENNA color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_SIENNA1MLV_rgba(255,130,71,255)
       Define the SIENNA1 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_SIENNA2MLV_rgba(238,121,66,255)
       Define the SIENNA2 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_SIENNA3MLV_rgba(205,104,57,255)
       Define the SIENNA3 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_SIENNA4MLV_rgba(139,71,38,255)
       Define the SIENNA4 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_SKY_BLUEMLV_rgba(135,206,235,255)
       Define the SKY_BLUE color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_SKYBLUEMLV_rgba(135,206,235,255)
       Define the SKYBLUE color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_SKYBLUE1MLV_rgba(135,206,255,255)
       Define the SKYBLUE1 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_SKYBLUE2MLV_rgba(126,192,238,255)
       Define the SKYBLUE2 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_SKYBLUE3MLV_rgba(108,166,205,255)
       Define the SKYBLUE3 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_SKYBLUE4MLV_rgba(74,112,139,255)
       Define the SKYBLUE4 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_SLATE_BLUEMLV_rgba(106,90,205,255)
       Define the SLATE_BLUE color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_SLATE_GRAYMLV_rgba(112,128,144,255)
       Define the SLATE_GRAY color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_SLATE_GREYMLV_rgba(112,128,144,255)
       Define the SLATE_GREY color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_SLATEBLUEMLV_rgba(106,90,205,255)
       Define the SLATEBLUE color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_SLATEBLUE1MLV_rgba(131,111,255,255)
       Define the SLATEBLUE1 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_SLATEBLUE2MLV_rgba(122,103,238,255)
       Define the SLATEBLUE2 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_SLATEBLUE3MLV_rgba(105,89,205,255)
       Define the SLATEBLUE3 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_SLATEBLUE4MLV_rgba(71,60,139,255)
       Define the SLATEBLUE4 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_SLATEGRAYMLV_rgba(112,128,144,255)
       Define the SLATEGRAY color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_SLATEGRAY1MLV_rgba(198,226,255,255)
       Define the SLATEGRAY1 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_SLATEGRAY2MLV_rgba(185,211,238,255)
       Define the SLATEGRAY2 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_SLATEGRAY3MLV_rgba(159,182,205,255)
       Define the SLATEGRAY3 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_SLATEGRAY4MLV_rgba(108,123,139,255)
       Define the SLATEGRAY4 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_SLATEGREYMLV_rgba(112,128,144,255)
       Define the SLATEGREY color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_SNOWMLV_rgba(255,250,250,255)
       Define the SNOW color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_SNOW1MLV_rgba(255,250,250,255)
       Define the SNOW1 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_SNOW2MLV_rgba(238,233,233,255)
       Define the SNOW2 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_SNOW3MLV_rgba(205,201,201,255)
       Define the SNOW3 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_SNOW4MLV_rgba(139,137,137,255)
       Define the SNOW4 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_SPRING_GREENMLV_rgba(0,255,127,255)
       Define the SPRING_GREEN color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_SPRINGGREENMLV_rgba(0,255,127,255)
       Define the SPRINGGREEN color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_SPRINGGREEN1MLV_rgba(0,255,127,255)
       Define the SPRINGGREEN1 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_SPRINGGREEN2MLV_rgba(0,238,118,255)
       Define the SPRINGGREEN2 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_SPRINGGREEN3MLV_rgba(0,205,102,255)
       Define the SPRINGGREEN3 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_SPRINGGREEN4MLV_rgba(0,139,69,255)
       Define the SPRINGGREEN4 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_STEEL_BLUEMLV_rgba(70,130,180,255)
       Define the STEEL_BLUE color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_STEELBLUEMLV_rgba(70,130,180,255)
       Define the STEELBLUE color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_STEELBLUE1MLV_rgba(99,184,255,255)
       Define the STEELBLUE1 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_STEELBLUE2MLV_rgba(92,172,238,255)
       Define the STEELBLUE2 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_STEELBLUE3MLV_rgba(79,148,205,255)
       Define the STEELBLUE3 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_STEELBLUE4MLV_rgba(54,100,139,255)
       Define the STEELBLUE4 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_TANMLV_rgba(210,180,140,255)
       Define the TAN color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_TAN1MLV_rgba(255,165,79,255)
       Define the TAN1 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_TAN2MLV_rgba(238,154,73,255)
       Define the TAN2 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_TAN3MLV_rgba(205,133,63,255)
       Define the TAN3 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_TAN4MLV_rgba(139,90,43,255)
       Define the TAN4 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_THISTLEMLV_rgba(216,191,216,255)
       Define the THISTLE color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_THISTLE1MLV_rgba(255,225,255,255)
       Define the THISTLE1 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_THISTLE2MLV_rgba(238,210,238,255)
       Define the THISTLE2 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_THISTLE3MLV_rgba(205,181,205,255)
       Define the THISTLE3 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_THISTLE4MLV_rgba(139,123,139,255)
       Define the THISTLE4 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_TOMATOMLV_rgba(255,99,71,255)
       Define the TOMATO color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_TOMATO1MLV_rgba(255,99,71,255)
       Define the TOMATO1 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_TOMATO2MLV_rgba(238,92,66,255)
       Define the TOMATO2 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_TOMATO3MLV_rgba(205,79,57,255)
       Define the TOMATO3 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_TOMATO4MLV_rgba(139,54,38,255)
       Define the TOMATO4 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_TURQUOISEMLV_rgba(64,224,208,255)
       Define the TURQUOISE color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_TURQUOISE1MLV_rgba(0,245,255,255)
       Define the TURQUOISE1 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_TURQUOISE2MLV_rgba(0,229,238,255)
       Define the TURQUOISE2 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_TURQUOISE3MLV_rgba(0,197,205,255)
       Define the TURQUOISE3 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_TURQUOISE4MLV_rgba(0,134,139,255)
       Define the TURQUOISE4 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_VIOLETMLV_rgba(238,130,238,255)
       Define the VIOLET color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_VIOLET_REDMLV_rgba(208,32,144,255)
       Define the VIOLET_RED color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_VIOLETREDMLV_rgba(208,32,144,255)
       Define the VIOLETRED color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_VIOLETRED1MLV_rgba(255,62,150,255)
       Define the VIOLETRED1 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_VIOLETRED2MLV_rgba(238,58,140,255)
       Define the VIOLETRED2 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_VIOLETRED3MLV_rgba(205,50,120,255)
       Define the VIOLETRED3 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_VIOLETRED4MLV_rgba(139,34,82,255)
       Define the VIOLETRED4 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_WHEATMLV_rgba(245,222,179,255)
       Define the WHEAT color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_WHEAT1MLV_rgba(255,231,186,255)
       Define the WHEAT1 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_WHEAT2MLV_rgba(238,216,174,255)
       Define the WHEAT2 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_WHEAT3MLV_rgba(205,186,150,255)
       Define the WHEAT3 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_WHEAT4MLV_rgba(139,126,102,255)
       Define the WHEAT4 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_WHITEMLV_rgba(255,255,255,255)
       Define the WHITE color.

       Exemplesbeginner/02_shapes.c, et beginner/09_colors.c.

   #defineMLV_COLOR_WHITE_SMOKEMLV_rgba(245,245,245,255)
       Define the WHITE_SMOKE color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_WHITESMOKEMLV_rgba(245,245,245,255)
       Define the WHITESMOKE color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_YELLOWMLV_rgba(255,255,0,255)
       Define the YELLOW color.

       Exemplesadvanced/09_animation.c, beginner/02_shapes.c, beginner/09_colors.c, et medium/08_full_screen.c.

   #defineMLV_COLOR_YELLOW1MLV_rgba(255,255,0,255)
       Define the YELLOW1 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_YELLOW2MLV_rgba(238,238,0,255)
       Define the YELLOW2 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_YELLOW3MLV_rgba(205,205,0,255)
       Define the YELLOW3 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_YELLOW4MLV_rgba(139,139,0,255)
       Define the YELLOW4 color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_YELLOW_GREENMLV_rgba(154,205,50,255)
       Define the YELLOW_GREEN color.

       Exemplesbeginner/09_colors.c.

   #defineMLV_COLOR_YELLOWGREENMLV_rgba(154,205,50,255)
       Define the YELLOWGREEN color.

       Exemplesbeginner/09_colors.c.

Name

       MLV_color.h - Définit toutes les couleurs disponibles dans la bibliothèque MLV.

Synopsis

Macros
       #define MLV_COLOR_SNOWMLV_rgba(255,250,250,255)
       #define MLV_COLOR_GHOST_WHITEMLV_rgba(248,248,255,255)
       #define MLV_COLOR_GHOSTWHITEMLV_rgba(248,248,255,255)
       #define MLV_COLOR_WHITE_SMOKEMLV_rgba(245,245,245,255)
       #define MLV_COLOR_WHITESMOKEMLV_rgba(245,245,245,255)
       #define MLV_COLOR_GAINSBOROMLV_rgba(220,220,220,255)
       #define MLV_COLOR_FLORAL_WHITEMLV_rgba(255,250,240,255)
       #define MLV_COLOR_FLORALWHITEMLV_rgba(255,250,240,255)
       #define MLV_COLOR_OLD_LACEMLV_rgba(253,245,230,255)
       #define MLV_COLOR_OLDLACEMLV_rgba(253,245,230,255)
       #define MLV_COLOR_LINENMLV_rgba(250,240,230,255)
       #define MLV_COLOR_ANTIQUE_WHITEMLV_rgba(250,235,215,255)
       #define MLV_COLOR_ANTIQUEWHITEMLV_rgba(250,235,215,255)
       #define MLV_COLOR_PAPAYA_WHIPMLV_rgba(255,239,213,255)
       #define MLV_COLOR_PAPAYAWHIPMLV_rgba(255,239,213,255)
       #define MLV_COLOR_BLANCHED_ALMONDMLV_rgba(255,235,205,255)
       #define MLV_COLOR_BLANCHEDALMONDMLV_rgba(255,235,205,255)
       #define MLV_COLOR_BISQUEMLV_rgba(255,228,196,255)
       #define MLV_COLOR_PEACH_PUFFMLV_rgba(255,218,185,255)
       #define MLV_COLOR_PEACHPUFFMLV_rgba(255,218,185,255)
       #define MLV_COLOR_NAVAJO_WHITEMLV_rgba(255,222,173,255)
       #define MLV_COLOR_NAVAJOWHITEMLV_rgba(255,222,173,255)
       #define MLV_COLOR_MOCCASINMLV_rgba(255,228,181,255)
       #define MLV_COLOR_CORNSILKMLV_rgba(255,248,220,255)
       #define MLV_COLOR_IVORYMLV_rgba(255,255,240,255)
       #define MLV_COLOR_LEMON_CHIFFONMLV_rgba(255,250,205,255)
       #define MLV_COLOR_LEMONCHIFFONMLV_rgba(255,250,205,255)
       #define MLV_COLOR_SEASHELLMLV_rgba(255,245,238,255)
       #define MLV_COLOR_HONEYDEWMLV_rgba(240,255,240,255)
       #define MLV_COLOR_MINT_CREAMMLV_rgba(245,255,250,255)
       #define MLV_COLOR_MINTCREAMMLV_rgba(245,255,250,255)
       #define MLV_COLOR_AZUREMLV_rgba(240,255,255,255)
       #define MLV_COLOR_ALICE_BLUEMLV_rgba(240,248,255,255)
       #define MLV_COLOR_ALICEBLUEMLV_rgba(240,248,255,255)
       #define MLV_COLOR_LAVENDERMLV_rgba(230,230,250,255)
       #define MLV_COLOR_LAVENDER_BLUSHMLV_rgba(255,240,245,255)
       #define MLV_COLOR_LAVENDERBLUSHMLV_rgba(255,240,245,255)
       #define MLV_COLOR_MISTY_ROSEMLV_rgba(255,228,225,255)
       #define MLV_COLOR_MISTYROSEMLV_rgba(255,228,225,255)
       #define MLV_COLOR_WHITEMLV_rgba(255,255,255,255)
       #define MLV_COLOR_BLACKMLV_rgba(0,0,0,255)
       #define MLV_COLOR_DARK_SLATE_GRAYMLV_rgba(47,79,79,255)
       #define MLV_COLOR_DARKSLATEGRAYMLV_rgba(47,79,79,255)
       #define MLV_COLOR_DARK_SLATE_GREYMLV_rgba(47,79,79,255)
       #define MLV_COLOR_DARKSLATEGREYMLV_rgba(47,79,79,255)
       #define MLV_COLOR_DIM_GRAYMLV_rgba(105,105,105,255)
       #define MLV_COLOR_DIMGRAYMLV_rgba(105,105,105,255)
       #define MLV_COLOR_DIM_GREYMLV_rgba(105,105,105,255)
       #define MLV_COLOR_DIMGREYMLV_rgba(105,105,105,255)
       #define MLV_COLOR_SLATE_GRAYMLV_rgba(112,128,144,255)
       #define MLV_COLOR_SLATEGRAYMLV_rgba(112,128,144,255)
       #define MLV_COLOR_SLATE_GREYMLV_rgba(112,128,144,255)
       #define MLV_COLOR_SLATEGREYMLV_rgba(112,128,144,255)
       #define MLV_COLOR_LIGHT_SLATE_GRAYMLV_rgba(119,136,153,255)
       #define MLV_COLOR_LIGHTSLATEGRAYMLV_rgba(119,136,153,255)
       #define MLV_COLOR_LIGHT_SLATE_GREYMLV_rgba(119,136,153,255)
       #define MLV_COLOR_LIGHTSLATEGREYMLV_rgba(119,136,153,255)
       #define MLV_COLOR_GRAYMLV_rgba(190,190,190,255)
       #define MLV_COLOR_GREYMLV_rgba(190,190,190,255)
       #define MLV_COLOR_LIGHT_GREYMLV_rgba(211,211,211,255)
       #define MLV_COLOR_LIGHTGREYMLV_rgba(211,211,211,255)
       #define MLV_COLOR_LIGHT_GRAYMLV_rgba(211,211,211,255)
       #define MLV_COLOR_LIGHTGRAYMLV_rgba(211,211,211,255)
       #define MLV_COLOR_MIDNIGHT_BLUEMLV_rgba(25,25,112,255)
       #define MLV_COLOR_MIDNIGHTBLUEMLV_rgba(25,25,112,255)
       #define MLV_COLOR_NAVYMLV_rgba(0,0,128,255)
       #define MLV_COLOR_NAVY_BLUEMLV_rgba(0,0,128,255)
       #define MLV_COLOR_NAVYBLUEMLV_rgba(0,0,128,255)
       #define MLV_COLOR_CORNFLOWER_BLUEMLV_rgba(100,149,237,255)
       #define MLV_COLOR_CORNFLOWERBLUEMLV_rgba(100,149,237,255)
       #define MLV_COLOR_DARK_SLATE_BLUEMLV_rgba(72,61,139,255)
       #define MLV_COLOR_DARKSLATEBLUEMLV_rgba(72,61,139,255)
       #define MLV_COLOR_SLATE_BLUEMLV_rgba(106,90,205,255)
       #define MLV_COLOR_SLATEBLUEMLV_rgba(106,90,205,255)
       #define MLV_COLOR_MEDIUM_SLATE_BLUEMLV_rgba(123,104,238,255)
       #define MLV_COLOR_MEDIUMSLATEBLUEMLV_rgba(123,104,238,255)
       #define MLV_COLOR_LIGHT_SLATE_BLUEMLV_rgba(132,112,255,255)
       #define MLV_COLOR_LIGHTSLATEBLUEMLV_rgba(132,112,255,255)
       #define MLV_COLOR_MEDIUM_BLUEMLV_rgba(0,0,205,255)
       #define MLV_COLOR_MEDIUMBLUEMLV_rgba(0,0,205,255)
       #define MLV_COLOR_ROYAL_BLUEMLV_rgba(65,105,225,255)
       #define MLV_COLOR_ROYALBLUEMLV_rgba(65,105,225,255)
       #define MLV_COLOR_BLUEMLV_rgba(0,0,255,255)
       #define MLV_COLOR_DODGER_BLUEMLV_rgba(30,144,255,255)
       #define MLV_COLOR_DODGERBLUEMLV_rgba(30,144,255,255)
       #define MLV_COLOR_DEEP_SKY_BLUEMLV_rgba(0,191,255,255)
       #define MLV_COLOR_DEEPSKYBLUEMLV_rgba(0,191,255,255)
       #define MLV_COLOR_SKY_BLUEMLV_rgba(135,206,235,255)
       #define MLV_COLOR_SKYBLUEMLV_rgba(135,206,235,255)
       #define MLV_COLOR_LIGHT_SKY_BLUEMLV_rgba(135,206,250,255)
       #define MLV_COLOR_LIGHTSKYBLUEMLV_rgba(135,206,250,255)
       #define MLV_COLOR_STEEL_BLUEMLV_rgba(70,130,180,255)
       #define MLV_COLOR_STEELBLUEMLV_rgba(70,130,180,255)
       #define MLV_COLOR_LIGHT_STEEL_BLUEMLV_rgba(176,196,222,255)
       #define MLV_COLOR_LIGHTSTEELBLUEMLV_rgba(176,196,222,255)
       #define MLV_COLOR_LIGHT_BLUEMLV_rgba(173,216,230,255)
       #define MLV_COLOR_LIGHTBLUEMLV_rgba(173,216,230,255)
       #define MLV_COLOR_POWDER_BLUEMLV_rgba(176,224,230,255)
       #define MLV_COLOR_POWDERBLUEMLV_rgba(176,224,230,255)
       #define MLV_COLOR_PALE_TURQUOISEMLV_rgba(175,238,238,255)
       #define MLV_COLOR_PALETURQUOISEMLV_rgba(175,238,238,255)
       #define MLV_COLOR_DARK_TURQUOISEMLV_rgba(0,206,209,255)
       #define MLV_COLOR_DARKTURQUOISEMLV_rgba(0,206,209,255)
       #define MLV_COLOR_MEDIUM_TURQUOISEMLV_rgba(72,209,204,255)
       #define MLV_COLOR_MEDIUMTURQUOISEMLV_rgba(72,209,204,255)
       #define MLV_COLOR_TURQUOISEMLV_rgba(64,224,208,255)
       #define MLV_COLOR_CYANMLV_rgba(0,255,255,255)
       #define MLV_COLOR_LIGHT_CYANMLV_rgba(224,255,255,255)
       #define MLV_COLOR_LIGHTCYANMLV_rgba(224,255,255,255)
       #define MLV_COLOR_CADET_BLUEMLV_rgba(95,158,160,255)
       #define MLV_COLOR_CADETBLUEMLV_rgba(95,158,160,255)
       #define MLV_COLOR_MEDIUM_AQUAMARINEMLV_rgba(102,205,170,255)
       #define MLV_COLOR_MEDIUMAQUAMARINEMLV_rgba(102,205,170,255)
       #define MLV_COLOR_AQUAMARINEMLV_rgba(127,255,212,255)
       #define MLV_COLOR_DARK_GREENMLV_rgba(0,100,0,255)
       #define MLV_COLOR_DARKGREENMLV_rgba(0,100,0,255)
       #define MLV_COLOR_DARK_OLIVE_GREENMLV_rgba(85,107,47,255)
       #define MLV_COLOR_DARKOLIVEGREENMLV_rgba(85,107,47,255)
       #define MLV_COLOR_DARK_SEA_GREENMLV_rgba(143,188,143,255)
       #define MLV_COLOR_DARKSEAGREENMLV_rgba(143,188,143,255)
       #define MLV_COLOR_SEA_GREENMLV_rgba(46,139,87,255)
       #define MLV_COLOR_SEAGREENMLV_rgba(46,139,87,255)
       #define MLV_COLOR_MEDIUM_SEA_GREENMLV_rgba(60,179,113,255)
       #define MLV_COLOR_MEDIUMSEAGREENMLV_rgba(60,179,113,255)
       #define MLV_COLOR_LIGHT_SEA_GREENMLV_rgba(32,178,170,255)
       #define MLV_COLOR_LIGHTSEAGREENMLV_rgba(32,178,170,255)
       #define MLV_COLOR_PALE_GREENMLV_rgba(152,251,152,255)
       #define MLV_COLOR_PALEGREENMLV_rgba(152,251,152,255)
       #define MLV_COLOR_SPRING_GREENMLV_rgba(0,255,127,255)
       #define MLV_COLOR_SPRINGGREENMLV_rgba(0,255,127,255)
       #define MLV_COLOR_LAWN_GREENMLV_rgba(124,252,0,255)
       #define MLV_COLOR_LAWNGREENMLV_rgba(124,252,0,255)
       #define MLV_COLOR_GREENMLV_rgba(0,255,0,255)
       #define MLV_COLOR_CHARTREUSEMLV_rgba(127,255,0,255)
       #define MLV_COLOR_MEDIUM_SPRING_GREENMLV_rgba(0,250,154,255)
       #define MLV_COLOR_MEDIUMSPRINGGREENMLV_rgba(0,250,154,255)
       #define MLV_COLOR_GREEN_YELLOWMLV_rgba(173,255,47,255)
       #define MLV_COLOR_GREENYELLOWMLV_rgba(173,255,47,255)
       #define MLV_COLOR_LIME_GREENMLV_rgba(50,205,50,255)
       #define MLV_COLOR_LIMEGREENMLV_rgba(50,205,50,255)
       #define MLV_COLOR_YELLOW_GREENMLV_rgba(154,205,50,255)
       #define MLV_COLOR_YELLOWGREENMLV_rgba(154,205,50,255)
       #define MLV_COLOR_FOREST_GREENMLV_rgba(34,139,34,255)
       #define MLV_COLOR_FORESTGREENMLV_rgba(34,139,34,255)
       #define MLV_COLOR_OLIVE_DRABMLV_rgba(107,142,35,255)
       #define MLV_COLOR_OLIVEDRABMLV_rgba(107,142,35,255)
       #define MLV_COLOR_DARK_KHAKIMLV_rgba(189,183,107,255)
       #define MLV_COLOR_DARKKHAKIMLV_rgba(189,183,107,255)
       #define MLV_COLOR_KHAKIMLV_rgba(240,230,140,255)
       #define MLV_COLOR_PALE_GOLDENRODMLV_rgba(238,232,170,255)
       #define MLV_COLOR_PALEGOLDENRODMLV_rgba(238,232,170,255)
       #define MLV_COLOR_LIGHT_GOLDENROD_YELLOWMLV_rgba(250,250,210,255)
       #define MLV_COLOR_LIGHTGOLDENRODYELLOWMLV_rgba(250,250,210,255)
       #define MLV_COLOR_LIGHT_YELLOWMLV_rgba(255,255,224,255)
       #define MLV_COLOR_LIGHTYELLOWMLV_rgba(255,255,224,255)
       #define MLV_COLOR_YELLOWMLV_rgba(255,255,0,255)
       #define MLV_COLOR_GOLDMLV_rgba(255,215,0,255)
       #define MLV_COLOR_LIGHT_GOLDENRODMLV_rgba(238,221,130,255)
       #define MLV_COLOR_LIGHTGOLDENRODMLV_rgba(238,221,130,255)
       #define MLV_COLOR_GOLDENRODMLV_rgba(218,165,32,255)
       #define MLV_COLOR_DARK_GOLDENRODMLV_rgba(184,134,11,255)
       #define MLV_COLOR_DARKGOLDENRODMLV_rgba(184,134,11,255)
       #define MLV_COLOR_ROSY_BROWNMLV_rgba(188,143,143,255)
       #define MLV_COLOR_ROSYBROWNMLV_rgba(188,143,143,255)
       #define MLV_COLOR_INDIAN_REDMLV_rgba(205,92,92,255)
       #define MLV_COLOR_INDIANREDMLV_rgba(205,92,92,255)
       #define MLV_COLOR_SADDLE_BROWNMLV_rgba(139,69,19,255)
       #define MLV_COLOR_SADDLEBROWNMLV_rgba(139,69,19,255)
       #define MLV_COLOR_SIENNAMLV_rgba(160,82,45,255)
       #define MLV_COLOR_PERUMLV_rgba(205,133,63,255)
       #define MLV_COLOR_BURLYWOODMLV_rgba(222,184,135,255)
       #define MLV_COLOR_BEIGEMLV_rgba(245,245,220,255)
       #define MLV_COLOR_WHEATMLV_rgba(245,222,179,255)
       #define MLV_COLOR_SANDY_BROWNMLV_rgba(244,164,96,255)
       #define MLV_COLOR_SANDYBROWNMLV_rgba(244,164,96,255)
       #define MLV_COLOR_TANMLV_rgba(210,180,140,255)
       #define MLV_COLOR_CHOCOLATEMLV_rgba(210,105,30,255)
       #define MLV_COLOR_FIREBRICKMLV_rgba(178,34,34,255)
       #define MLV_COLOR_BROWNMLV_rgba(165,42,42,255)
       #define MLV_COLOR_DARK_SALMONMLV_rgba(233,150,122,255)
       #define MLV_COLOR_DARKSALMONMLV_rgba(233,150,122,255)
       #define MLV_COLOR_SALMONMLV_rgba(250,128,114,255)
       #define MLV_COLOR_LIGHT_SALMONMLV_rgba(255,160,122,255)
       #define MLV_COLOR_LIGHTSALMONMLV_rgba(255,160,122,255)
       #define MLV_COLOR_ORANGEMLV_rgba(255,165,0,255)
       #define MLV_COLOR_DARK_ORANGEMLV_rgba(255,140,0,255)
       #define MLV_COLOR_DARKORANGEMLV_rgba(255,140,0,255)
       #define MLV_COLOR_CORALMLV_rgba(255,127,80,255)
       #define MLV_COLOR_LIGHT_CORALMLV_rgba(240,128,128,255)
       #define MLV_COLOR_LIGHTCORALMLV_rgba(240,128,128,255)
       #define MLV_COLOR_TOMATOMLV_rgba(255,99,71,255)
       #define MLV_COLOR_ORANGE_REDMLV_rgba(255,69,0,255)
       #define MLV_COLOR_ORANGEREDMLV_rgba(255,69,0,255)
       #define MLV_COLOR_REDMLV_rgba(255,0,0,255)
       #define MLV_COLOR_HOT_PINKMLV_rgba(255,105,180,255)
       #define MLV_COLOR_HOTPINKMLV_rgba(255,105,180,255)
       #define MLV_COLOR_DEEP_PINKMLV_rgba(255,20,147,255)
       #define MLV_COLOR_DEEPPINKMLV_rgba(255,20,147,255)
       #define MLV_COLOR_PINKMLV_rgba(255,192,203,255)
       #define MLV_COLOR_LIGHT_PINKMLV_rgba(255,182,193,255)
       #define MLV_COLOR_LIGHTPINKMLV_rgba(255,182,193,255)
       #define MLV_COLOR_PALE_VIOLET_REDMLV_rgba(219,112,147,255)
       #define MLV_COLOR_PALEVIOLETREDMLV_rgba(219,112,147,255)
       #define MLV_COLOR_MAROONMLV_rgba(176,48,96,255)
       #define MLV_COLOR_MEDIUM_VIOLET_REDMLV_rgba(199,21,133,255)
       #define MLV_COLOR_MEDIUMVIOLETREDMLV_rgba(199,21,133,255)
       #define MLV_COLOR_VIOLET_REDMLV_rgba(208,32,144,255)
       #define MLV_COLOR_VIOLETREDMLV_rgba(208,32,144,255)
       #define MLV_COLOR_MAGENTAMLV_rgba(255,0,255,255)
       #define MLV_COLOR_VIOLETMLV_rgba(238,130,238,255)
       #define MLV_COLOR_PLUMMLV_rgba(221,160,221,255)
       #define MLV_COLOR_ORCHIDMLV_rgba(218,112,214,255)
       #define MLV_COLOR_MEDIUM_ORCHIDMLV_rgba(186,85,211,255)
       #define MLV_COLOR_MEDIUMORCHIDMLV_rgba(186,85,211,255)
       #define MLV_COLOR_DARK_ORCHIDMLV_rgba(153,50,204,255)
       #define MLV_COLOR_DARKORCHIDMLV_rgba(153,50,204,255)
       #define MLV_COLOR_DARK_VIOLETMLV_rgba(148,0,211,255)
       #define MLV_COLOR_DARKVIOLETMLV_rgba(148,0,211,255)
       #define MLV_COLOR_BLUE_VIOLETMLV_rgba(138,43,226,255)
       #define MLV_COLOR_BLUEVIOLETMLV_rgba(138,43,226,255)
       #define MLV_COLOR_PURPLEMLV_rgba(160,32,240,255)
       #define MLV_COLOR_MEDIUM_PURPLEMLV_rgba(147,112,219,255)
       #define MLV_COLOR_MEDIUMPURPLEMLV_rgba(147,112,219,255)
       #define MLV_COLOR_THISTLEMLV_rgba(216,191,216,255)
       #define MLV_COLOR_SNOW1MLV_rgba(255,250,250,255)
       #define MLV_COLOR_SNOW2MLV_rgba(238,233,233,255)
       #define MLV_COLOR_SNOW3MLV_rgba(205,201,201,255)
       #define MLV_COLOR_SNOW4MLV_rgba(139,137,137,255)
       #define MLV_COLOR_SEASHELL1MLV_rgba(255,245,238,255)
       #define MLV_COLOR_SEASHELL2MLV_rgba(238,229,222,255)
       #define MLV_COLOR_SEASHELL3MLV_rgba(205,197,191,255)
       #define MLV_COLOR_SEASHELL4MLV_rgba(139,134,130,255)
       #define MLV_COLOR_ANTIQUEWHITE1MLV_rgba(255,239,219,255)
       #define MLV_COLOR_ANTIQUEWHITE2MLV_rgba(238,223,204,255)
       #define MLV_COLOR_ANTIQUEWHITE3MLV_rgba(205,192,176,255)
       #define MLV_COLOR_ANTIQUEWHITE4MLV_rgba(139,131,120,255)
       #define MLV_COLOR_BISQUE1MLV_rgba(255,228,196,255)
       #define MLV_COLOR_BISQUE2MLV_rgba(238,213,183,255)
       #define MLV_COLOR_BISQUE3MLV_rgba(205,183,158,255)
       #define MLV_COLOR_BISQUE4MLV_rgba(139,125,107,255)
       #define MLV_COLOR_PEACHPUFF1MLV_rgba(255,218,185,255)
       #define MLV_COLOR_PEACHPUFF2MLV_rgba(238,203,173,255)
       #define MLV_COLOR_PEACHPUFF3MLV_rgba(205,175,149,255)
       #define MLV_COLOR_PEACHPUFF4MLV_rgba(139,119,101,255)
       #define MLV_COLOR_NAVAJOWHITE1MLV_rgba(255,222,173,255)
       #define MLV_COLOR_NAVAJOWHITE2MLV_rgba(238,207,161,255)
       #define MLV_COLOR_NAVAJOWHITE3MLV_rgba(205,179,139,255)
       #define MLV_COLOR_NAVAJOWHITE4MLV_rgba(139,121,94,255)
       #define MLV_COLOR_LEMONCHIFFON1MLV_rgba(255,250,205,255)
       #define MLV_COLOR_LEMONCHIFFON2MLV_rgba(238,233,191,255)
       #define MLV_COLOR_LEMONCHIFFON3MLV_rgba(205,201,165,255)
       #define MLV_COLOR_LEMONCHIFFON4MLV_rgba(139,137,112,255)
       #define MLV_COLOR_CORNSILK1MLV_rgba(255,248,220,255)
       #define MLV_COLOR_CORNSILK2MLV_rgba(238,232,205,255)
       #define MLV_COLOR_CORNSILK3MLV_rgba(205,200,177,255)
       #define MLV_COLOR_CORNSILK4MLV_rgba(139,136,120,255)
       #define MLV_COLOR_IVORY1MLV_rgba(255,255,240,255)
       #define MLV_COLOR_IVORY2MLV_rgba(238,238,224,255)
       #define MLV_COLOR_IVORY3MLV_rgba(205,205,193,255)
       #define MLV_COLOR_IVORY4MLV_rgba(139,139,131,255)
       #define MLV_COLOR_HONEYDEW1MLV_rgba(240,255,240,255)
       #define MLV_COLOR_HONEYDEW2MLV_rgba(224,238,224,255)
       #define MLV_COLOR_HONEYDEW3MLV_rgba(193,205,193,255)
       #define MLV_COLOR_HONEYDEW4MLV_rgba(131,139,131,255)
       #define MLV_COLOR_LAVENDERBLUSH1MLV_rgba(255,240,245,255)
       #define MLV_COLOR_LAVENDERBLUSH2MLV_rgba(238,224,229,255)
       #define MLV_COLOR_LAVENDERBLUSH3MLV_rgba(205,193,197,255)
       #define MLV_COLOR_LAVENDERBLUSH4MLV_rgba(139,131,134,255)
       #define MLV_COLOR_MISTYROSE1MLV_rgba(255,228,225,255)
       #define MLV_COLOR_MISTYROSE2MLV_rgba(238,213,210,255)
       #define MLV_COLOR_MISTYROSE3MLV_rgba(205,183,181,255)
       #define MLV_COLOR_MISTYROSE4MLV_rgba(139,125,123,255)
       #define MLV_COLOR_AZURE1MLV_rgba(240,255,255,255)
       #define MLV_COLOR_AZURE2MLV_rgba(224,238,238,255)
       #define MLV_COLOR_AZURE3MLV_rgba(193,205,205,255)
       #define MLV_COLOR_AZURE4MLV_rgba(131,139,139,255)
       #define MLV_COLOR_SLATEBLUE1MLV_rgba(131,111,255,255)
       #define MLV_COLOR_SLATEBLUE2MLV_rgba(122,103,238,255)
       #define MLV_COLOR_SLATEBLUE3MLV_rgba(105,89,205,255)
       #define MLV_COLOR_SLATEBLUE4MLV_rgba(71,60,139,255)
       #define MLV_COLOR_ROYALBLUE1MLV_rgba(72,118,255,255)
       #define MLV_COLOR_ROYALBLUE2MLV_rgba(67,110,238,255)
       #define MLV_COLOR_ROYALBLUE3MLV_rgba(58,95,205,255)
       #define MLV_COLOR_ROYALBLUE4MLV_rgba(39,64,139,255)
       #define MLV_COLOR_BLUE1MLV_rgba(0,0,255,255)
       #define MLV_COLOR_BLUE2MLV_rgba(0,0,238,255)
       #define MLV_COLOR_BLUE3MLV_rgba(0,0,205,255)
       #define MLV_COLOR_BLUE4MLV_rgba(0,0,139,255)
       #define MLV_COLOR_DODGERBLUE1MLV_rgba(30,144,255,255)
       #define MLV_COLOR_DODGERBLUE2MLV_rgba(28,134,238,255)
       #define MLV_COLOR_DODGERBLUE3MLV_rgba(24,116,205,255)
       #define MLV_COLOR_DODGERBLUE4MLV_rgba(16,78,139,255)
       #define MLV_COLOR_STEELBLUE1MLV_rgba(99,184,255,255)
       #define MLV_COLOR_STEELBLUE2MLV_rgba(92,172,238,255)
       #define MLV_COLOR_STEELBLUE3MLV_rgba(79,148,205,255)
       #define MLV_COLOR_STEELBLUE4MLV_rgba(54,100,139,255)
       #define MLV_COLOR_DEEPSKYBLUE1MLV_rgba(0,191,255,255)
       #define MLV_COLOR_DEEPSKYBLUE2MLV_rgba(0,178,238,255)
       #define MLV_COLOR_DEEPSKYBLUE3MLV_rgba(0,154,205,255)
       #define MLV_COLOR_DEEPSKYBLUE4MLV_rgba(0,104,139,255)
       #define MLV_COLOR_SKYBLUE1MLV_rgba(135,206,255,255)
       #define MLV_COLOR_SKYBLUE2MLV_rgba(126,192,238,255)
       #define MLV_COLOR_SKYBLUE3MLV_rgba(108,166,205,255)
       #define MLV_COLOR_SKYBLUE4MLV_rgba(74,112,139,255)
       #define MLV_COLOR_LIGHTSKYBLUE1MLV_rgba(176,226,255,255)
       #define MLV_COLOR_LIGHTSKYBLUE2MLV_rgba(164,211,238,255)
       #define MLV_COLOR_LIGHTSKYBLUE3MLV_rgba(141,182,205,255)
       #define MLV_COLOR_LIGHTSKYBLUE4MLV_rgba(96,123,139,255)
       #define MLV_COLOR_SLATEGRAY1MLV_rgba(198,226,255,255)
       #define MLV_COLOR_SLATEGRAY2MLV_rgba(185,211,238,255)
       #define MLV_COLOR_SLATEGRAY3MLV_rgba(159,182,205,255)
       #define MLV_COLOR_SLATEGRAY4MLV_rgba(108,123,139,255)
       #define MLV_COLOR_LIGHTSTEELBLUE1MLV_rgba(202,225,255,255)
       #define MLV_COLOR_LIGHTSTEELBLUE2MLV_rgba(188,210,238,255)
       #define MLV_COLOR_LIGHTSTEELBLUE3MLV_rgba(162,181,205,255)
       #define MLV_COLOR_LIGHTSTEELBLUE4MLV_rgba(110,123,139,255)
       #define MLV_COLOR_LIGHTBLUE1MLV_rgba(191,239,255,255)
       #define MLV_COLOR_LIGHTBLUE2MLV_rgba(178,223,238,255)
       #define MLV_COLOR_LIGHTBLUE3MLV_rgba(154,192,205,255)
       #define MLV_COLOR_LIGHTBLUE4MLV_rgba(104,131,139,255)
       #define MLV_COLOR_LIGHTCYAN1MLV_rgba(224,255,255,255)
       #define MLV_COLOR_LIGHTCYAN2MLV_rgba(209,238,238,255)
       #define MLV_COLOR_LIGHTCYAN3MLV_rgba(180,205,205,255)
       #define MLV_COLOR_LIGHTCYAN4MLV_rgba(122,139,139,255)
       #define MLV_COLOR_PALETURQUOISE1MLV_rgba(187,255,255,255)
       #define MLV_COLOR_PALETURQUOISE2MLV_rgba(174,238,238,255)
       #define MLV_COLOR_PALETURQUOISE3MLV_rgba(150,205,205,255)
       #define MLV_COLOR_PALETURQUOISE4MLV_rgba(102,139,139,255)
       #define MLV_COLOR_CADETBLUE1MLV_rgba(152,245,255,255)
       #define MLV_COLOR_CADETBLUE2MLV_rgba(142,229,238,255)
       #define MLV_COLOR_CADETBLUE3MLV_rgba(122,197,205,255)
       #define MLV_COLOR_CADETBLUE4MLV_rgba(83,134,139,255)
       #define MLV_COLOR_TURQUOISE1MLV_rgba(0,245,255,255)
       #define MLV_COLOR_TURQUOISE2MLV_rgba(0,229,238,255)
       #define MLV_COLOR_TURQUOISE3MLV_rgba(0,197,205,255)
       #define MLV_COLOR_TURQUOISE4MLV_rgba(0,134,139,255)
       #define MLV_COLOR_CYAN1MLV_rgba(0,255,255,255)
       #define MLV_COLOR_CYAN2MLV_rgba(0,238,238,255)
       #define MLV_COLOR_CYAN3MLV_rgba(0,205,205,255)
       #define MLV_COLOR_CYAN4MLV_rgba(0,139,139,255)
       #define MLV_COLOR_DARKSLATEGRAY1MLV_rgba(151,255,255,255)
       #define MLV_COLOR_DARKSLATEGRAY2MLV_rgba(141,238,238,255)
       #define MLV_COLOR_DARKSLATEGRAY3MLV_rgba(121,205,205,255)
       #define MLV_COLOR_DARKSLATEGRAY4MLV_rgba(82,139,139,255)
       #define MLV_COLOR_AQUAMARINE1MLV_rgba(127,255,212,255)
       #define MLV_COLOR_AQUAMARINE2MLV_rgba(118,238,198,255)
       #define MLV_COLOR_AQUAMARINE3MLV_rgba(102,205,170,255)
       #define MLV_COLOR_AQUAMARINE4MLV_rgba(69,139,116,255)
       #define MLV_COLOR_DARKSEAGREEN1MLV_rgba(193,255,193,255)
       #define MLV_COLOR_DARKSEAGREEN2MLV_rgba(180,238,180,255)
       #define MLV_COLOR_DARKSEAGREEN3MLV_rgba(155,205,155,255)
       #define MLV_COLOR_DARKSEAGREEN4MLV_rgba(105,139,105,255)
       #define MLV_COLOR_SEAGREEN1MLV_rgba(84,255,159,255)
       #define MLV_COLOR_SEAGREEN2MLV_rgba(78,238,148,255)
       #define MLV_COLOR_SEAGREEN3MLV_rgba(67,205,128,255)
       #define MLV_COLOR_SEAGREEN4MLV_rgba(46,139,87,255)
       #define MLV_COLOR_PALEGREEN1MLV_rgba(154,255,154,255)
       #define MLV_COLOR_PALEGREEN2MLV_rgba(144,238,144,255)
       #define MLV_COLOR_PALEGREEN3MLV_rgba(124,205,124,255)
       #define MLV_COLOR_PALEGREEN4MLV_rgba(84,139,84,255)
       #define MLV_COLOR_SPRINGGREEN1MLV_rgba(0,255,127,255)
       #define MLV_COLOR_SPRINGGREEN2MLV_rgba(0,238,118,255)
       #define MLV_COLOR_SPRINGGREEN3MLV_rgba(0,205,102,255)
       #define MLV_COLOR_SPRINGGREEN4MLV_rgba(0,139,69,255)
       #define MLV_COLOR_GREEN1MLV_rgba(0,255,0,255)
       #define MLV_COLOR_GREEN2MLV_rgba(0,238,0,255)
       #define MLV_COLOR_GREEN3MLV_rgba(0,205,0,255)
       #define MLV_COLOR_GREEN4MLV_rgba(0,139,0,255)
       #define MLV_COLOR_CHARTREUSE1MLV_rgba(127,255,0,255)
       #define MLV_COLOR_CHARTREUSE2MLV_rgba(118,238,0,255)
       #define MLV_COLOR_CHARTREUSE3MLV_rgba(102,205,0,255)
       #define MLV_COLOR_CHARTREUSE4MLV_rgba(69,139,0,255)
       #define MLV_COLOR_OLIVEDRAB1MLV_rgba(192,255,62,255)
       #define MLV_COLOR_OLIVEDRAB2MLV_rgba(179,238,58,255)
       #define MLV_COLOR_OLIVEDRAB3MLV_rgba(154,205,50,255)
       #define MLV_COLOR_OLIVEDRAB4MLV_rgba(105,139,34,255)
       #define MLV_COLOR_DARKOLIVEGREEN1MLV_rgba(202,255,112,255)
       #define MLV_COLOR_DARKOLIVEGREEN2MLV_rgba(188,238,104,255)
       #define MLV_COLOR_DARKOLIVEGREEN3MLV_rgba(162,205,90,255)
       #define MLV_COLOR_DARKOLIVEGREEN4MLV_rgba(110,139,61,255)
       #define MLV_COLOR_KHAKI1MLV_rgba(255,246,143,255)
       #define MLV_COLOR_KHAKI2MLV_rgba(238,230,133,255)
       #define MLV_COLOR_KHAKI3MLV_rgba(205,198,115,255)
       #define MLV_COLOR_KHAKI4MLV_rgba(139,134,78,255)
       #define MLV_COLOR_LIGHTGOLDENROD1MLV_rgba(255,236,139,255)
       #define MLV_COLOR_LIGHTGOLDENROD2MLV_rgba(238,220,130,255)
       #define MLV_COLOR_LIGHTGOLDENROD3MLV_rgba(205,190,112,255)
       #define MLV_COLOR_LIGHTGOLDENROD4MLV_rgba(139,129,76,255)
       #define MLV_COLOR_LIGHTYELLOW1MLV_rgba(255,255,224,255)
       #define MLV_COLOR_LIGHTYELLOW2MLV_rgba(238,238,209,255)
       #define MLV_COLOR_LIGHTYELLOW3MLV_rgba(205,205,180,255)
       #define MLV_COLOR_LIGHTYELLOW4MLV_rgba(139,139,122,255)
       #define MLV_COLOR_YELLOW1MLV_rgba(255,255,0,255)
       #define MLV_COLOR_YELLOW2MLV_rgba(238,238,0,255)
       #define MLV_COLOR_YELLOW3MLV_rgba(205,205,0,255)
       #define MLV_COLOR_YELLOW4MLV_rgba(139,139,0,255)
       #define MLV_COLOR_GOLD1MLV_rgba(255,215,0,255)
       #define MLV_COLOR_GOLD2MLV_rgba(238,201,0,255)
       #define MLV_COLOR_GOLD3MLV_rgba(205,173,0,255)
       #define MLV_COLOR_GOLD4MLV_rgba(139,117,0,255)
       #define MLV_COLOR_GOLDENROD1MLV_rgba(255,193,37,255)
       #define MLV_COLOR_GOLDENROD2MLV_rgba(238,180,34,255)
       #define MLV_COLOR_GOLDENROD3MLV_rgba(205,155,29,255)
       #define MLV_COLOR_GOLDENROD4MLV_rgba(139,105,20,255)
       #define MLV_COLOR_DARKGOLDENROD1MLV_rgba(255,185,15,255)
       #define MLV_COLOR_DARKGOLDENROD2MLV_rgba(238,173,14,255)
       #define MLV_COLOR_DARKGOLDENROD3MLV_rgba(205,149,12,255)
       #define MLV_COLOR_DARKGOLDENROD4MLV_rgba(139,101,8,255)
       #define MLV_COLOR_ROSYBROWN1MLV_rgba(255,193,193,255)
       #define MLV_COLOR_ROSYBROWN2MLV_rgba(238,180,180,255)
       #define MLV_COLOR_ROSYBROWN3MLV_rgba(205,155,155,255)
       #define MLV_COLOR_ROSYBROWN4MLV_rgba(139,105,105,255)
       #define MLV_COLOR_INDIANRED1MLV_rgba(255,106,106,255)
       #define MLV_COLOR_INDIANRED2MLV_rgba(238,99,99,255)
       #define MLV_COLOR_INDIANRED3MLV_rgba(205,85,85,255)
       #define MLV_COLOR_INDIANRED4MLV_rgba(139,58,58,255)
       #define MLV_COLOR_SIENNA1MLV_rgba(255,130,71,255)
       #define MLV_COLOR_SIENNA2MLV_rgba(238,121,66,255)
       #define MLV_COLOR_SIENNA3MLV_rgba(205,104,57,255)
       #define MLV_COLOR_SIENNA4MLV_rgba(139,71,38,255)
       #define MLV_COLOR_BURLYWOOD1MLV_rgba(255,211,155,255)
       #define MLV_COLOR_BURLYWOOD2MLV_rgba(238,197,145,255)
       #define MLV_COLOR_BURLYWOOD3MLV_rgba(205,170,125,255)
       #define MLV_COLOR_BURLYWOOD4MLV_rgba(139,115,85,255)
       #define MLV_COLOR_WHEAT1MLV_rgba(255,231,186,255)
       #define MLV_COLOR_WHEAT2MLV_rgba(238,216,174,255)
       #define MLV_COLOR_WHEAT3MLV_rgba(205,186,150,255)
       #define MLV_COLOR_WHEAT4MLV_rgba(139,126,102,255)
       #define MLV_COLOR_TAN1MLV_rgba(255,165,79,255)
       #define MLV_COLOR_TAN2MLV_rgba(238,154,73,255)
       #define MLV_COLOR_TAN3MLV_rgba(205,133,63,255)
       #define MLV_COLOR_TAN4MLV_rgba(139,90,43,255)
       #define MLV_COLOR_CHOCOLATE1MLV_rgba(255,127,36,255)
       #define MLV_COLOR_CHOCOLATE2MLV_rgba(238,118,33,255)
       #define MLV_COLOR_CHOCOLATE3MLV_rgba(205,102,29,255)
       #define MLV_COLOR_CHOCOLATE4MLV_rgba(139,69,19,255)
       #define MLV_COLOR_FIREBRICK1MLV_rgba(255,48,48,255)
       #define MLV_COLOR_FIREBRICK2MLV_rgba(238,44,44,255)
       #define MLV_COLOR_FIREBRICK3MLV_rgba(205,38,38,255)
       #define MLV_COLOR_FIREBRICK4MLV_rgba(139,26,26,255)
       #define MLV_COLOR_BROWN1MLV_rgba(255,64,64,255)
       #define MLV_COLOR_BROWN2MLV_rgba(238,59,59,255)
       #define MLV_COLOR_BROWN3MLV_rgba(205,51,51,255)
       #define MLV_COLOR_BROWN4MLV_rgba(139,35,35,255)
       #define MLV_COLOR_SALMON1MLV_rgba(255,140,105,255)
       #define MLV_COLOR_SALMON2MLV_rgba(238,130,98,255)
       #define MLV_COLOR_SALMON3MLV_rgba(205,112,84,255)
       #define MLV_COLOR_SALMON4MLV_rgba(139,76,57,255)
       #define MLV_COLOR_LIGHTSALMON1MLV_rgba(255,160,122,255)
       #define MLV_COLOR_LIGHTSALMON2MLV_rgba(238,149,114,255)
       #define MLV_COLOR_LIGHTSALMON3MLV_rgba(205,129,98,255)
       #define MLV_COLOR_LIGHTSALMON4MLV_rgba(139,87,66,255)
       #define MLV_COLOR_ORANGE1MLV_rgba(255,165,0,255)
       #define MLV_COLOR_ORANGE2MLV_rgba(238,154,0,255)
       #define MLV_COLOR_ORANGE3MLV_rgba(205,133,0,255)
       #define MLV_COLOR_ORANGE4MLV_rgba(139,90,0,255)
       #define MLV_COLOR_DARKORANGE1MLV_rgba(255,127,0,255)
       #define MLV_COLOR_DARKORANGE2MLV_rgba(238,118,0,255)
       #define MLV_COLOR_DARKORANGE3MLV_rgba(205,102,0,255)
       #define MLV_COLOR_DARKORANGE4MLV_rgba(139,69,0,255)
       #define MLV_COLOR_CORAL1MLV_rgba(255,114,86,255)
       #define MLV_COLOR_CORAL2MLV_rgba(238,106,80,255)
       #define MLV_COLOR_CORAL3MLV_rgba(205,91,69,255)
       #define MLV_COLOR_CORAL4MLV_rgba(139,62,47,255)
       #define MLV_COLOR_TOMATO1MLV_rgba(255,99,71,255)
       #define MLV_COLOR_TOMATO2MLV_rgba(238,92,66,255)
       #define MLV_COLOR_TOMATO3MLV_rgba(205,79,57,255)
       #define MLV_COLOR_TOMATO4MLV_rgba(139,54,38,255)
       #define MLV_COLOR_ORANGERED1MLV_rgba(255,69,0,255)
       #define MLV_COLOR_ORANGERED2MLV_rgba(238,64,0,255)
       #define MLV_COLOR_ORANGERED3MLV_rgba(205,55,0,255)
       #define MLV_COLOR_ORANGERED4MLV_rgba(139,37,0,255)
       #define MLV_COLOR_RED1MLV_rgba(255,0,0,255)
       #define MLV_COLOR_RED2MLV_rgba(238,0,0,255)
       #define MLV_COLOR_RED3MLV_rgba(205,0,0,255)
       #define MLV_COLOR_RED4MLV_rgba(139,0,0,255)
       #define MLV_COLOR_DEEPPINK1MLV_rgba(255,20,147,255)
       #define MLV_COLOR_DEEPPINK2MLV_rgba(238,18,137,255)
       #define MLV_COLOR_DEEPPINK3MLV_rgba(205,16,118,255)
       #define MLV_COLOR_DEEPPINK4MLV_rgba(139,10,80,255)
       #define MLV_COLOR_HOTPINK1MLV_rgba(255,110,180,255)
       #define MLV_COLOR_HOTPINK2MLV_rgba(238,106,167,255)
       #define MLV_COLOR_HOTPINK3MLV_rgba(205,96,144,255)
       #define MLV_COLOR_HOTPINK4MLV_rgba(139,58,98,255)
       #define MLV_COLOR_PINK1MLV_rgba(255,181,197,255)
       #define MLV_COLOR_PINK2MLV_rgba(238,169,184,255)
       #define MLV_COLOR_PINK3MLV_rgba(205,145,158,255)
       #define MLV_COLOR_PINK4MLV_rgba(139,99,108,255)
       #define MLV_COLOR_LIGHTPINK1MLV_rgba(255,174,185,255)
       #define MLV_COLOR_LIGHTPINK2MLV_rgba(238,162,173,255)
       #define MLV_COLOR_LIGHTPINK3MLV_rgba(205,140,149,255)
       #define MLV_COLOR_LIGHTPINK4MLV_rgba(139,95,101,255)
       #define MLV_COLOR_PALEVIOLETRED1MLV_rgba(255,130,171,255)
       #define MLV_COLOR_PALEVIOLETRED2MLV_rgba(238,121,159,255)
       #define MLV_COLOR_PALEVIOLETRED3MLV_rgba(205,104,137,255)
       #define MLV_COLOR_PALEVIOLETRED4MLV_rgba(139,71,93,255)
       #define MLV_COLOR_MAROON1MLV_rgba(255,52,179,255)
       #define MLV_COLOR_MAROON2MLV_rgba(238,48,167,255)
       #define MLV_COLOR_MAROON3MLV_rgba(205,41,144,255)
       #define MLV_COLOR_MAROON4MLV_rgba(139,28,98,255)
       #define MLV_COLOR_VIOLETRED1MLV_rgba(255,62,150,255)
       #define MLV_COLOR_VIOLETRED2MLV_rgba(238,58,140,255)
       #define MLV_COLOR_VIOLETRED3MLV_rgba(205,50,120,255)
       #define MLV_COLOR_VIOLETRED4MLV_rgba(139,34,82,255)
       #define MLV_COLOR_MAGENTA1MLV_rgba(255,0,255,255)
       #define MLV_COLOR_MAGENTA2MLV_rgba(238,0,238,255)
       #define MLV_COLOR_MAGENTA3MLV_rgba(205,0,205,255)
       #define MLV_COLOR_MAGENTA4MLV_rgba(139,0,139,255)
       #define MLV_COLOR_ORCHID1MLV_rgba(255,131,250,255)
       #define MLV_COLOR_ORCHID2MLV_rgba(238,122,233,255)
       #define MLV_COLOR_ORCHID3MLV_rgba(205,105,201,255)
       #define MLV_COLOR_ORCHID4MLV_rgba(139,71,137,255)
       #define MLV_COLOR_PLUM1MLV_rgba(255,187,255,255)
       #define MLV_COLOR_PLUM2MLV_rgba(238,174,238,255)
       #define MLV_COLOR_PLUM3MLV_rgba(205,150,205,255)
       #define MLV_COLOR_PLUM4MLV_rgba(139,102,139,255)
       #define MLV_COLOR_MEDIUMORCHID1MLV_rgba(224,102,255,255)
       #define MLV_COLOR_MEDIUMORCHID2MLV_rgba(209,95,238,255)
       #define MLV_COLOR_MEDIUMORCHID3MLV_rgba(180,82,205,255)
       #define MLV_COLOR_MEDIUMORCHID4MLV_rgba(122,55,139,255)
       #define MLV_COLOR_DARKORCHID1MLV_rgba(191,62,255,255)
       #define MLV_COLOR_DARKORCHID2MLV_rgba(178,58,238,255)
       #define MLV_COLOR_DARKORCHID3MLV_rgba(154,50,205,255)
       #define MLV_COLOR_DARKORCHID4MLV_rgba(104,34,139,255)
       #define MLV_COLOR_PURPLE1MLV_rgba(155,48,255,255)
       #define MLV_COLOR_PURPLE2MLV_rgba(145,44,238,255)
       #define MLV_COLOR_PURPLE3MLV_rgba(125,38,205,255)
       #define MLV_COLOR_PURPLE4MLV_rgba(85,26,139,255)
       #define MLV_COLOR_MEDIUMPURPLE1MLV_rgba(171,130,255,255)
       #define MLV_COLOR_MEDIUMPURPLE2MLV_rgba(159,121,238,255)
       #define MLV_COLOR_MEDIUMPURPLE3MLV_rgba(137,104,205,255)
       #define MLV_COLOR_MEDIUMPURPLE4MLV_rgba(93,71,139,255)
       #define MLV_COLOR_THISTLE1MLV_rgba(255,225,255,255)
       #define MLV_COLOR_THISTLE2MLV_rgba(238,210,238,255)
       #define MLV_COLOR_THISTLE3MLV_rgba(205,181,205,255)
       #define MLV_COLOR_THISTLE4MLV_rgba(139,123,139,255)
       #define MLV_COLOR_GRAY0MLV_rgba(0,0,0,255)
       #define MLV_COLOR_GREY0MLV_rgba(0,0,0,255)
       #define MLV_COLOR_GRAY1MLV_rgba(3,3,3,255)
       #define MLV_COLOR_GREY1MLV_rgba(3,3,3,255)
       #define MLV_COLOR_GRAY2MLV_rgba(5,5,5,255)
       #define MLV_COLOR_GREY2MLV_rgba(5,5,5,255)
       #define MLV_COLOR_GRAY3MLV_rgba(8,8,8,255)
       #define MLV_COLOR_GREY3MLV_rgba(8,8,8,255)
       #define MLV_COLOR_GRAY4MLV_rgba(10,10,10,255)
       #define MLV_COLOR_GREY4MLV_rgba(10,10,10,255)
       #define MLV_COLOR_GRAY5MLV_rgba(13,13,13,255)
       #define MLV_COLOR_GREY5MLV_rgba(13,13,13,255)
       #define MLV_COLOR_GRAY6MLV_rgba(15,15,15,255)
       #define MLV_COLOR_GREY6MLV_rgba(15,15,15,255)
       #define MLV_COLOR_GRAY7MLV_rgba(18,18,18,255)
       #define MLV_COLOR_GREY7MLV_rgba(18,18,18,255)
       #define MLV_COLOR_GRAY8MLV_rgba(20,20,20,255)
       #define MLV_COLOR_GREY8MLV_rgba(20,20,20,255)
       #define MLV_COLOR_GRAY9MLV_rgba(23,23,23,255)
       #define MLV_COLOR_GREY9MLV_rgba(23,23,23,255)
       #define MLV_COLOR_GRAY10MLV_rgba(26,26,26,255)
       #define MLV_COLOR_GREY10MLV_rgba(26,26,26,255)
       #define MLV_COLOR_GRAY11MLV_rgba(28,28,28,255)
       #define MLV_COLOR_GREY11MLV_rgba(28,28,28,255)
       #define MLV_COLOR_GRAY12MLV_rgba(31,31,31,255)
       #define MLV_COLOR_GREY12MLV_rgba(31,31,31,255)
       #define MLV_COLOR_GRAY13MLV_rgba(33,33,33,255)
       #define MLV_COLOR_GREY13MLV_rgba(33,33,33,255)
       #define MLV_COLOR_GRAY14MLV_rgba(36,36,36,255)
       #define MLV_COLOR_GREY14MLV_rgba(36,36,36,255)
       #define MLV_COLOR_GRAY15MLV_rgba(38,38,38,255)
       #define MLV_COLOR_GREY15MLV_rgba(38,38,38,255)
       #define MLV_COLOR_GRAY16MLV_rgba(41,41,41,255)
       #define MLV_COLOR_GREY16MLV_rgba(41,41,41,255)
       #define MLV_COLOR_GRAY17MLV_rgba(43,43,43,255)
       #define MLV_COLOR_GREY17MLV_rgba(43,43,43,255)
       #define MLV_COLOR_GRAY18MLV_rgba(46,46,46,255)
       #define MLV_COLOR_GREY18MLV_rgba(46,46,46,255)
       #define MLV_COLOR_GRAY19MLV_rgba(48,48,48,255)
       #define MLV_COLOR_GREY19MLV_rgba(48,48,48,255)
       #define MLV_COLOR_GRAY20MLV_rgba(51,51,51,255)
       #define MLV_COLOR_GREY20MLV_rgba(51,51,51,255)
       #define MLV_COLOR_GRAY21MLV_rgba(54,54,54,255)
       #define MLV_COLOR_GREY21MLV_rgba(54,54,54,255)
       #define MLV_COLOR_GRAY22MLV_rgba(56,56,56,255)
       #define MLV_COLOR_GREY22MLV_rgba(56,56,56,255)
       #define MLV_COLOR_GRAY23MLV_rgba(59,59,59,255)
       #define MLV_COLOR_GREY23MLV_rgba(59,59,59,255)
       #define MLV_COLOR_GRAY24MLV_rgba(61,61,61,255)
       #define MLV_COLOR_GREY24MLV_rgba(61,61,61,255)
       #define MLV_COLOR_GRAY25MLV_rgba(64,64,64,255)
       #define MLV_COLOR_GREY25MLV_rgba(64,64,64,255)
       #define MLV_COLOR_GRAY26MLV_rgba(66,66,66,255)
       #define MLV_COLOR_GREY26MLV_rgba(66,66,66,255)
       #define MLV_COLOR_GRAY27MLV_rgba(69,69,69,255)
       #define MLV_COLOR_GREY27MLV_rgba(69,69,69,255)
       #define MLV_COLOR_GRAY28MLV_rgba(71,71,71,255)
       #define MLV_COLOR_GREY28MLV_rgba(71,71,71,255)
       #define MLV_COLOR_GRAY29MLV_rgba(74,74,74,255)
       #define MLV_COLOR_GREY29MLV_rgba(74,74,74,255)
       #define MLV_COLOR_GRAY30MLV_rgba(77,77,77,255)
       #define MLV_COLOR_GREY30MLV_rgba(77,77,77,255)
       #define MLV_COLOR_GRAY31MLV_rgba(79,79,79,255)
       #define MLV_COLOR_GREY31MLV_rgba(79,79,79,255)
       #define MLV_COLOR_GRAY32MLV_rgba(82,82,82,255)
       #define MLV_COLOR_GREY32MLV_rgba(82,82,82,255)
       #define MLV_COLOR_GRAY33MLV_rgba(84,84,84,255)
       #define MLV_COLOR_GREY33MLV_rgba(84,84,84,255)
       #define MLV_COLOR_GRAY34MLV_rgba(87,87,87,255)
       #define MLV_COLOR_GREY34MLV_rgba(87,87,87,255)
       #define MLV_COLOR_GRAY35MLV_rgba(89,89,89,255)
       #define MLV_COLOR_GREY35MLV_rgba(89,89,89,255)
       #define MLV_COLOR_GRAY36MLV_rgba(92,92,92,255)
       #define MLV_COLOR_GREY36MLV_rgba(92,92,92,255)
       #define MLV_COLOR_GRAY37MLV_rgba(94,94,94,255)
       #define MLV_COLOR_GREY37MLV_rgba(94,94,94,255)
       #define MLV_COLOR_GRAY38MLV_rgba(97,97,97,255)
       #define MLV_COLOR_GREY38MLV_rgba(97,97,97,255)
       #define MLV_COLOR_GRAY39MLV_rgba(99,99,99,255)
       #define MLV_COLOR_GREY39MLV_rgba(99,99,99,255)
       #define MLV_COLOR_GRAY40MLV_rgba(102,102,102,255)
       #define MLV_COLOR_GREY40MLV_rgba(102,102,102,255)
       #define MLV_COLOR_GRAY41MLV_rgba(105,105,105,255)
       #define MLV_COLOR_GREY41MLV_rgba(105,105,105,255)
       #define MLV_COLOR_GRAY42MLV_rgba(107,107,107,255)
       #define MLV_COLOR_GREY42MLV_rgba(107,107,107,255)
       #define MLV_COLOR_GRAY43MLV_rgba(110,110,110,255)
       #define MLV_COLOR_GREY43MLV_rgba(110,110,110,255)
       #define MLV_COLOR_GRAY44MLV_rgba(112,112,112,255)
       #define MLV_COLOR_GREY44MLV_rgba(112,112,112,255)
       #define MLV_COLOR_GRAY45MLV_rgba(115,115,115,255)
       #define MLV_COLOR_GREY45MLV_rgba(115,115,115,255)
       #define MLV_COLOR_GRAY46MLV_rgba(117,117,117,255)
       #define MLV_COLOR_GREY46MLV_rgba(117,117,117,255)
       #define MLV_COLOR_GRAY47MLV_rgba(120,120,120,255)
       #define MLV_COLOR_GREY47MLV_rgba(120,120,120,255)
       #define MLV_COLOR_GRAY48MLV_rgba(122,122,122,255)
       #define MLV_COLOR_GREY48MLV_rgba(122,122,122,255)
       #define MLV_COLOR_GRAY49MLV_rgba(125,125,125,255)
       #define MLV_COLOR_GREY49MLV_rgba(125,125,125,255)
       #define MLV_COLOR_GRAY50MLV_rgba(127,127,127,255)
       #define MLV_COLOR_GREY50MLV_rgba(127,127,127,255)
       #define MLV_COLOR_GRAY51MLV_rgba(130,130,130,255)
       #define MLV_COLOR_GREY51MLV_rgba(130,130,130,255)
       #define MLV_COLOR_GRAY52MLV_rgba(133,133,133,255)
       #define MLV_COLOR_GREY52MLV_rgba(133,133,133,255)
       #define MLV_COLOR_GRAY53MLV_rgba(135,135,135,255)
       #define MLV_COLOR_GREY53MLV_rgba(135,135,135,255)
       #define MLV_COLOR_GRAY54MLV_rgba(138,138,138,255)
       #define MLV_COLOR_GREY54MLV_rgba(138,138,138,255)
       #define MLV_COLOR_GRAY55MLV_rgba(140,140,140,255)
       #define MLV_COLOR_GREY55MLV_rgba(140,140,140,255)
       #define MLV_COLOR_GRAY56MLV_rgba(143,143,143,255)
       #define MLV_COLOR_GREY56MLV_rgba(143,143,143,255)
       #define MLV_COLOR_GRAY57MLV_rgba(145,145,145,255)
       #define MLV_COLOR_GREY57MLV_rgba(145,145,145,255)
       #define MLV_COLOR_GRAY58MLV_rgba(148,148,148,255)
       #define MLV_COLOR_GREY58MLV_rgba(148,148,148,255)
       #define MLV_COLOR_GRAY59MLV_rgba(150,150,150,255)
       #define MLV_COLOR_GREY59MLV_rgba(150,150,150,255)
       #define MLV_COLOR_GRAY60MLV_rgba(153,153,153,255)
       #define MLV_COLOR_GREY60MLV_rgba(153,153,153,255)
       #define MLV_COLOR_GRAY61MLV_rgba(156,156,156,255)
       #define MLV_COLOR_GREY61MLV_rgba(156,156,156,255)
       #define MLV_COLOR_GRAY62MLV_rgba(158,158,158,255)
       #define MLV_COLOR_GREY62MLV_rgba(158,158,158,255)
       #define MLV_COLOR_GRAY63MLV_rgba(161,161,161,255)
       #define MLV_COLOR_GREY63MLV_rgba(161,161,161,255)
       #define MLV_COLOR_GRAY64MLV_rgba(163,163,163,255)
       #define MLV_COLOR_GREY64MLV_rgba(163,163,163,255)
       #define MLV_COLOR_GRAY65MLV_rgba(166,166,166,255)
       #define MLV_COLOR_GREY65MLV_rgba(166,166,166,255)
       #define MLV_COLOR_GRAY66MLV_rgba(168,168,168,255)
       #define MLV_COLOR_GREY66MLV_rgba(168,168,168,255)
       #define MLV_COLOR_GRAY67MLV_rgba(171,171,171,255)
       #define MLV_COLOR_GREY67MLV_rgba(171,171,171,255)
       #define MLV_COLOR_GRAY68MLV_rgba(173,173,173,255)
       #define MLV_COLOR_GREY68MLV_rgba(173,173,173,255)
       #define MLV_COLOR_GRAY69MLV_rgba(176,176,176,255)
       #define MLV_COLOR_GREY69MLV_rgba(176,176,176,255)
       #define MLV_COLOR_GRAY70MLV_rgba(179,179,179,255)
       #define MLV_COLOR_GREY70MLV_rgba(179,179,179,255)
       #define MLV_COLOR_GRAY71MLV_rgba(181,181,181,255)
       #define MLV_COLOR_GREY71MLV_rgba(181,181,181,255)
       #define MLV_COLOR_GRAY72MLV_rgba(184,184,184,255)
       #define MLV_COLOR_GREY72MLV_rgba(184,184,184,255)
       #define MLV_COLOR_GRAY73MLV_rgba(186,186,186,255)
       #define MLV_COLOR_GREY73MLV_rgba(186,186,186,255)
       #define MLV_COLOR_GRAY74MLV_rgba(189,189,189,255)
       #define MLV_COLOR_GREY74MLV_rgba(189,189,189,255)
       #define MLV_COLOR_GRAY75MLV_rgba(191,191,191,255)
       #define MLV_COLOR_GREY75MLV_rgba(191,191,191,255)
       #define MLV_COLOR_GRAY76MLV_rgba(194,194,194,255)
       #define MLV_COLOR_GREY76MLV_rgba(194,194,194,255)
       #define MLV_COLOR_GRAY77MLV_rgba(196,196,196,255)
       #define MLV_COLOR_GREY77MLV_rgba(196,196,196,255)
       #define MLV_COLOR_GRAY78MLV_rgba(199,199,199,255)
       #define MLV_COLOR_GREY78MLV_rgba(199,199,199,255)
       #define MLV_COLOR_GRAY79MLV_rgba(201,201,201,255)
       #define MLV_COLOR_GREY79MLV_rgba(201,201,201,255)
       #define MLV_COLOR_GRAY80MLV_rgba(204,204,204,255)
       #define MLV_COLOR_GREY80MLV_rgba(204,204,204,255)
       #define MLV_COLOR_GRAY81MLV_rgba(207,207,207,255)
       #define MLV_COLOR_GREY81MLV_rgba(207,207,207,255)
       #define MLV_COLOR_GRAY82MLV_rgba(209,209,209,255)
       #define MLV_COLOR_GREY82MLV_rgba(209,209,209,255)
       #define MLV_COLOR_GRAY83MLV_rgba(212,212,212,255)
       #define MLV_COLOR_GREY83MLV_rgba(212,212,212,255)
       #define MLV_COLOR_GRAY84MLV_rgba(214,214,214,255)
       #define MLV_COLOR_GREY84MLV_rgba(214,214,214,255)
       #define MLV_COLOR_GRAY85MLV_rgba(217,217,217,255)
       #define MLV_COLOR_GREY85MLV_rgba(217,217,217,255)
       #define MLV_COLOR_GRAY86MLV_rgba(219,219,219,255)
       #define MLV_COLOR_GREY86MLV_rgba(219,219,219,255)
       #define MLV_COLOR_GRAY87MLV_rgba(222,222,222,255)
       #define MLV_COLOR_GREY87MLV_rgba(222,222,222,255)
       #define MLV_COLOR_GRAY88MLV_rgba(224,224,224,255)
       #define MLV_COLOR_GREY88MLV_rgba(224,224,224,255)
       #define MLV_COLOR_GRAY89MLV_rgba(227,227,227,255)
       #define MLV_COLOR_GREY89MLV_rgba(227,227,227,255)
       #define MLV_COLOR_GRAY90MLV_rgba(229,229,229,255)
       #define MLV_COLOR_GREY90MLV_rgba(229,229,229,255)
       #define MLV_COLOR_GRAY91MLV_rgba(232,232,232,255)
       #define MLV_COLOR_GREY91MLV_rgba(232,232,232,255)
       #define MLV_COLOR_GRAY92MLV_rgba(235,235,235,255)
       #define MLV_COLOR_GREY92MLV_rgba(235,235,235,255)
       #define MLV_COLOR_GRAY93MLV_rgba(237,237,237,255)
       #define MLV_COLOR_GREY93MLV_rgba(237,237,237,255)
       #define MLV_COLOR_GRAY94MLV_rgba(240,240,240,255)
       #define MLV_COLOR_GREY94MLV_rgba(240,240,240,255)
       #define MLV_COLOR_GRAY95MLV_rgba(242,242,242,255)
       #define MLV_COLOR_GREY95MLV_rgba(242,242,242,255)
       #define MLV_COLOR_GRAY96MLV_rgba(245,245,245,255)
       #define MLV_COLOR_GREY96MLV_rgba(245,245,245,255)
       #define MLV_COLOR_GRAY97MLV_rgba(247,247,247,255)
       #define MLV_COLOR_GREY97MLV_rgba(247,247,247,255)
       #define MLV_COLOR_GRAY98MLV_rgba(250,250,250,255)
       #define MLV_COLOR_GREY98MLV_rgba(250,250,250,255)
       #define MLV_COLOR_GRAY99MLV_rgba(252,252,252,255)
       #define MLV_COLOR_GREY99MLV_rgba(252,252,252,255)
       #define MLV_COLOR_GRAY100MLV_rgba(255,255,255,255)
       #define MLV_COLOR_GREY100MLV_rgba(255,255,255,255)
       #define MLV_COLOR_DARK_GREYMLV_rgba(169,169,169,255)
       #define MLV_COLOR_DARKGREYMLV_rgba(169,169,169,255)
       #define MLV_COLOR_DARK_GRAYMLV_rgba(169,169,169,255)
       #define MLV_COLOR_DARKGRAYMLV_rgba(169,169,169,255)
       #define MLV_COLOR_DARK_BLUEMLV_rgba(0,0,139,255)
       #define MLV_COLOR_DARKBLUEMLV_rgba(0,0,139,255)
       #define MLV_COLOR_DARK_CYANMLV_rgba(0,139,139,255)
       #define MLV_COLOR_DARKCYANMLV_rgba(0,139,139,255)
       #define MLV_COLOR_DARK_MAGENTAMLV_rgba(139,0,139,255)
       #define MLV_COLOR_DARKMAGENTAMLV_rgba(139,0,139,255)
       #define MLV_COLOR_DARK_REDMLV_rgba(139,0,0,255)
       #define MLV_COLOR_DARKREDMLV_rgba(139,0,0,255)
       #define MLV_COLOR_LIGHT_GREENMLV_rgba(144,238,144,255)
       #define MLV_COLOR_LIGHTGREENMLV_rgba(144,238,144,255)

   Définitionsdetype
       typedef Uint32 MLV_Color
           Définit un type couleur pour la bibliothèque MLV.
       typedef Uint8 MLV_Alpha
           Type codant la transparence dans MLV.

   Énumérations
       enum { MLV_ALPHA_TRANSPARENT = SDL_ALPHA_TRANSPARENT, MLV_ALPHA_OPAQUE = SDL_ALPHA_OPAQUE }
           Énumère les valeurs de transparence et d'opacité (codés sur 8 bits )

   FonctionsMLV_ColorMLV_rgba (Uint8 red, Uint8 green, Uint8 blue, Uint8 alpha)
           Raccourci vers MLV_Color MLV_get_color_from_rgba.
       MLV_ColorMLV_convert_rgba_to_color (Uint8 red, Uint8 green, Uint8 blue, Uint8 alpha)
           Convertit une couleur codée sur 4 entier de 8 bits représentant les composantes rouge, bleue et verte
           en un entier 32 bits.
       void MLV_convert_color_to_rgba (MLV_Color color, Uint8 *red, Uint8 *green, Uint8 *blue, Uint8 *alpha)
           Convertit une couleur MLV en une couleur codée sur 4 entier de 8 bits représentant les composantes
           rouge, bleue et verte en un entier 32 bits.
       const char * MLV_convert_color_to_string (MLV_Color color)
           Convertit une couleur en un chaine de caractères.
       MLV_ColorMLV_convert_string_to_color (const char *color_name)
           Convertit un nom de couleur en son code couleur.

See Also