Un codice RGB (Rosso-Verde-Blu) a sei cifre che può essere visualizzato con HTML.
Utilizzato in Party per associare un
colore visualizzabile sul web con ogni parte. Il codice RGB è specificato in formato esadecimale,
in modo che il codice RGB per il colore verde sia 00ff00 (#00 + #ff + #00).
Esempi
XML
<Party objectId="par0004"> <Abbreviation>IND</Abbreviation> <Color>202f66</Color> <Name> <Text language="en">Independent</Text> <Text language="es">Independiente</Text> <Text language="fr">Indépendant</Text> <Text language="pl">Niezależny</Text> <Text language="hi">स्वतंत्र</Text> </Name> </Party>
JSON
"Party": { "objectId": "par0004", "Abbreviation": "IND", "Color": "202f66", "Name": { "Text": [ { "language": "en", "value": "Independent" }, { "language": "es", "value": "Independiente" }, { "language": "fr", "value": "Indépendant" }, { "language": "pl", "value": "Niezależny" }, { "language": "hi", "value": "स्वतंत्र" } ] } }