What is the color range for website design? Is it limited to 256?
Will I choose any color from the Photoshop color palette?
Edit: I'm talking about color attribute in CSS
If you mean that You can specify how many colors you can by using rgb ()
or hex code, you can
256 * 256 * 256 = 16,777,216
You can specify different colors (ranging from 256 to 0 ( matches a limit of 0x0)
) to 255 ( 0xFF
) each red, Green and blue).
It does not consider the 216-color web-safe color palette that Martin Beeby mentions, or the performance capabilities of any monitor for that matter.
Comments
Post a Comment