#4c568a hex color information.
RGB value of #4c568a is (76,86,138)
Change page background color to #4c568a
| Reset
| RGB | 76 | 86 | 138 |
|---|---|---|---|
| HSL | 0.64 | 0.29 | 0.42 |
| HSV | 230° | 45° | 54° |
| CMYK | 0.45 | 0.38 | 0.00 0.46 |
| XYZ | 10.8957 | 10.0271 | 25.4059 |
| Yxy | 10.0271 | 0.2352 | 0.2164 |
| Hunter Lab | 31.6656 | 6.0046 | -25.4036 |
| CIE-Lab | 37.8910 | 10.6007 | -30.2119 |
#4c568a hex color red value is 76, green value is 86 and the blue value of its RGB is 86. Cylindrical-coordinate representations (also known as HSL) of color #4c568a hue: 0.64 , saturation: 0.29 and the lightness value of 4c568a is 0.42.
The process color (four color CMYK) of #4c568a hex color is 0.45, 0.38, 0.00, 0.46. Web safe color of #4c568a is #336699
Color #4c568a contains mostly BLUE color.
| Base | Red | Green | Blue |
|---|---|---|---|
| Binary | 01001100 | 01010110 | 10001010 |
| Octal | 114 | 126 | 212 |
| Decimal | 76 | 86 | 138 |
| Hexadecimal | 4C | 56 | 8A |
Lorem ipsum dolor sit amet.
Lorem ipsum dolor sit amet.
.mybgcolor {background-color:#4c568a; }
.myforecolor {color:#4c568a; }
.mybordercolor {border:3px solid #4c568a; }
This sample text font color is #4c568a
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:#4c568a">Text here</p>
This div background color is #4c568a
<div style="background-color:#4c568a">
Div content here</div>
This div border color is #4c568a
<div style="border:3px solid #4c568a">
Div here</div>
| #4c568a | border color |
.textShadowRgb {
text-shadow: 4px 4px 2px rgba(76,86,138, 0.8);
}
.textShadowHex {
text-shadow: 4px 4px 2px #4c568a;
}
.divShadow {
-moz-box-shadow: 1px 1px 3px 2px #4c568a;
-webkit-box-shadow: 1px 1px 3px 2px #4c568a;
box-shadow: 1px 1px 3px 2px #4c568a;
}
<p style="text-shadow: 4px 4px 2px rgba(76,86,138, 0.8);">Text here</p>
This text has shadow with rgb values.
<p style="text-shadow: 4px 4px 2px #4c568a">Text here</p>
This text has shadow with hex values.
This div box has shadow with color #4c568a
<div style="-moz-box-shadow: 1px 1px 3px 2px #4c568a; -webkit-box-shadow: 1px 1px 3px 2px #4c568a; box-shadow: 1px 1px 3px 2px #4c568a;">
Div content here</div>