1# Data Type Attributes 2 3## Length Type 4 5| Name | Type | Description | 6| ---------- | -------------------------- | ---------------------------------------- | 7| length | string \| number | Size unit. When the type is **number**, the unit is px. When the type is **string**, the pixel unit needs to be explicitly specified. Currently, the following pixel units are supported:<br>- **px**: logical size unit.<br>- **fp**<sup>6+</sup>: font size unit, which varies with the system font size. This unit is only available for text components.| 8| percentage | string | Unit in percentage, for example, **50%**. | 9 10 11## Color Type 12 13| Name | Type | Description | 14| ----- | --------------------- | ---------------------------------------- | 15| color | string \| color enums| Color information. The color enums are not supported in JavaScript scripts.<br>Available string formats are as follows:<br>- 'rgb(255, 255, 255)'<br>- 'rgba(255, 255, 255, 1.0)'<br>- HEX format: '\#rrggbb', '\#aarrggbb'<br>- Enumeration format: 'black','white'.| 16 17**Table 1** Color enums 18 19| Name | Hexadecimal Code | Color | 20| -------------------- | -------- | ---------------------------------------- | 21| aliceblue | \#f0f8ff |  | 22| antiquewhite | \#faebd7 |  | 23| aqua | \#00ffff |  | 24| aquamarine | \#7fffd4 |  | 25| azure | \#f0ffff |  | 26| beige | \#f5f5dc |  | 27| bisque | \#ffe4c4 |  | 28| black | \#000000 |  | 29| blanchedalmond | \#ffebcd |  | 30| blue | \#0000ff |  | 31| blueviolet | \#8a2be2 |  | 32| brown | \#a52a2a |  | 33| burlywood | \#deB887 |  | 34| cadetblue | \#5f9ea0 |  | 35| chartreuse | \#7fff00 |  | 36| chocolate | \#d2691e |  | 37| coral | \#ff7f50 |  | 38| cornflowerblue | \#6495ed |  | 39| cornsilk | \#fff8dc |  | 40| crimson | \#dc143c |  | 41| cyan | \#00ffff |  | 42| darkblue | \#00008b |  | 43| darkcyan | \#008b8b |  | 44| darkgoldenrod | \#b8860b |  | 45| darkgray | \#a9a9a9 |  | 46| darkgreen | \#006400 |  | 47| darkgrey | \#a9a9a9 |  | 48| darkkhaki | \#bdb76b |  | 49| darkmagenta | \#8b008b |  | 50| darkolivegreen | \#556b2f |  | 51| darkorange | \#ff8c00 |  | 52| darkorchid | \#9932cc |  | 53| darkred | \#8b0000 |  | 54| darksalmon | \#e9967a |  | 55| darkseagreen | \#8fbc8f |  | 56| darkslateblue | \#483d8b |  | 57| darkslategray | \#2f4f4f |  | 58| darkslategrey | \#2f4f4f |  | 59| darkturquoise | \#00ced1 |  | 60| darkviolet | \#9400d3 |  | 61| deeppink | \#ff1493 |  | 62| deepskyblue | \#00bfff |  | 63| dimgray | \#696969 |  | 64| dimgrey | \#696969 |  | 65| dodgerblue | \#1e90ff |  | 66| firebrick | \#b22222 |  | 67| floralwhite | \#fffaf0 |  | 68| forestgreen | \#228b22 |  | 69| fuchsia | \#ff00ff |  | 70| gainsboro | \#dcdcdc |  | 71| ghostwhite | \#f8f8ff |  | 72| gold | \#ffd700 |  | 73| goldenrod | \#daa520 |  | 74| gray | \#808080 |  | 75| green | \#008000 |  | 76| greenyellow | \#adff2f |  | 77| grey | \#808080 |  | 78| honeydew | \#f0fff0 |  | 79| hotpink | \#ff69b4 |  | 80| indianred | \#cd5c5c |  | 81| indigo | \#4b0082 |  | 82| ivory | \#fffff0 |  | 83| khaki | \#f0e68c |  | 84| lavender | \#e6e6fa |  | 85| lavenderblush | \#fff0f5 |  | 86| lawngreen | \#7cfc00 |  | 87| lemonchiffon | \#fffacd |  | 88| lightblue | \#add8e6 |  | 89| lightcoral | \#f08080 |  | 90| lightcyan | \#e0ffff |  | 91| lightgoldenrodyellow | \#fafad2 |  | 92| lightgray | \#d3d3d3 |  | 93| lightgreen | \#90ee90 |  | 94| lightpink | \#ffb6c1 |  | 95| lightsalmon | \#ffa07a |  | 96| lightseagreen | \#20b2aa |  | 97| lightskyblue | \#87cefa |  | 98| lightslategray | \#778899 |  | 99| lightslategrey | \#778899 |  | 100| lightsteelblue | \#b0c4de |  | 101| lightyellow | \#ffffe0 |  | 102| lime | \#00ff00 |  | 103| limegreen | \#32cd32 |  | 104| linen | \#faf0e6 |  | 105| magenta | \#ff00ff |  | 106| maroon | \#800000 |  | 107| mediumaquamarine | \#66cdaa |  | 108| mediumblue | \#0000cd |  | 109| mediumorchid | \#ba55d3 |  | 110| mediumpurple | \#9370db |  | 111| mediumseagreen | \#3cb371 |  | 112| mediumslateblue | \#7b68ee |  | 113| mediumspringgreen | \#00fa9a |  | 114| mediumturquoise | \#48d1cc |  | 115| mediumvioletred | \#c71585 |  | 116| midnightblue | \#191970 |  | 117| mintcream | \#f5fffa |  | 118| mistyrose | \#ffe4e1 |  | 119| moccasin | \#ffe4b5 |  | 120| navajowhite | \#ffdead |  | 121| navy | \#000080 |  | 122| oldlace | \#fdf5e6 |  | 123| olive | \#808000 |  | 124| olivedrab | \#6b8e23 |  | 125| orange | \#ffa500 |  | 126| orangered | \#ff4500 |  | 127| orchid | \#da70d6 |  | 128| palegoldenrod | \#eee8aa |  | 129| palegreen | \#98fb98 |  | 130| paleturquoise | \#afeeee |  | 131| palevioletred | \#db7093 |  | 132| papayawhip | \#ffefd5 |  | 133| peachpuff | \#ffdab9 |  | 134| peru | \#cd853f |  | 135| pink | \#ffc0cb |  | 136| plum | \#dda0dd |  | 137| powderblue | \#b0e0e6 |  | 138| purple | \#800080 |  | 139| rebeccapurple | \#663399 |  | 140| red | \#ff0000 |  | 141| rosybrown | \#bc8f8f |  | 142| royalblue | \#4169e1 |  | 143| saddlebrown | \#8b4513 |  | 144| salmon | \#fa8072 |  | 145| sandybrown | \#f4a460 |  | 146| seagreen | \#2e8b57 |  | 147| seashell | \#fff5ee |  | 148| sienna | \#a0522d |  | 149| silver | \#c0c0c0 |  | 150| skyblue | \#87ceeb |  | 151| slateblue | \#6a5acd |  | 152| slategray | \#708090 |  | 153| slategrey | \#708090 |  | 154| snow | \#fffafa |  | 155| springgreen | \#00ff7f |  | 156| steelblue | \#4682b4 |  | 157| tan | \#d2b48c |  | 158| teal | \#008080 |  | 159| thistle | \#d8Bfd8 |  | 160| tomato | \#ff6347 |  | 161| turquoise | \#40e0d0 |  | 162| violet | \#ee82ee |  | 163| wheat | \#f5deb3 |  | 164| white | \#ffffff |  | 165| whitesmoke | \#f5f5f5 |  | 166| yellow | \#ffff00 |  | 167| yellowgreen | \#9acd32 |  | 168