Comparteix a través de


Enumeració del color i funcions ColorFade, ColorValue i RGBA

S'aplica a: Aplicacions de llenç Aplicacions Power Platform basades en models CLI

Utilitzeu els valors de color integrat, definiu els colors personalitzats i utilitzeu el canal alfa.

Nota

Les ordres PAC CLI pac power-fx no admeten l'enumeració del color .

Descripció

Mitjançant l'ús de l'enumeració Color, podeu accedir fàcilment als colors definits pels fulls d'estil en cascada de HTML (CSS). Per exemple, Color.Red retorna vermell pur. Podeu trobar una llista d'aquests colors al final d'aquest tema.

La funció ColorValue torna un color segons una cadena de color en un CSS. La cadena pot prendre qualsevol d'aquestes formes:

  • Nom de color CSS:"RoxyBrown" i "OliveDrab" són exemples. Aquests noms no inclouen espais. La llista de colors admesos es mostra més endavant en aquest tema.
  • Valor hexadecimal de 6 dígits: per exemple, "#ffd700" és el mateix que "Gold". La cadena està en el format "#rrggbb" on rr és la porció vermella en dos dígits hexadecimals, gg és el verd, i bb és el blau.
  • Valor hexadecimal de 8 dígits: per exemple, "#ff7f5080" és el mateix que "Coral" amb un canal alfa del 50%. La cadena està en el format "#rrggbbaa" on rr, gg i bb són idèntics al format de 6 dígits. El canal alfa està representat per aa: 00 representa totalment transparent i ff representa totalment opac.

La funció RGBA torna un color a partir de components vermells, verds i blaus. La funció també inclou un canal alfa per barrejar els colors dels controls que es troben en capes una davant de l'altra. Un canal alfa varia des de 0 o el 0% (que és totalment transparent i invisible) a 1 o el 100% (que és totalment opac i completament bloqueja qualsevol capa darrere d'un control).

La funció ColorFade torna una versió més brillant o més fosca d'un color. La quantitat d'esvaïment varia de -1 (que enfosqueix completament un color a negre) a 0 (que no afecta el color) a 1 (que il·lumina totalment el color a blanc).

Canal alfa

En una aplicació del llenç, podeu fer capes de controls uns davant dels altres i especificar la transparència d'un control a tots els controls que hi ha darrere. Com a resultat, els colors es barregen per les capes. Per exemple, aquest diagrama mostra com es barregen els tres colors primaris amb un ajust alfa del 50%:

Tres colors primaris amb una configuració alfa del 50%.

També podeu barrejar imatges en formats de fitxer compatibles amb els canals alfa. Per exemple, no podeu barrejar fitxers .jpeg, però podeu barrejar fitxers .png. El gràfic següent mostra els mateixos colors vermells, verds i blaus de l'exemple anterior, però el color vermell es mostra com una ondulació (en lloc d'un cercle) en un fitxer .png amb un canal alfa del 50%:

Gargot vermell amb una configuració alfa del 50% davant de cercles blaus i verds.

Si especifiqueu un valor d'enumeració Color o creeu una fórmula ColorValue amb un nom de color o un valor hexadecimal de 6 dígits, la configuració alfa és del 100%, la qual cosa és totalment opac.

Sintaxi

Color.ColorName

  • ColorName: obligatori. Nom de color d'un full d'estil en cascada (CSS). La llista de valors d'enumeració possibles apareix al final d'aquest tema.

ColorValue( CSSColor )

  • CSSColor: obligatori. Definició de color d'un full d'estil en cascada (CSS). Podeu especificar un nom, com ara OliveDrab o un valor hexadecimal, com ara #6b8e23 o #7fffd420. Els valors hexagonals poden tenir el format #rrggbb o #rrggbbaa.

ColorValue( sense tipus )

  • Sense tipus: obligatori. Objecte sense tipus que conté una cadena que representa una definició de color d'un full d'estil en cascada (CSS).

RGBA( Vermell, Verd, Blau, Alfa )

  • Vermell, Verd, Blau: obligatoris. Els valors dels components de color, que van de 0 (sense saturació) a 255 (saturació completa).
  • Alfa: obligatori. Component alfa, que oscil·la entre 0 (totalment transparent) i 1 (totalment opac). També podeu utilitzar un percentatge, 0% a 100%.

ColorFade( Color, FadeAmount )

  • Color: obligatori. Valor de color, com ara Color.Red o la sortida de ColorValue o RGBA.
  • FadeAmount: obligatori. Un número entre -1 i 1. -1 enfosqueix totalment el color a negre, 0 no afecta el color i 1 il·lumina el color a blanc. També podeu utilitzar un percentatge de -100% a 100%.

Colors incorporats

Enumeració de color ColorValue RGBA Paleta de color
Color.AliceBlue ColorValue( "#f0f8ff" )
ColorValue( "aliceblue" )
RGBA( 240, 248, 255, 1 ) blau Alícia
Color.AntiqueWhite ColorValue( "#faebd7" )
ColorValue( "AntiqueWhite" )
RGBA( 250, 235, 215, 1 ) blanc trencat
Color.Aqua ColorValue( "#00ffff" )
ColorValue( "AQUA" )
RGBA( 0, 255, 255, 1 ) aiguamarina
Color.Aquamarine ColorValue( "#7fffd4" )
ColorValue( "Aquamarine" )
RGBA( 127, 255, 212, 1 ) aiguamarina
Color.Azure ColorValue( "#f0ffff" )
ColorValue( "azure" )
RGBA( 240, 255, 255, 1 ) blau cel
Color.Beige ColorValue( "#f5f5dc" )
ColorValue( "Beige" )
RGBA( 245, 245, 220, 1 ) beix
Color.Bisque ColorValue( "#ffe4c4" )
ColorValue( "BISQUE" )
RGBA( 255, 228, 196, 1 ) crema
Color.Black ColorValue( "#000000" )
ColorValue( "Black" )
RGBA( 0, 0, 0, 1 ) negre
Color.BlanchedAlmond ColorValue( "#ffebcd" )
ColorValue( "blanchedalmond" )
RGBA( 255, 235, 205, 1 ) vori
Color.Blue ColorValue( "#0000ff" )
ColorValue( "Blue" )
RGBA( 0, 0, 255, 1 ) blau
Color.BlueViolet ColorValue( "#8a2be2" )
ColorValue( "BLUEVIOLET" )
RGBA( 138, 43, 226, 1 ) morat
Color.Brown ColorValue( "#a52a2a" )
ColorValue( "Brown" )
RGBA( 165, 42, 42, 1 ) marró
Color.Burlywood ColorValue( "#deb887" )
ColorValue( "burlywood" )
RGBA( 222, 184, 135, 1 ) fusta
Color.CadetBlue ColorValue( "#5f9ea0" )
ColorValue( "CadetBlue" )
RGBA( 95, 158, 160, 1 ) blau cadet
Color.Chartreuse ColorValue( "#7fff00" )
ColorValue( "CHARTREUSE" )
RGBA( 127, 255, 0, 1 ) verd groguenc
Color.Chocolate ColorValue( "#d2691e" )
ColorValue( "Chocolate" )
RGBA( 210, 105, 30, 1 ) xocolata
Color.Coral ColorValue( "#ff7f50" )
ColorValue( "coral" )
RGBA( 255, 127, 80, 1 ) corall
Color.CornflowerBlue ColorValue( "#6495ed" )
ColorValue( "CornflowerBlue" )
RGBA( 100, 149, 237, 1 ) blavet
Color.Cornsilk ColorValue( "#fff8dc" )
ColorValue( "CORNSILK" )
RGBA( 255, 248, 220, 1 ) blat de moro
Color.Crimson ColorValue( "#dc143c" )
ColorValue( "Crimson" )
RGBA( 220, 20, 60, 1 ) carmesí
Color.Cyan ColorValue( "#00ffff" )
ColorValue( "cyan" )
RGBA( 0, 255, 255, 1 ) cian
Color.DarkBlue ColorValue( "#00008b" )
ColorValue( "DarkBlue" )
RGBA( 0, 0, 139, 1 ) blau fosc
Color.DarkCyan ColorValue( "#008b8b" )
ColorValue( "DARKCYAN" )
RGBA( 0, 139, 139, 1 ) cian fosc
Color.DarkGoldenRod ColorValue( "#b8860b" )
ColorValue( "DarkGoldenRod" )
RGBA( 184, 134, 11, 1 ) daurat fosc
Color.DarkGray ColorValue( "#a9a9a9" )
ColorValue( "darkgray" )
RGBA( 169, 169, 169, 1 ) gris fosc
Color.DarkGreen ColorValue( "#006400" )
ColorValue( "DarkGreen" )
RGBA( 0, 100, 0, 1 ) verd fosc
Color.DarkGrey ColorValue( "#a9a9a9" )
ColorValue( "DARKGREY" )
RGBA( 169, 169, 169, 1 ) gris fosc
Color.DarkKhaki ColorValue( "#bdb76b" )
ColorValue( "DarkKhaki" )
RGBA( 189, 183, 107, 1 ) caqui
Color.DarkMagenta ColorValue( "#8b008b" )
ColorValue( "darkmagenta" )
RGBA( 139, 0, 139, 1 ) magenta fosc
Color.DarkOliveGreen ColorValue( "#556b2f" )
ColorValue( "DarkOliveGreen" )
RGBA( 85, 107, 47, 1 ) verd oliva fosc
Color.DarkOrange ColorValue( "#ff8c00" )
ColorValue( "DARKORANGE" )
RGBA( 255, 140, 0, 1 ) taronja fosc
Color.DarkOrchid ColorValue( "#9932cc" )
ColorValue( "DarkOrchid" )
RGBA( 153, 50, 204, 1 ) orquídia fosc
Color.DarkRed ColorValue( "#8b0000" )
ColorValue( "darkred" )
RGBA( 139, 0, 0, 1 ) vermell fosc
Color.DarkSalmon ColorValue( "#e9967a" )
ColorValue( "DarkSalmon" )
RGBA( 233, 150, 122, 1 ) salmó fosc
Color.DarkSeaGreen ColorValue( "#8fbc8f" )
ColorValue( "DARKSEAGREEN" )
RGBA( 143, 188, 143, 1 ) verd marí fosc
Color.DarkSlateBlue ColorValue( "#483d8b" )
ColorValue( "DarkSlateBlue" )
RGBA( 72, 61, 139, 1 ) blau pissarra fosc
Color.DarkSlateGray ColorValue( "#2f4f4f" )
ColorValue( "darkslategray" )
RGBA( 47, 79, 79, 1 ) gris pissarra fosc
Color.DarkSlateGrey ColorValue( "#2f4f4f" )
ColorValue( "DarkSlateGrey" )
RGBA( 47, 79, 79, 1 ) gris pissarra fosc
Color.DarkTurquoise ColorValue( "#00ced1" )
ColorValue( "DARKTURQUOISE" )
RGBA( 0, 206, 209, 1 ) turquesa fosc
Color.DarkViolet ColorValue( "#9400d3" )
ColorValue( "DarkViolet" )
RGBA( 148, 0, 211, 1 ) violat fosc
Color.DeepPink ColorValue( "#ff1493" )
ColorValue( "deeppink" )
RGBA( 255, 20, 147, 1 ) rosa fúcsia
Color.DeepSkyBlue ColorValue( "#00bfff" )
ColorValue( "DeepSkyBlue" )
RGBA( 0, 191, 255, 1 ) blau cel
Color.DimGray ColorValue( "#696969" )
ColorValue( "DIMGRAY" )
RGBA( 105, 105, 105, 1 ) gris
Color.DimGrey ColorValue( "#696969" )
ColorValue( "DimGrey" )
RGBA( 105, 105, 105, 1 ) gris
Color.DodgerBlue ColorValue( "#1e90ff" )
ColorValue( "dodgerblue" )
RGBA( 30, 144, 255, 1 ) blau dodger
Color.FireBrick ColorValue( "#b22222" )
ColorValue( "FireBrick" )
RGBA( 178, 34, 34, 1 ) maó
Color.FloralWhite ColorValue( "#fffaf0" )
ColorValue( "FLORALWHITE" )
RGBA( 255, 250, 240, 1 ) blanc floral
Color.ForestGreen ColorValue( "#228b22" )
ColorValue( "ForestGreen" )
RGBA( 34, 139, 34, 1 ) verd bosc
Color.Fuchsia ColorValue( "#ff00ff" )
ColorValue( "fuchsia" )
RGBA( 255, 0, 255, 1 ) fúcsia
Color.Gainsboro ColorValue( "#dcdcdc" )
ColorValue( "Gainsboro" )
RGBA( 220, 220, 220, 1 ) gainsboro
Color.GhostWhite ColorValue( "#f8f8ff" )
ColorValue( "GHOSTWHITE" )
RGBA( 248, 248, 255, 1 ) blanc pur
Color.Gold ColorValue( "#ffd700" )
ColorValue( "Gold" )
RGBA( 255, 215, 0, 1 ) daurat
Color.GoldenRod ColorValue( "#daa520" )
ColorValue( "goldenrod" )
RGBA( 218, 165, 32, 1 ) groc daurat
Color.Gray ColorValue( "#808080" )
ColorValue( "Gray" )
RGBA( 128, 128, 128, 1 ) gris
Color.Green ColorValue( "#008000" )
ColorValue( "GREEN" )
RGBA( 0, 128, 0, 1 ) verd
Color.GreenYellow ColorValue( "#adff2f" )
ColorValue( "GreenYellow" )
RGBA( 173, 255, 47, 1 ) groc verdós
Color.Grey ColorValue( "#808080" )
ColorValue( "grey" )
RGBA( 128, 128, 128, 1 ) gris
Color.Honeydew ColorValue( "#f0fff0" )
ColorValue( "Honeydew" )
RGBA( 240, 255, 240, 1 ) meló
Color.HotPink ColorValue( "#ff69b4" )
ColorValue( "HOTPINK" )
RGBA( 255, 105, 180, 1 ) rosa elèctric
Color.IndianRed ColorValue( "#cd5c5c" )
ColorValue( "IndianRed" )
RGBA( 205, 92, 92, 1 ) vermell òxid
Color.Indigo ColorValue( "#4b0082" )
ColorValue( "indigo" )
RGBA( 75, 0, 130, 1 ) indi
Color.Ivory ColorValue( "#fffff0" )
ColorValue( "Ivory" )
RGBA( 255, 255, 240, 1 ) marfil
Color.Khaki ColorValue( "#f0e68c" )
ColorValue( "KHAKI" )
RGBA( 240, 230, 140, 1 ) caqui
Color.Lavender ColorValue( "#e6e6fa" )
ColorValue( "Lavender" )
RGBA( 230, 230, 250, 1 ) lavanda
Color.LavenderBlush ColorValue( "#fff0f5" )
ColorValue( "lavenderblush" )
RGBA( 255, 240, 245, 1 ) rosa clar
Color.LawnGreen ColorValue( "#7cfc00" )
ColorValue( "LawnGreen" )
RGBA( 124, 252, 0, 1 ) verd elèctric
Color.LemonChiffon ColorValue( "#fffacd" )
ColorValue( "LEMONCHIFFON" )
RGBA( 255, 250, 205, 1 ) llimona
Color.LightBlue ColorValue( "#add8e6" )
ColorValue( "LightBlue" )
RGBA( 173, 216, 230, 1 ) blau clar
Color.LightCoral ColorValue( "#f08080" )
ColorValue( "lightcoral" )
RGBA( 240, 128, 128, 1 ) corall clar
Color.LightCyan ColorValue( "#e0ffff" )
ColorValue( "LightCyan" )
RGBA( 224, 255, 255, 1 ) cian clar
Color.LightGoldenRodYellow ColorValue( "#fafad2" )
ColorValue( "lightgoldenrodyellow" )
RGBA( 250, 250, 210, 1 ) groc daurat clar
Color.LightGray ColorValue( "#d3d3d3" )
ColorValue( "LightGray" )
RGBA( 211, 211, 211, 1 ) gris clar
Color.LightGreen ColorValue( "#90ee90" )
ColorValue( "lightgreen" )
RGBA( 144, 238, 144, 1 ) verd clar
Color.LightGrey ColorValue( "#d3d3d3" )
ColorValue( "LightGrey" )
RGBA( 211, 211, 211, 1 ) gris clar
Color.LightPink ColorValue( "#ffb6c1" )
ColorValue( "LIGHTPINK" )
RGBA( 255, 182, 193, 1 ) rosa clar
Color.LightSalmon ColorValue( "#ffa07a" )
ColorValue( "LightSalmon" )
RGBA( 255, 160, 122, 1 ) salmó clar
Color.LightSeaGreen ColorValue( "#20b2aa" )
ColorValue( "lightseagreen" )
RGBA( 32, 178, 170, 1 ) verd marí clar
Color.LightSkyBlue ColorValue( "#87cefa" )
ColorValue( "LightSkyBlue" )
RGBA( 135, 206, 250, 1 ) blau cel clar
Color.LightSlateGray ColorValue( "#778899" )
ColorValue( "LIGHTSLATEGRAY" )
RGBA( 119, 136, 153, 1 ) gris pissarra clar
Color.LightSlateGrey ColorValue( "#778899" )
ColorValue( "LightSlateGrey" )
RGBA( 119, 136, 153, 1 ) gris pissarra clar
Color.LightSteelBlue ColorValue( "#b0c4de" )
ColorValue( "lightsteelblue" )
RGBA( 176, 196, 222, 1 ) blau metàl·lic clar
Color.LightYellow ColorValue( "#ffffe0" )
ColorValue( "LightYellow" )
RGBA( 255, 255, 224, 1 ) groc clar
Color.Lime ColorValue( "#00ff00" )
ColorValue( "LIME" )
RGBA( 0, 255, 0, 1 ) verd llima
Color.LimeGreen ColorValue( "#32cd32" )
ColorValue( "LimeGreen" )
RGBA( 50, 205, 50, 1 ) verd llima
Color.Linen ColorValue( "#faf0e6" )
ColorValue( "linen" )
RGBA( 250, 240, 230, 1 ) lli
Color.Magenta ColorValue( "#ff00ff" )
ColorValue( "Magenta" )
RGBA( 255, 0, 255, 1 ) magenta
Color.Maroon ColorValue( "#800000" )
ColorValue( "MAROON" )
RGBA( 128, 0, 0, 1 ) granat
Color.MediumAquamarine ColorValue( "#66cdaa" )
ColorValue( "MediumAquamarine" )
RGBA( 102, 205, 170, 1 ) aiguamarina mig
Color.MediumBlue ColorValue( "#0000cd" )
ColorValue( "mediumblue" )
RGBA( 0, 0, 205, 1 ) blau mig
Color.MediumOrchid ColorValue( "#ba55d3" )
ColorValue( "MediumOrchid" )
RGBA( 186, 85, 211, 1 ) orquídia mig
Color.MediumPurple ColorValue( "#9370db" )
ColorValue( "MEDIUMPURPLE" )
RGBA( 147, 112, 219, 1 ) morat mig
Color.MediumSeaGreen ColorValue( "#3cb371" )
ColorValue( "MediumSeaGreen" )
RGBA( 60, 179, 113, 1 ) verd marí mig
Color.MediumSlateBlue ColorValue( "#7b68ee" )
ColorValue( "mediumslateblue" )
RGBA( 123, 104, 238, 1 ) blau pissarra mig
Color.MediumSpringGreen ColorValue( "#00fa9a" )
ColorValue( "MediumSpringGreen" )
RGBA( 0, 250, 154, 1 ) verd primavera mig
Color.MediumTurquoise ColorValue( "#48d1cc" )
ColorValue( "MEDIUMTURQUOISE" )
RGBA( 72, 209, 204, 1 ) turquesa mig
Color.MediumVioletRed ColorValue( "#c71585" )
ColorValue( "MediumVioletRed" )
RGBA( 199, 21, 133, 1 ) granat mig
Color.MidnightBlue ColorValue( "#191970" )
ColorValue( "midnightblue" )
RGBA( 25, 25, 112, 1 ) blau de mitjanit
Color.MintCream ColorValue( "#f5fffa" )
ColorValue( "MintCream" )
RGBA( 245, 255, 250, 1 ) verd menta
Color.MistyRose ColorValue( "#ffe4e1" )
ColorValue( "MISTYROSE" )
RGBA( 255, 228, 225, 1 ) rosa pàl·lid
Color.Moccasin ColorValue( "#ffe4b5" )
ColorValue( "Moccasin" )
RGBA( 255, 228, 181, 1 ) mocassí
Color.NavajoWhite ColorValue( "#ffdead" )
ColorValue( "navajowhite" )
RGBA( 255, 222, 173, 1 ) sorra
Color.Navy ColorValue( "#000080" )
ColorValue( "Navy" )
RGBA( 0, 0, 128, 1 ) blau marí
Color.OldLace ColorValue( "#fdf5e6" )
ColorValue( "OLDLACE" )
RGBA( 253, 245, 230, 1 ) blanc os
Color.Olive ColorValue( "#808000" )
ColorValue( "Olive" )
RGBA( 128, 128, 0, 1 ) oliva
Color.OliveDrab ColorValue( "#6b8e23" )
ColorValue( "olivedrab" )
RGBA( 107, 142, 35, 1 ) oliva
Color.Orange ColorValue( "#ffa500" )
ColorValue( "Orange" )
RGBA( 255, 165, 0, 1 ) taronja
Color.OrangeRed ColorValue( "#ff4500" )
ColorValue( "ORANGERED" )
RGBA( 255, 69, 0, 1 ) taronja vermellós
Color.Orchid ColorValue( "#da70d6" )
ColorValue( "Orchid" )
RGBA( 218, 112, 214, 1 ) orquídia
Color.PaleGoldenRod ColorValue( "#eee8aa" )
ColorValue( "palegoldenrod" )
RGBA( 238, 232, 170, 1 ) groc daurat pàl·lid
Color.PaleGreen ColorValue( "#98fb98" )
ColorValue( "PaleGreen" )
RGBA( 152, 251, 152, 1 ) gris pàl·lid
Color.PaleTurquoise ColorValue( "#afeeee" )
ColorValue( "PALETURQUOISE" )
RGBA( 175, 238, 238, 1 ) turquesa pàl·lid
Color.PaleVioletRed ColorValue( "#db7093" )
ColorValue( "PaleVioletRed" )
RGBA( 219, 112, 147, 1 ) granat pàl·lid
Color.PapayaWhip ColorValue( "#ffefd5" )
ColorValue( "papayawhip" )
RGBA( 255, 239, 213, 1 ) groc clar
Color.PeachPuff ColorValue( "#ffdab9" )
ColorValue( "PeachPuff" )
RGBA( 255, 218, 185, 1 ) préssec
Color.Peru ColorValue( "#cd853f" )
ColorValue( "PERU" )
RGBA( 205, 133, 63, 1 ) pedra
Color.Pink ColorValue( "#ffc0cb" )
ColorValue( "Pink" )
RGBA( 255, 192, 203, 1 ) rosa
Color.Plum ColorValue( "#dda0dd" )
ColorValue( "plum" )
RGBA( 221, 160, 221, 1 ) porpra
Color.PowderBlue ColorValue( "#b0e0e6" )
ColorValue( "PowderBlue" )
RGBA( 176, 224, 230, 1 ) blau cel perlat
Color.Purple ColorValue( "#800080" )
ColorValue( "PURPLE" )
RGBA( 128, 0, 128, 1 ) lila
Color.Red ColorValue( "#ff0000" )
ColorValue( "Red" )
RGBA( 255, 0, 0, 1 ) vermell
Color.RosyBrown ColorValue( "#bc8f8f" )
ColorValue( "rosybrown" )
RGBA( 188, 143, 143, 1 ) marró rosat
Color.RoyalBlue ColorValue( "#4169e1" )
ColorValue( "RoyalBlue" )
RGBA( 65, 105, 225, 1 ) blau reial
Color.SaddleBrown ColorValue( "#8b4513" )
ColorValue( "SADDLEBROWN" )
RGBA( 139, 69, 19, 1 ) marró cuir
Color.Salmon ColorValue( "#fa8072" )
ColorValue( "Salmon" )
RGBA( 250, 128, 114, 1 ) salmó
Color.SandyBrown ColorValue( "#f4a460" )
ColorValue( "sandybrown" )
RGBA( 244, 164, 96, 1 ) sorra
Color.SeaGreen ColorValue( "#2e8b57" )
ColorValue( "SeaGreen" )
RGBA( 46, 139, 87, 1 ) verd marí
Color.SeaShell ColorValue( "#fff5ee" )
ColorValue( "SEASHELL" )
RGBA( 255, 245, 238, 1 ) petxina
Color.Sienna ColorValue( "#a0522d" )
ColorValue( "Sienna" )
RGBA( 160, 82, 45, 1 ) siena
Color.Silver ColorValue( "#c0c0c0" )
ColorValue( "silver" )
RGBA( 192, 192, 192, 1 ) plata
Color.SkyBlue ColorValue( "#87ceeb" )
ColorValue( "SkyBlue" )
RGBA( 135, 206, 235, 1 ) blau cel
Color.SlateBlue ColorValue( "#6a5acd" )
ColorValue( "SLATEBLUE" )
RGBA( 106, 90, 205, 1 ) blau pissarra
Color.SlateGray ColorValue( "#708090" )
ColorValue( "SlateGray" )
RGBA( 112, 128, 144, 1 ) gris pissarra
Color.SlateGrey ColorValue( "#708090" )
ColorValue( "slategrey" )
RGBA( 112, 128, 144, 1 ) gris pissarra
Color.Snow ColorValue( "#fffafa" )
ColorValue( "Snow" )
RGBA( 255, 250, 250, 1 ) blanc neu
Color.SpringGreen ColorValue( "#00ff7f" )
ColorValue( "SPRINGGREEN" )
RGBA( 0, 255, 127, 1 ) verd primavera
Color.SteelBlue ColorValue( "#4682b4" )
ColorValue( "SteelBlue" )
RGBA( 70, 130, 180, 1 ) blau metàl·lic
Color.Tan ColorValue( "#d2b48c" )
ColorValue( "tan" )
RGBA( 210, 180, 140, 1 ) morè
Color.Teal ColorValue( "#008080" )
ColorValue( "Teal" )
RGBA( 0, 128, 128, 1 ) verd blavós
Color.Thistle ColorValue( "#d8bfd8" )
ColorValue( "THISTLE" )
RGBA( 216, 191, 216, 1 ) card
Color.Tomato ColorValue( "#ff6347" )
ColorValue( "Tomato" )
RGBA( 255, 99, 71, 1 ) tomàquet
Color.Transparent ColorValue( "#00000000" )
ColorValue( "Transparent" )
RGBA( 0, 0, 0, 0 ) transparent
Color.Turquoise ColorValue( "#40e0d0" )
ColorValue( "turquoise" )
RGBA( 64, 224, 208, 1 ) turquesa
Color.Violet ColorValue( "#ee82ee" )
ColorValue( "Violet" )
RGBA( 238, 130, 238, 1 ) violeta
Color.Wheat ColorValue( "#f5deb3" )
ColorValue( "WHEAT" )
RGBA( 245, 222, 179, 1 ) blat
Color.White ColorValue( "#ffffff" )
ColorValue( "White" )
RGBA( 255, 255, 255, 1 ) blanc
Color.WhiteSmoke ColorValue( "#f5f5f5" )
ColorValue( "whitesmoke" )
RGBA( 245, 245, 245, 1 ) fum
Color.Yellow ColorValue( "#ffff00" )
ColorValue( "Yellow" )
RGBA( 255, 255, 0, 1 ) groc
Color.YellowGreen ColorValue( "#9acd32" )
ColorValue( "YELLOWGREEN" )
RGBA( 154, 205, 50, 1 ) verd groguenc