diff --git a/guide/english/css/css3-colors/index.md b/guide/english/css/css3-colors/index.md index f14d1ad71d..c95a6ec48d 100644 --- a/guide/english/css/css3-colors/index.md +++ b/guide/english/css/css3-colors/index.md @@ -35,7 +35,11 @@ This rule changes the font color of all p elements to green, just like above. ### Hexadecimal Values -Hexadecimal values are yet another way to define colors in CSS and they work quite similarly to RGB values.
+Hexadecimal values are yet another way to define colors in CSS and they work quite similarly to RGB values. It is supported in all browsers.
+ +**A hexadecimal color is specified with: #RRGGBB**
+ +RR(Red), GG(Green), BB(Blue) are hexadecimal integers between 00 and FF specify the intensity of the color.
A random hex code would like this: `#29432b`, where the first two characters after the hash stand for the amount of red in the mix, the second two stand for the amount of green and the last two stand for the amount of blue.
@@ -76,10 +80,19 @@ Color names take only 140 values, while RGB and HEX values have 16,777,216 possi -#### More Information: +### More Information: [w3schools](https://www.w3schools.com/colors/default.asp) [W3 Draft Documentation](https://drafts.csswg.org/css-color-3/#color) [MDN | CSS colors](https://developer.mozilla.org/en-US/docs/Web/CSS/color) + +### Useful Tools +[0to255](http://www.0to255.com/) + +[Flat UI Colors](https://flatuicolors.com/) + +[Materials Design Palette](https://www.materialpalette.com/) + +[Color Hunt](https://colorhunt.co/)