The common data types for SVG's properties and attributes fall into the following categories:
ListOfXXX:
XXX
| XXX comma-wsp ListOfXXX
comma-wsp:
(wsp+ comma? wsp*) | (comma wsp*)
comma:
","
wsp:
(#x20 | #x9 | #xD | #xA)
where XXX represents a particular type of value.The following sixteen color keywords can be used as a keyword value for data type <color>:
| black | rgb( 0, 0, 0) | green | rgb( 0, 128, 0) | ||
| silver | rgb(192, 192, 192) | lime | rgb( 0, 255, 0) | ||
| gray | rgb(128, 128, 128) | olive | rgb(128, 128, 0) | ||
| white | rgb(255, 255, 255) | yellow | rgb(255, 255, 0) | ||
| maroon | rgb(128, 0, 0) | navy | rgb( 0, 0, 128) | ||
| red | rgb(255, 0, 0) | blue | rgb( 0, 0, 255) | ||
| purple | rgb(128, 0, 128) | teal | rgb( 0, 128, 128) | ||
| fuchsia | rgb(255, 0, 255) | aqua | rgb( 0, 255, 255) |