top of page
HEX Value
In CSS, a color can be specified using a hexadecimal value in the form:
#rrggbb
Where rr (red), gg (green) and bb (blue) are hexadecimal values between 00 and ff (same as decimal 0-255).
For example, #ff0000 is displayed as red, because red is set to its highest value (ff) and the others are set to the lowest value (00).
Shades of gray are often defined using equal values for all the 3 light sources:
![21.PNG](https://static.wixstatic.com/media/0aad0d_a03665487bb646d188b84760def05d6d~mv2.png/v1/fill/w_762,h_248,al_c,q_85,usm_0.66_1.00_0.01,enc_avif,quality_auto/21_PNG.png)
![22.PNG](https://static.wixstatic.com/media/0aad0d_c79fbdc60be64f3e8b6974e8b43e679d~mv2.png/v1/fill/w_762,h_245,al_c,q_85,usm_0.66_1.00_0.01,enc_avif,quality_auto/22_PNG.png)
bottom of page