Exact syntax for <color> values

I’m trying to work out the exact syntax that RGB <color> values have,
according to CSS 2.1.  http://www.w3.org/TR/CSS21/syndata.html says:

  The format of an RGB value in the functional notation is "rgb("
  followed by a comma-separated list of three numerical values (either
  three integer values or three percentage values) followed by ")". The
  integer value 255 corresponds to 100%, and to F or FF in the
  hexadecimal notation: rgb(255,255,255) = rgb(100%,100%,100%) = #FFF.
  Whitespace characters are allowed around the numerical values.

A couple of specific questions:

  * Are the integers within the parentheses <integer>s or something
    else?

  * Are the percentages within the parentheses ‘<integer> "%"’,
    ‘<number> "%"’ or something else?

Thanks,

Cameron

-- 
Cameron McCormack ≝ http://mcc.id.au/

Received on Monday, 13 April 2009 08:57:17 UTC