#525252 hex color information.
RGB value of #525252 is (82,82,82)
Change page background color to #525252
| Reset
| RGB | 82 | 82 | 82 |
|---|---|---|---|
| HSL | 0.00 | 0.00 | 0.32 |
| HSV | 0° | 0° | 32° |
| CMYK | 0.00 | 0.00 | 0.00 0.68 |
| XYZ | 8.0200 | 8.4376 | 9.1886 |
| Yxy | 8.4376 | 0.3127 | 0.3290 |
| Hunter Lab | 29.0475 | -1.5495 | 1.5781 |
| CIE-Lab | 34.8781 | 0.0029 | -0.0047 |
#525252 hex color red value is 82, green value is 82 and the blue value of its RGB is 82. Cylindrical-coordinate representations (also known as HSL) of color #525252 hue: 0.00 , saturation: 0.00 and the lightness value of 525252 is 0.32.
The process color (four color CMYK) of #525252 hex color is 0.00, 0.00, 0.00, 0.68. Web safe color of #525252 is #666666
Color #525252 rgb is equally color. #525252 color name is Gray32.
| Base | Red | Green | Blue |
|---|---|---|---|
| Binary | 01010010 | 01010010 | 01010010 |
| Octal | 122 | 122 | 122 |
| Decimal | 82 | 82 | 82 |
| Hexadecimal | 52 | 52 | 52 |
Lorem ipsum dolor sit amet.
Lorem ipsum dolor sit amet.
.mybgcolor {background-color:#525252; }
.myforecolor {color:#525252; }
.mybordercolor {border:3px solid #525252; }
This sample text font color is #525252
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
<p style="color:#525252">Text here</p>
This div background color is #525252
<div style="background-color:#525252">
Div content here</div>
This div border color is #525252
<div style="border:3px solid #525252">
Div here</div>
| #525252 | border color |
.textShadowRgb {
text-shadow: 4px 4px 2px rgba(82,82,82, 0.8);
}
.textShadowHex {
text-shadow: 4px 4px 2px #525252;
}
.divShadow {
-moz-box-shadow: 1px 1px 3px 2px #525252;
-webkit-box-shadow: 1px 1px 3px 2px #525252;
box-shadow: 1px 1px 3px 2px #525252;
}
<p style="text-shadow: 4px 4px 2px rgba(82,82,82, 0.8);">Text here</p>
This text has shadow with rgb values.
<p style="text-shadow: 4px 4px 2px #525252">Text here</p>
This text has shadow with hex values.
This div box has shadow with color #525252
<div style="-moz-box-shadow: 1px 1px 3px 2px #525252; -webkit-box-shadow: 1px 1px 3px 2px #525252; box-shadow: 1px 1px 3px 2px #525252;">
Div content here</div>