Nota
L'accés a aquesta pàgina requereix autorització. Pots provar d'iniciar sessió o canviar de directori.
L'accés a aquesta pàgina requereix autorització. Pots provar de canviar directoris.
| Funcions | S'aplica a |
|---|---|
| Color |
|
| ColorFade ColorValue |
|
| RGBA |
|
Utilitzeu valors de color integrats, definiu colors personalitzats i utilitzeu el canal alfa per controlar la transparència.
Nota
Les ordres PAC CLI pac power-fx no admeten l'enumeració Color .
Descripció
Utilitzeu l'enumeració Color per accedir als colors definits pels fulls d'estil en cascada (CSS) de l'HTML. Per exemple, Color. El vermell retorna el vermell pur. Una llista d'aquests colors apareix al final d'aquest article.
La ColorValue funció retorna un color basat en una cadena de colors CSS. La cadena pot tenir qualsevol d'aquestes formes:
- CSS nom del color: "RoxyBrown" i "OliveDrab" són exemples. Aquests noms no inclouen espais. La llista de colors admesos apareix més endavant en aquest article.
- Valor hexadecimal de 6 dígits: Per exemple, "#ffd700" és el mateix que "Or". La cadena utilitza 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 de 50%. La cadena utilitza el format "#rrggbbaa", on rr, gg i bb són idèntics a la forma de 6 dígits. El canal alfa està representat per aa:00 significa totalment transparent i ff significa totalment opac.
La RGBA funció retorna un color basat en components vermell, verd i blau. La funció també inclou un canal alfa per barrejar colors de controls en capes un davant de l'altre. El canal alfa oscil·la entre 0% o 0% (totalment transparent i invisible) fins a 1% o 100% (totalment opac i bloqueja completament qualsevol capa darrere d'un control).
La ColorFade funció retorna una versió més brillant o més fosca d'un color. La quantitat d'esvaïment oscil·la entre -1 (enfosqueix completament un color a negre), a 0 (no afecta el color) a 1 (il·lumina completament un color a blanc).
Canal alfa
En una app de llenç, pots posar controls en capes un davant de l'altre i definir la transparència d'un control a qualsevol control que hi ha darrere. Com a resultat, els colors es barregen a través de les capes. Per exemple, aquest diagrama mostra com es barregen els tres colors primaris amb una configuració alfa del 50 per cent:
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 següent gràfic mostra els mateixos colors vermell, verd i blau de l'exemple anterior, però el color vermell apareix com un gargot (en lloc d'un cercle) en un fitxer .png amb un canal alfa del 50 per cent:
Si especifiqueu un Color valor d'enumeració o creeu una ColorValue fórmula amb un nom de color o un valor hexadecimal de 6 dígits, la configuració alfa és del 100 per cent, que és totalment opaca.
Sintaxi
Color. Nom del color
- ColorName - Obligatori. Nom de color d'un full d'estil en cascada (CSS). La llista de possibles valors d'enumeració es troba al final d'aquest article.
ColorValue( CSSColor )
- CSSColor - Obligatori. Definició de color d'un full d'estil en cascada (CSS). S, OliveDralike un valor hexadecimal, com #6b8e23 olikeffd420**. Els valors hexadecimals poden utilitzar #_rrggbb__usgormat. format
ColorValue( Dinàmic )
- Dinàmic - Obligatori. Un valor dinàmic amb una cadena que representa una definició de color de full d'estil en cascada (CSS).
RGBA( Vermell, Verd, Blau, Alfa )
- Vermell, verd, blau - Obligatori. Color Valors dels components que oscil·len entre 0 (sense saturació) i 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. Un valor de color com Color. Vermell 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
| Color enumeració | ColorValue | RGBA | Color Swatch |
|---|---|---|---|
| Color. Blau Alícia |
ColorValue( "#f0f8ff" ) ColorValue( "aliceblue" ) |
RGBA( 240, 248, 255, 1 ) |
|
| Color. AntiqueBlanc |
ColorValue( "#faebd7") ColorValue( "AntiqueWhite" ) |
RGBA( 250, 235, 215, 1 ) |
|
| Color. Aqua |
ColorValue( "#00ffff") ColorValue( "AQUA" ) |
RGBA( 0, 255, 255, 1 ) |
|
| Color. Aiguamarina |
ColorValue( "#7fffd4" ) ColorValue( "Aiguamarina" ) |
RGBA( 127, 255, 212, 1 ) |
|
| Color. Atzur |
ColorValue( "#f0ffff" ) ColorValue( "blau" ) |
RGBA( 240, 255, 255, 1 ) |
|
| Color. Beix |
ColorValue( "#f5f5dc" ) ColorValue( "Beix") |
RGBA( 245, 245, 220, 1 ) |
|
| Color. Bescuit |
ColorValue( "#ffe4c4") ColorValue( "BISQUE" ) |
RGBA( 255, 228, 196, 1 ) |
|
| Color. Negre |
ColorValue( "#000000" ) ColorValue( "Negre" ) |
RGBA( 0, 0, 0, 1 ) |
|
| Color. BlanquejatAmetlla |
ColorValue( "#ffebcd" ) ColorValue( "ametlla blanquejada") |
RGBA( 255, 235, 205, 1 ) |
|
| Color. Blau |
ColorValue( "#0000ff" ) ColorValue( "Blau" ) |
RGBA( 0, 0, 255, 1 ) |
|
| Color. BlauVioleta |
ColorValue( "#8a2be2") ColorValue( "VIOLETA BLAVA" ) |
RGBA( 138, 43, 226, 1 ) |
|
| Color. Marró |
ColorValue( "#a52a2a" ) ColorValue( "Marró" ) |
RGBA( 165, 42, 42, 1 ) |
|
| Color. Fusta de Burlywood |
ColorValue( "#deb887") ColorValue( "fusta de burly" ) |
RGBA( 222, 184, 135, 1 ) |
|
| Color. Blau cadet |
ColorValue( "#5f9ea0") ColorValue( "CadetBlue" ) |
RGBA( 95, 158, 160, 1 ) |
|
| Color. Chartreuse |
ColorValue( "#7fff00" ) ColorValue( "CHARTREUSE" ) |
RGBA( 127, 255, 0, 1 ) |
|
| Color. Xocolata |
ColorValue( "#d2691e" ) ColorValue( "Xocolata") |
RGBA( 210, 105, 30, 1 ) |
|
| Color. Coral |
ColorValue( "#ff7f50") ColorValue( "corall" ) |
RGBA( 255, 127, 80, 1 ) |
|
| Color. blau de blat de moro |
ColorValue( "#6495ed" ) ColorValue( "blau de blat de moro" ) |
RGBA( 100, 149, 237, 1 ) |
|
| Color. Seda de blat de moro |
ColorValue( "#fff8dc" ) ColorValue( "SEDA DE BLAT DE MORO") |
RGBA( 255, 248, 220, 1 ) |
|
| Color. Carmesí |
ColorValue( "#dc143c" ) ColorValue( "Carmesí" ) |
RGBA( 220, 20, 60, 1 ) |
|
| Color. Cian |
ColorValue( "#00ffff") ColorValue( "cian" ) |
RGBA( 0, 255, 255, 1 ) |
|
| Color. Blau fosc |
ColorValue( "#00008b" ) ColorValue( "Blau fosc") |
RGBA( 0, 0, 139, 1 ) |
|
| Color. Cian fosc |
ColorValue( "#008b8b") ColorValue( "DARKCYAN" ) |
RGBA( 0, 139, 139, 1 ) |
|
| Color. Vareta d'or fosc |
ColorValue( "#b8860b" ) ColorValue( "Vareta d'or fosca") |
RGBA( 184, 134, 11, 1 ) |
|
| Color. Gris fosc |
ColorValue( "#a9a9a9") ColorValue( "gris fosc" ) |
RGBA( 169, 169, 169, 1 ) |
|
| Color. Verd fosc |
ColorValue( "#006400" ) ColorValue( "Verd fosc" ) |
RGBA( 0, 100, 0, 1 ) |
|
| Color. Gris fosc |
ColorValue( "#a9a9a9") ColorValue( "GRIS FOSC") |
RGBA( 169, 169, 169, 1 ) |
|
| Color. DarkKhaki |
ColorValue( "#bdb76b" ) ColorValue( "DarkKhaki" ) |
RGBA( 189, 183, 107, 1 ) |
|
| Color. DarkMagenta |
ColorValue( "#8b008b" ) ColorValue( "darkmagenta" ) |
RGBA( 139, 0, 139, 1 ) |
|
| Color. Verd oliva fosc |
ColorValue( "#556b2f") ColorValue( "Verd oliva fosc" ) |
RGBA( 85, 107, 47, 1 ) |
|
| Color. Taronja fosc |
ColorValue( "#ff8c00" ) ColorValue( "TARONJA FOSCA" ) |
RGBA( 255, 140, 0, 1 ) |
|
| Color. Orquídia fosca |
ColorValue( "#9932cc" ) ColorValue( "Orquídia fosca") |
RGBA( 153, 50, 204, 1 ) |
|
| Color. Vermell fosc |
ColorValue( "#8b0000" ) ColorValue( "vermell fosc" ) |
RGBA( 139, 0, 0, 1 ) |
|
| Color. Salmó fosc |
ColorValue( "#e9967a" ) ColorValue( "Salmó fosc") |
RGBA( 233, 150, 122, 1 ) |
|
| Color. Verd mar fosc |
ColorValue( "#8fbc8f" ) ColorValue( "DARKSEAGREEN" ) |
RGBA( 143, 188, 143, 1 ) |
|
| Color. Blau pissarra fosc |
ColorValue( "#483d8b" ) ColorValue( "DarkSlateBlue" ) |
RGBA( 72, 61, 139, 1 ) |
|
| Color. Gris pissarra fosc |
ColorValue( "#2f4f4f" ) ColorValue( "gris pissarra fosc" ) |
RGBA( 47, 79, 79, 1 ) |
|
| Color. Pissarra foscaGris |
ColorValue( "#2f4f4f" ) ColorValue( "DarkSlateGrey" ) |
RGBA( 47, 79, 79, 1 ) |
|
| Color. Turquesa fosca |
ColorValue( "#00ced1") ColorValue( "TURQUESA FOSCA" ) |
RGBA( 0, 206, 209, 1 ) |
|
| Color. Violeta fosc |
ColorValue( "#9400d3" ) ColorValue( "Violeta fosc") |
RGBA( 148, 0, 211, 1 ) |
|
| Color. Rosa intens |
ColorValue( "#ff1493" ) ColorValue( "rosa profund" ) |
RGBA( 255, 20, 147, 1 ) |
|
| Color. Blau cel profund |
ColorValue( "#00bfff" ) ColorValue( "DeepSkyBlue" ) |
RGBA( 0, 191, 255, 1 ) |
|
| Color. Gris dim |
ColorValue( "#696969" ) ColorValue( "DIMGRAY" ) |
RGBA( 105, 105, 105, 1 ) |
|
| Color. Gris dim |
ColorValue( "#696969" ) ColorValue( "DimGrey" ) |
RGBA( 105, 105, 105, 1 ) |
|
| Color. DodgerBlue |
ColorValue( "#1e90ff") ColorValue( "Dodgerblue" ) |
RGBA( 30, 144, 255, 1 ) |
|
| Color. Maó de foc |
ColorValue( "#b22222") ColorValue( "Maó de foc") |
RGBA( 178, 34, 34, 1 ) |
|
| Color. FloralBlanc |
ColorValue( "#fffaf0" ) ColorValue( "FLORALWHITE" ) |
RGBA( 255, 250, 240, 1 ) |
|
| Color. Verd Bosc |
ColorValue( "#228b22" ) ColorValue( "Verd Forest") |
RGBA( 34, 139, 34, 1 ) |
|
| Color. Magenta |
ColorValue( "#ff00ff" ) ColorValue( "fúcsia" ) |
RGBA( 255, 0, 255, 1 ) |
|
| Color. Guanysboro |
ColorValue( "#dcdcdc" ) ColorValue( "Gainsboro" ) |
RGBA( 220, 220, 220, 1 ) |
|
| Color. Blanc fantasma |
ColorValue( "#f8f8ff") ColorValue( "GHOSTWHITE" ) |
RGBA( 248, 248, 255, 1 ) |
|
| Color. Or |
ColorValue( "#ffd700") ColorValue( "Or" ) |
RGBA( 255, 215, 0, 1 ) |
|
| Color. Vareta d'or |
ColorValue( "#daa520") ColorValue( "vareta d'or" ) |
RGBA( 218, 165, 32, 1 ) |
|
| Color. Gris |
ColorValue( "#808080" ) ColorValue( "Gris" ) |
RGBA( 128, 128, 128, 1 ) |
|
| Color. Verd |
ColorValue( "#008000" ) ColorValue( "VERD") |
RGBA( 0, 128, 0, 1 ) |
|
| Color. VerdGroc |
ColorValue( "#adff2f" ) ColorValue( "Verd groc") |
RGBA( 173, 255, 47, 1 ) |
|
| Color. Gris |
ColorValue( "#808080" ) ColorValue( "gris" ) |
RGBA( 128, 128, 128, 1 ) |
|
| Color. Honeydew |
ColorValue( "#f0fff0") ColorValue( "Melada" ) |
RGBA( 240, 255, 240, 1 ) |
|
| Color. Rosa intens |
ColorValue( "#ff69b4" ) ColorValue( "ROSA CALENT") |
RGBA( 255, 105, 180, 1 ) |
|
| Color. Vermell indi |
ColorValue( "#cd5c5c") ColorValue( "Vermell indi") |
RGBA( 205, 92, 92, 1 ) |
|
| Color. Anyil |
ColorValue( "#4b0082" ) ColorValue( "índigo") |
RGBA( 75, 0, 130, 1 ) |
|
| Color. Ivori |
ColorValue( "#fffff0") ColorValue( "Ivori") |
RGBA( 255, 255, 240, 1 ) |
|
| Color. Caqui |
ColorValue( "#f0e68c" ) ColorValue( "CAQUI") |
RGBA( 240, 230, 140, 1 ) |
|
| Color. Espígol |
ColorValue( "#e6e6fa" ) ColorValue( "Lavanda" ) |
RGBA( 230, 230, 250, 1 ) |
|
| Color. Rubor d'espígol |
ColorValue( "#fff0f5" ) ColorValue( "rubor de lavanda") |
RGBA( 255, 240, 245, 1 ) |
|
| Color. Verd gespa |
ColorValue( "#7cfc00" ) ColorValue( "Verd gespa") |
RGBA( 124, 252, 0, 1 ) |
|
| Color. Llimona Gasa |
ColorValue( "#fffacd") ColorValue( "LEMONCHIFFON" ) |
RGBA( 255, 250, 205, 1 ) |
|
| Color. Blau clar |
ColorValue( "#add8e6") ColorValue( "Blau clar" ) |
RGBA( 173, 216, 230, 1 ) |
|
| Color. Corall de llum |
ColorValue( "#f08080" ) ColorValue( "corall de llum") |
RGBA( 240, 128, 128, 1 ) |
|
| Color. Cian clar |
ColorValue( "#e0ffff" ) ColorValue( "LightCyan" ) |
RGBA( 224, 255, 255, 1 ) |
|
| Color. ClarVareta dauradaGroc |
ColorValue( "#fafad2") ColorValue( "groc daurat clar") |
RGBA( 250, 250, 210, 1 ) |
|
| Color. Gris clar |
ColorValue( "#d3d3d3" ) ColorValue( "Gris clar" ) |
RGBA( 211, 211, 211, 1 ) |
|
| Color. Verd clar |
ColorValue( "#90ee90" ) ColorValue( "verd clar" ) |
RGBA( 144, 238, 144, 1 ) |
|
| Color. Gris clar |
ColorValue( "#d3d3d3" ) ColorValue( "Gris clar") |
RGBA( 211, 211, 211, 1 ) |
|
| Color. Rosa clar |
ColorValue( "#ffb6c1" ) ColorValue( "ROSA CLAR" ) |
RGBA( 255, 182, 193, 1 ) |
|
| Color. Salmó lleuger |
ColorValue( "#ffa07a" ) ColorValue( "Salmó lleuger" ) |
RGBA( 255, 160, 122, 1 ) |
|
| Color. Verd marí clar |
ColorValue( "#20b2aa" ) ColorValue( "verd marí clar" ) |
RGBA( 32, 178, 170, 1 ) |
|
| Color. Blau cel clar |
ColorValue( "#87cefa" ) ColorValue( "Blau cel clar") |
RGBA( 135, 206, 250, 1 ) |
|
| Color. Gris pissarra clar |
ColorValue( "#778899" ) ColorValue( "LIGHTSFLEGRAY" ) |
RGBA( 119, 136, 153, 1 ) |
|
| Color. Gris pissarra clar |
ColorValue( "#778899" ) ColorValue( "Gris pissarra clara") |
RGBA( 119, 136, 153, 1 ) |
|
| Color. Blau d'acer clar |
ColorValue( "#b0c4de") ColorValue( "blau acer clar" ) |
RGBA( 176, 196, 222, 1 ) |
|
| Color. Groc clar |
ColorValue( "#ffffe0" ) ColorValue( "Groc clar" ) |
RGBA( 255, 255, 224, 1 ) |
|
| Color. Llima |
ColorValue( "#00ff00") ColorValue( "CALÇ") |
RGBA( 0, 255, 0, 1 ) |
|
| Color. Verd llima |
ColorValue( "#32cd32") ColorValue( "Verd llima") |
RGBA( 50, 205, 50, 1 ) |
|
| Color. Lli |
ColorValue( "#faf0e6" ) ColorValue( "lli" ) |
RGBA( 250, 240, 230, 1 ) |
|
| Color. Magenta |
ColorValue( "#ff00ff" ) ColorValue( "Magenta" ) |
RGBA( 255, 0, 255, 1 ) |
|
| Color. Maroon |
ColorValue( "#800000" ) ColorValue( "MAROON" ) |
RGBA( 128, 0, 0, 1 ) |
|
| Color. MitjanaAiguamarina |
ColorValue( "#66cdaa" ) ColorValue( "Aiguamarina mitjana") |
RGBA( 102, 205, 170, 1 ) |
|
| Color. Blau mitjà |
ColorValue( "#0000cd" ) ColorValue( "blau mitjà") |
RGBA( 0, 0, 205, 1 ) |
|
| Color. MitjanaOrquídia |
ColorValue( "#ba55d3" ) ColorValue( "Orquídia mitjana") |
RGBA( 186, 85, 211, 1 ) |
|
| Color. MitjanaPorpra |
ColorValue( "#9370db" ) ColorValue( "PORPRA MITJÀ" ) |
RGBA( 147, 112, 219, 1 ) |
|
| Color. Verd Mitjà |
ColorValue( "#3cb371" ) ColorValue( "Verd mar mitjà") |
RGBA( 60, 179, 113, 1 ) |
|
| Color. Blau pissarra mitjà |
ColorValue( "#7b68ee" ) ColorValue( "blau pissarra mitjana") |
RGBA( 123, 104, 238, 1 ) |
|
| Color. Verd de primavera mitjà |
ColorValue( "#00fa9a" ) ColorValue( "MediumSpringGreen" ) |
RGBA( 0, 250, 154, 1 ) |
|
| Color. Turquesa mitjana |
ColorValue( "#48d1cc" ) ColorValue( "MEDIUMTURQUESA" ) |
RGBA( 72, 209, 204, 1 ) |
|
| Color. MitjàVioletaVermell |
ColorValue( "#c71585") ColorValue( "Vermell violeta mitjà") |
RGBA( 199, 21, 133, 1 ) |
|
| Color. Blau mitjanit |
ColorValue( "#191970" ) ColorValue( "blau de mitjanit" ) |
RGBA( 25, 25, 112, 1 ) |
|
| Color. Crema de menta |
ColorValue( "#f5fffa" ) ColorValue( "Menta Cream" ) |
RGBA( 245, 255, 250, 1 ) |
|
| Color. Rosa boirosa |
ColorValue( "#ffe4e1" ) ColorValue( "MISTYROSE" ) |
RGBA( 255, 228, 225, 1 ) |
|
| Color. Mocassí |
ColorValue( "#ffe4b5" ) ColorValue( "Mocassí" ) |
RGBA( 255, 228, 181, 1 ) |
|
| Color. NavajoBlanc |
ColorValue( "#ffdead") ColorValue( "navajowhite" ) |
RGBA( 255, 222, 173, 1 ) |
|
| Color. Armada |
ColorValue( "#000080" ) ColorValue( "Marina") |
RGBA( 0, 0, 128, 1 ) |
|
| Color. Encaix vell |
ColorValue( "#fdf5e6" ) ColorValue( "OLDLACE" ) |
RGBA( 253, 245, 230, 1 ) |
|
| Color. Oliva |
ColorValue( "#808000" ) ColorValue( "Oliva") |
RGBA( 128, 128, 0, 1 ) |
|
| Color. OliveDrab |
ColorValue( "#6b8e23" ) ColorValue( "olivedrab" ) |
RGBA( 107, 142, 35, 1 ) |
|
| Color. Taronja |
ColorValue( "#ffa500") ColorValue( "Taronja") |
RGBA( 255, 165, 0, 1 ) |
|
| Color. Vermell taronja |
ColorValue( "#ff4500") ColorValue( "VERMELL TARONJAT" ) |
RGBA( 255, 69, 0, 1 ) |
|
| Color. Orquídia |
ColorValue( "#da70d6" ) ColorValue( "Orquídia") |
RGBA( 218, 112, 214, 1 ) |
|
| Color. Vareta d'or pàl·lid |
ColorValue( "#eee8aa" ) ColorValue( "vareta d'or pàl·lid" ) |
RGBA( 238, 232, 170, 1 ) |
|
| Color. Verd pàl·lid |
ColorValue( "#98fb98") ColorValue( "Verd pàl·lid") |
RGBA( 152, 251, 152, 1 ) |
|
| Color. Turquesa pàl·lida |
ColorValue( "#afeeee" ) ColorValue( "PALETURQUESA" ) |
RGBA( 175, 238, 238, 1 ) |
|
| Color. Vermell violeta pàl·lid |
ColorValue( "#db7093") ColorValue( "Vermell violeta pàl·lid" ) |
RGBA( 219, 112, 147, 1 ) |
|
| Color. Fuet de papaia |
ColorValue( "#ffefd5" ) ColorValue( "papayawhip" ) |
RGBA( 255, 239, 213, 1 ) |
|
| Color. Peach Puff |
ColorValue( "#ffdab9" ) ColorValue( "Peach Puff" ) |
RGBA( 255, 218, 185, 1 ) |
|
| Color. El Perú |
ColorValue( "#cd853f" ) ColorValue( "PERU" ) |
RGBA( 205, 133, 63, 1 ) |
|
| Color. Rosa |
ColorValue( "#ffc0cb" ) ColorValue( "Rosa") |
RGBA( 255, 192, 203, 1 ) |
|
| Color. Pruna |
ColorValue( "#dda0dd" ) ColorValue( "pruna" ) |
RGBA( 221, 160, 221, 1 ) |
|
| Color. Pols blau |
ColorValue( "#b0e0e6" ) ColorValue( "Blau pols" ) |
RGBA( 176, 224, 230, 1 ) |
|
| Color. Porpra |
ColorValue( "#800080" ) ColorValue( "PÚRPURA") |
RGBA( 128, 0, 128, 1 ) |
|
| Color. Vermell |
ColorValue( "#ff0000" ) ColorValue( "Vermell" ) |
RGBA( 255, 0, 0, 1 ) |
|
| Color. Marró rosat |
ColorValue( "#bc8f8f" ) ColorValue( "marró rosat") |
RGBA( 188, 143, 143, 1 ) |
|
| Color. Blau reial |
ColorValue( "#4169e1" ) ColorValue( "Blau Reial") |
RGBA( 65, 105, 225, 1 ) |
|
| Color. SaddleBrown |
ColorValue( "#8b4513" ) ColorValue( "SADDLEBROWN" ) |
RGBA( 139, 69, 19, 1 ) |
|
| Color. Salmó |
ColorValue( "#fa8072" ) ColorValue( "Salmó" ) |
RGBA( 250, 128, 114, 1 ) |
|
| Color. Marró sorrenc |
ColorValue( "#f4a460" ) ColorValue( "marró sorrenc") |
RGBA( 244, 164, 96, 1 ) |
|
| Color. Verd mar |
ColorValue( "#2e8b57") ColorValue( "Verd mar") |
RGBA( 46, 139, 87, 1 ) |
|
| Color. Seashell |
ColorValue( "#fff5ee" ) ColorValue( "PETXINA DE MAR") |
RGBA( 255, 245, 238, 1 ) |
|
| Color. Sienna |
ColorValue( "#a0522d") ColorValue( "Siena") |
RGBA( 160, 82, 45, 1 ) |
|
| Color. Plata |
ColorValue( "#c0c0c0") ColorValue( "plata" ) |
RGBA( 192, 192, 192, 1 ) |
|
| Color. Blau cel |
ColorValue( "#87ceeb") ColorValue( "Blau cel" ) |
RGBA( 135, 206, 235, 1 ) |
|
| Color. Blau pissarra |
ColorValue( "#6a5acd") ColorValue( "SLATEBLUE" ) |
RGBA( 106, 90, 205, 1 ) |
|
| Color. Gris pissarra |
ColorValue( "#708090" ) ColorValue( "Gris pissarra") |
RGBA( 112, 128, 144, 1 ) |
|
| Color. Gris pissarra |
ColorValue( "#708090" ) ColorValue( "gris pissarra") |
RGBA( 112, 128, 144, 1 ) |
|
| Color. Neu |
ColorValue( "#fffafa" ) ColorValue( "Neu" ) |
RGBA( 255, 250, 250, 1 ) |
|
| Color. Verd primavera |
ColorValue( "#00ff7f") ColorValue( "SPRINGGREEN" ) |
RGBA( 0, 255, 127, 1 ) |
|
| Color. Blau acer |
ColorValue( "#4682b4") ColorValue( "SteelBlue" ) |
RGBA( 70, 130, 180, 1 ) |
|
| Color. Bronzejat |
ColorValue( "#d2b48c") ColorValue( "bronzejat" ) |
RGBA( 210, 180, 140, 1 ) |
|
| Color. Xarxet |
ColorValue( "#008080" ) ColorValue( "Verd verd" ) |
RGBA( 0, 128, 128, 1 ) |
|
| Color. Card |
ColorValue( "#d8bfd8" ) ColorValue( "THISTLE" ) |
RGBA( 216, 191, 216, 1 ) |
|
| Color. Tomàquet |
ColorValue( "#ff6347" ) ColorValue( "Tomàquet" ) |
RGBA( 255, 99, 71, 1 ) |
|
| Color. Transparent |
ColorValue( "#00000000" ) ColorValue( "Transparent" ) |
RGBA( 0, 0, 0, 0 ) |
|
| Color. Turquesa |
ColorValue( "#40e0d0" ) ColorValue( "turquesa" ) |
RGBA( 64, 224, 208, 1 ) |
|
| Color. Violeta |
ColorValue( "#ee82ee" ) ColorValue( "Violeta") |
RGBA( 238, 130, 238, 1 ) |
|
| Color. Blat |
ColorValue( "#f5deb3" ) ColorValue( "BLAT") |
RGBA( 245, 222, 179, 1 ) |
|
| Color. Blanc |
ColorValue( "#ffffff" ) ColorValue( "Blanc" ) |
RGBA( 255, 255, 255, 1 ) |
|
| Color. Fum blanc |
ColorValue( "#f5f5f5") ColorValue( "fum blanc" ) |
RGBA( 245, 245, 245, 1 ) |
|
| Color. Groc |
ColorValue( "#ffff00" ) ColorValue( "Groc" ) |
RGBA( 255, 255, 0, 1 ) |
|
| Color. Verd groc |
ColorValue( "#9acd32" ) ColorValue( "GROC VERD" ) |
RGBA( 154, 205, 50, 1 ) |
|