1# Universal Styles
2
3
4You can set universal styles for components in the **style** attribute or **.css** files.
5
6
7| Name                                | Type                                      | Default Value  | Mandatory  | Description                                      |
8| ---------------------------------- | ---------------------------------------- | ----- | ---- | ---------------------------------------- |
9| width                              | &lt;length&gt; \| &lt;percentage&gt;<sup>5+</sup> | -     | No   | Component width.<br><br>If this attribute is not set, the default value **0** is used.       |
10| height                             | &lt;length&gt; \| &lt;percentage&gt;<sup>5+</sup> | -     | No   | Component height.<br><br>If this attribute is not set, the default value **0** is used.       |
11| padding                            | &lt;length&gt;                           | 0     | No   | Shorthand attribute to set the padding for all sides in a declaration.<br>The attribute can have one to four values:<br>- If you set only one value, it specifies the padding for all the four sides.<br>- If you set two values, the first value specifies the top and bottom padding, and the second value specifies the left and right padding.<br>- If you set three values, the first value specifies the top padding, the second value specifies the left and right padding, and the third value specifies the bottom padding.<br>- If you set four values, they respectively specify the padding for top, right, bottom, and left sides (in clockwise order).|
12| padding-[left\|top\|right\|bottom] | &lt;length&gt;                           | 0     | No   | Left, top, right, and bottom padding.                         |
13| margin                             | &lt;length&gt; \| &lt;percentage&gt;<sup>5+</sup> | 0     | No   | Shorthand attribute to set the margin for all sides in a declaration. The attribute can have one to four values:<br>- If you set only one value, it specifies the margin for all the four sides.<br>- If you set two values, the first value specifies the top and bottom margins, and the second value specifies the left and right margins.<br>- If you set three values, the first value specifies the top margin, the second value specifies the left and right margins, and the third value specifies the bottom margin.<br>- If you set four values, they respectively specify the margin for top, right, bottom, and left sides (in clockwise order).|
14| margin-[left\|top\|right\|bottom]  | &lt;length&gt; \| &lt;percentage&gt;<sup>5+</sup> | 0     | No   | Left, top, right, and bottom margins.                         |
15| border-width                       | &lt;length&gt;                           | 0     | No   | Shorthand attribute to set the margin for all sides.                      |
16| border-color                       | &lt;color&gt;                            | black | No   | Shorthand attribute to set the color for all borders.                      |
17| border-radius                      | &lt;length&gt;                           | -     | No   | Radius of round-corner borders.           |
18| background-color                   | &lt;color&gt;                            | -     | No   | Background color.                                 |
19| opacity<sup>5+</sup>               | number                                   | 1     | No   | Opacity of an element. The value ranges from **0** to **1**. The value **1** means opaque, and **0** means completely transparent.       |
20| display                            | string                                   | flex  | No   | Type of the box containing an element. Available values are as follows:<br>- **flex**: flexible layout<br>- **none**: not rendered|
21| [left\|top]                        | &lt;length&gt; \| &lt;percentage&gt;<sup>6+</sup> | -     | No   | Edge of the element.<br>- **left**: left edge position of the element. This attribute defines the offset between the left edge of the margin area of a positioned element and left edge of its containing block.<br>- **top**: top edge position of the element. This attribute defines the offset between the top edge of a positioned element and that of a block included in the element.|
22
23
24> **NOTE**
25>
26> The aforementioned universal styles are not mandatory.
27>
28> Currently, the following color formats are supported:
29> - rgb(255, 255, 255)
30>
31> - rgba(255, 255, 255, 1.0)
32>
33> - HEX formats: \#rrggbb and \#aarrggbb
34>
35> - Enumeration format: as listed in Table 1. The enumeration format is not supported in the script.
36
37
38  **Table 1** Color enums
39
40| Name                | Hexadecimal Code    | Color                                      |
41| -------------------- | -------- | ---------------------------------------- |
42| aliceblue            | \#f0f8ff | ![aliceblue](figures/aliceblue.png)      |
43| antiquewhite         | \#faebd7 | ![antiquewhite](figures/antiquewhite.png) |
44| aqua                 | \#00ffff | ![aqua](figures/aqua.png)                |
45| aquamarine           | \#7fffd4 | ![aquamarine](figures/aquamarine.png)    |
46| azure                | \#f0ffff | ![azure](figures/azure.png)              |
47| beige                | \#f5f5dc | ![beige](figures/beige.png)              |
48| bisque               | \#ffe4c4 | ![bisque](figures/bisque.png)            |
49| black                | \#000000 | ![000000](figures/000000.png)            |
50| blanchedalmond       | \#ffebcd | ![blanchedalmond](figures/blanchedalmond.png) |
51| blue                 | \#0000ff | ![blue](figures/blue.png)                |
52| blueviolet           | \#8a2be2 | ![blueviolet](figures/blueviolet.png)    |
53| brown                | \#a52a2a | ![brown](figures/brown.png)              |
54| burlywood            | \#deB887 | ![burlywood](figures/burlywood.png)      |
55| cadetblue            | \#5f9ea0 | ![cadetblue](figures/cadetblue.png)      |
56| chartreuse           | \#7fff00 | ![chartreuse](figures/chartreuse.png)    |
57| chocolate            | \#d2691e | ![chocolate](figures/chocolate.png)      |
58| coral                | \#ff7f50 | ![coral](figures/coral.png)              |
59| cornflowerblue       | \#6495ed | ![cornflowerblue](figures/cornflowerblue.png) |
60| cornsilk             | \#fff8dc | ![cornsilk](figures/cornsilk.png)        |
61| crimson              | \#dc143c | ![crimson](figures/crimson.png)          |
62| cyan                 | \#00ffff | ![cyan](figures/cyan.png)                |
63| darkblue             | \#00008b | ![darkblue](figures/darkblue.png)        |
64| darkcyan             | \#008b8b | ![darkcyan](figures/darkcyan.png)        |
65| darkgoldenrod        | \#b8860b | ![darkgoldenrod](figures/darkgoldenrod.png) |
66| darkgray             | \#a9a9a9 | ![darkgray](figures/darkgray.png)        |
67| darkgreen            | \#006400 | ![darkgreen](figures/darkgreen.png)      |
68| darkgrey             | \#a9a9a9 | ![darkgrey](figures/darkgrey.png)        |
69| darkkhaki            | \#bdb76b | ![darkkhaki](figures/darkkhaki.png)      |
70| darkmagenta          | \#8b008b | ![darkmagenta](figures/darkmagenta.png)  |
71| darkolivegreen       | \#556b2f | ![darkolivegreen](figures/darkolivegreen.png) |
72| darkorange           | \#ff8c00 | ![darkorange](figures/darkorange.png)    |
73| darkorchid           | \#9932cc | ![darkorchid](figures/darkorchid.png)    |
74| darkred              | \#8b0000 | ![darkred](figures/darkred.png)          |
75| darksalmon           | \#e9967a | ![darksalmon](figures/darksalmon.png)    |
76| darkseagreen         | \#8fbc8f | ![darkseagreen](figures/darkseagreen.png) |
77| darkslateblue        | \#483d8b | ![darkslateblue](figures/darkslateblue.png) |
78| darkslategray        | \#2f4f4f | ![darkslategray](figures/darkslategray.png) |
79| darkslategrey        | \#2f4f4f | ![darkslategrey](figures/darkslategrey.png) |
80| darkturquoise        | \#00ced1 | ![darkturquoise](figures/darkturquoise.png) |
81| darkviolet           | \#9400d3 | ![darkviolet](figures/darkviolet.png)    |
82| deeppink             | \#ff1493 | ![deeppink](figures/deeppink.png)        |
83| deepskyblue          | \#00bfff | ![deepskyblue](figures/deepskyblue.png)  |
84| dimgray              | \#696969 | ![dimgray](figures/dimgray.png)          |
85| dimgrey              | \#696969 | ![dimgrey](figures/dimgrey.png)          |
86| dodgerblue           | \#1e90ff | ![dodgerblue](figures/dodgerblue.png)    |
87| firebrick            | \#b22222 | ![firebrick](figures/firebrick.png)      |
88| floralwhite          | \#fffaf0 | ![floralwhite](figures/floralwhite.png)  |
89| forestgreen          | \#228b22 | ![forestgreen](figures/forestgreen.png)  |
90| fuchsia              | \#ff00ff | ![fuchsia](figures/fuchsia.png)          |
91| gainsboro            | \#dcdcdc | ![gainsboro](figures/gainsboro.png)      |
92| ghostwhite           | \#f8f8ff | ![ghostwhite](figures/ghostwhite.png)    |
93| gold                 | \#ffd700 | ![gold](figures/gold.png)                |
94| goldenrod            | \#daa520 | ![goldenrod](figures/goldenrod.png)      |
95| gray                 | \#808080 | ![gray](figures/gray.png)                |
96| green                | \#008000 | ![green](figures/green.png)              |
97| greenyellow          | \#adff2f | ![greenyellow](figures/greenyellow.png)  |
98| grey                 | \#808080 | ![grey](figures/grey.png)                |
99| honeydew             | \#f0fff0 | ![honeydew](figures/honeydew.png)        |
100| hotpink              | \#ff69b4 | ![hotpink](figures/hotpink.png)          |
101| indianred            | \#cd5c5c | ![indianred](figures/indianred.png)      |
102| indigo               | \#4b0082 | ![indigo](figures/indigo.png)            |
103| ivory                | \#fffff0 | ![ivory](figures/ivory.png)              |
104| khaki                | \#f0e68c | ![khaki](figures/khaki.png)              |
105| lavender             | \#e6e6fa | ![lavender](figures/lavender.png)        |
106| lavenderblush        | \#fff0f5 | ![lavenderblush](figures/lavenderblush.png) |
107| lawngreen            | \#7cfc00 | ![lawngreen](figures/lawngreen.png)      |
108| lemonchiffon         | \#fffacd | ![lemonchiffon](figures/lemonchiffon.png) |
109| lightblue            | \#add8e6 | ![lightblue](figures/lightblue.png)      |
110| lightcoral           | \#f08080 | ![lightcoral](figures/lightcoral.png)    |
111| lightcyan            | \#e0ffff | ![lightcyan](figures/lightcyan.png)      |
112| lightgoldenrodyellow | \#fafad2 | ![lightgoldenrodyellow](figures/lightgoldenrodyellow.png) |
113| lightgray            | \#d3d3d3 | ![lightgray](figures/lightgray.png)      |
114| lightgreen           | \#90ee90 | ![lightgreen](figures/lightgreen.png)    |
115| lightpink            | \#ffb6c1 | ![lightpink](figures/lightpink.png)      |
116| lightsalmon          | \#ffa07a | ![lightsalmon](figures/lightsalmon.png)  |
117| lightseagreen        | \#20b2aa | ![lightseagreen](figures/lightseagreen.png) |
118| lightskyblue         | \#87cefa | ![lightskyblue](figures/lightskyblue.png) |
119| lightslategray       | \#778899 | ![lightslategray](figures/lightslategray.png) |
120| lightslategrey       | \#778899 | ![lightslategrey](figures/lightslategrey.png) |
121| lightsteelblue       | \#b0c4de | ![lightsteelblue](figures/lightsteelblue.png) |
122| lightyellow          | \#ffffe0 | ![lightyellow](figures/lightyellow.png)  |
123| lime                 | \#00ff00 | ![lime](figures/lime.png)                |
124| limegreen            | \#32cd32 | ![limegreen](figures/limegreen.png)      |
125| linen                | \#faf0e6 | ![linen](figures/linen.png)              |
126| magenta              | \#ff00ff | ![magenta](figures/magenta.png)          |
127| maroon               | \#800000 | ![maroon](figures/maroon.png)            |
128| mediumaquamarine     | \#66cdaa | ![mediumaquamarine](figures/mediumaquamarine.png) |
129| mediumblue           | \#0000cd | ![mediumblue](figures/mediumblue.png)    |
130| mediumorchid         | \#ba55d3 | ![mediumorchid](figures/mediumorchid.png) |
131| mediumpurple         | \#9370db | ![mediumpurple](figures/mediumpurple.png) |
132| mediumseagreen       | \#3cb371 | ![mediumseagreen](figures/mediumseagreen.png) |
133| mediumslateblue      | \#7b68ee | ![mediumslateblue](figures/mediumslateblue.png) |
134| mediumspringgreen    | \#00fa9a | ![mediumspringgreen](figures/mediumspringgreen.png) |
135| mediumturquoise      | \#48d1cc | ![mediumturquoise](figures/mediumturquoise.png) |
136| mediumvioletred      | \#c71585 | ![mediumvioletred](figures/mediumvioletred.png) |
137| midnightblue         | \#191970 | ![midnightblue](figures/midnightblue.png) |
138| mintcream            | \#f5fffa | ![mintcream](figures/mintcream.png)      |
139| mistyrose            | \#ffe4e1 | ![mistyrose](figures/mistyrose.png)      |
140| moccasin             | \#ffe4b5 | ![moccasin](figures/moccasin.png)        |
141| navajowhite          | \#ffdead | ![navajowhite](figures/navajowhite.png)  |
142| navy                 | \#000080 | ![navy](figures/navy.png)                |
143| oldlace              | \#fdf5e6 | ![oldlace](figures/oldlace.png)          |
144| olive                | \#808000 | ![olive](figures/olive.png)              |
145| olivedrab            | \#6b8e23 | ![olivedrab](figures/olivedrab.png)      |
146| orange               | \#ffa500 | ![orange](figures/orange.png)            |
147| orangered            | \#ff4500 | ![orangered](figures/orangered.png)      |
148| orchid               | \#da70d6 | ![orchid](figures/orchid.png)            |
149| palegoldenrod        | \#eee8aa | ![palegoldenrod](figures/palegoldenrod.png) |
150| palegreen            | \#98fb98 | ![palegreen](figures/palegreen.png)      |
151| paleturquoise        | \#afeeee | ![paleturquoise](figures/paleturquoise.png) |
152| palevioletred        | \#db7093 | ![palevioletred](figures/palevioletred.png) |
153| papayawhip           | \#ffefd5 | ![papayawhip](figures/papayawhip.png)    |
154| peachpuff            | \#ffdab9 | ![peachpuff](figures/peachpuff.png)      |
155| peru                 | \#cd853f | ![peru](figures/peru.png)                |
156| pink                 | \#ffc0cb | ![pink](figures/pink.png)                |
157| plum                 | \#dda0dd | ![plum](figures/plum.png)                |
158| powderblue           | \#b0e0e6 | ![powderblue](figures/powderblue.png)    |
159| purple               | \#800080 | ![purple](figures/purple.png)            |
160| rebeccapurple        | \#663399 | ![rebeccapurple](figures/rebeccapurple.png) |
161| red                  | \#ff0000 | ![red](figures/red.png)                  |
162| rosybrown            | \#bc8f8f | ![rosybrown](figures/rosybrown.png)      |
163| royalblue            | \#4169e1 | ![royalblue](figures/royalblue.png)      |
164| saddlebrown          | \#8b4513 | ![saddlebrown](figures/saddlebrown.png)  |
165| salmon               | \#fa8072 | ![salmon](figures/salmon.png)            |
166| sandybrown           | \#f4a460 | ![sandybrown](figures/sandybrown.png)    |
167| seagreen             | \#2e8b57 | ![seagreen](figures/seagreen.png)        |
168| seashell             | \#fff5ee | ![seashell](figures/seashell.png)        |
169| sienna               | \#a0522d | ![sienna](figures/sienna.png)            |
170| silver               | \#c0c0c0 | ![silver](figures/silver.png)            |
171| skyblue              | \#87ceeb | ![skyblue](figures/skyblue.png)          |
172| slateblue            | \#6a5acd | ![slateblue](figures/slateblue.png)      |
173| slategray            | \#708090 | ![slategray](figures/slategray.png)      |
174| slategrey            | \#708090 | ![slategray](figures/slategray.png)      |
175| snow                 | \#fffafa | ![snow](figures/snow.png)                |
176| springgreen          | \#00ff7f | ![springgreen](figures/springgreen.png)  |
177| steelblue            | \#4682b4 | ![steelblue](figures/steelblue.png)      |
178| tan                  | \#d2b48c | ![tan](figures/tan.png)                  |
179| teal                 | \#008080 | ![teal](figures/teal.png)                |
180| thistle              | \#d8Bfd8 | ![thistle](figures/thistle.png)          |
181| tomato               | \#ff6347 | ![tomato](figures/tomato.png)            |
182| turquoise            | \#40e0d0 | ![turquoise](figures/turquoise.png)      |
183| violet               | \#ee82ee | ![violet](figures/violet.png)            |
184| wheat                | \#f5deb3 | ![wheat](figures/wheat.png)              |
185| white                | \#ffffff | ![white](figures/white.png)              |
186| whitesmoke           | \#f5f5f5 | ![whitesmoke](figures/whitesmoke.png)    |
187| yellow               | \#ffff00 | ![yellow](figures/yellow.png)            |
188| yellowgreen          | \#9acd32 | ![yellowgreen](figures/yellowgreen.png)  |
189