#4c4c4c hex color information.
RGB value of #4c4c4c is (76,76,76)
Change page background color to #4c4c4c
| Reset
| RGB | 76 | 76 | 76 |
|---|---|---|---|
| HSL | 0.00 | 0.00 | 0.30 |
| HSV | 0° | 0° | 30° |
| CMYK | 0.00 | 0.00 | 0.00 0.70 |
| XYZ | 6.8694 | 7.2272 | 7.8704 |
| Yxy | 7.2272 | 0.3127 | 0.3290 |
| Hunter Lab | 26.8835 | -1.4348 | 1.4607 |
| CIE-Lab | 32.3186 | 0.0016 | -0.0043 |
#4c4c4c hex color red value is 76, green value is 76 and the blue value of its RGB is 76. Cylindrical-coordinate representations (also known as HSL) of color #4c4c4c hue: 0.00 , saturation: 0.00 and the lightness value of 4c4c4c is 0.30.
The process color (four color CMYK) of #4c4c4c hex color is 0.00, 0.00, 0.00, 0.70. Web safe color of #4c4c4c is #333333
Color #4c4c4c rgb is equally color.
| Base | Red | Green | Blue |
|---|---|---|---|
| Binary | 01001100 | 01001100 | 01001100 |
| Octal | 114 | 114 | 114 |
| Decimal | 76 | 76 | 76 |
| Hexadecimal | 4C | 4C | 4C |
Analogous colors are identical
Lorem ipsum dolor sit amet.
Lorem ipsum dolor sit amet.
.mybgcolor {background-color:#4c4c4c; }
.myforecolor {color:#4c4c4c; }
.mybordercolor {border:3px solid #4c4c4c; }
This sample text font color is #4c4c4c
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:#4c4c4c">Text here</p>
This div background color is #4c4c4c
<div style="background-color:#4c4c4c">
Div content here</div>
This div border color is #4c4c4c
<div style="border:3px solid #4c4c4c">
Div here</div>
| #4c4c4c | border color |
.textShadowRgb {
text-shadow: 4px 4px 2px rgba(76,76,76, 0.8);
}
.textShadowHex {
text-shadow: 4px 4px 2px #4c4c4c;
}
.divShadow {
-moz-box-shadow: 1px 1px 3px 2px #4c4c4c;
-webkit-box-shadow: 1px 1px 3px 2px #4c4c4c;
box-shadow: 1px 1px 3px 2px #4c4c4c;
}
<p style="text-shadow: 4px 4px 2px rgba(76,76,76, 0.8);">Text here</p>
This text has shadow with rgb values.
<p style="text-shadow: 4px 4px 2px #4c4c4c">Text here</p>
This text has shadow with hex values.
This div box has shadow with color #4c4c4c
<div style="-moz-box-shadow: 1px 1px 3px 2px #4c4c4c; -webkit-box-shadow: 1px 1px 3px 2px #4c4c4c; box-shadow: 1px 1px 3px 2px #4c4c4c;">
Div content here</div>