#5e696e hex color information.
RGB value of #5e696e is (94,105,110)
Change page background color to #5e696e
| Reset
| RGB | 94 | 105 | 110 |
|---|---|---|---|
| HSL | 0.55 | 0.08 | 0.40 |
| HSV | 199° | 15° | 43° |
| CMYK | 0.15 | 0.05 | 0.00 0.57 |
| XYZ | 12.4821 | 13.6086 | 16.7207 |
| Yxy | 13.6086 | 0.2916 | 0.3179 |
| Hunter Lab | 36.8898 | -4.1597 | -1.0509 |
| CIE-Lab | 43.6663 | -3.0345 | -4.2284 |
#5e696e hex color red value is 94, green value is 105 and the blue value of its RGB is 105. Cylindrical-coordinate representations (also known as HSL) of color #5e696e hue: 0.55 , saturation: 0.08 and the lightness value of 5e696e is 0.40.
The process color (four color CMYK) of #5e696e hex color is 0.15, 0.05, 0.00, 0.57. Web safe color of #5e696e is #666666
Color #5e696e contains mostly BLUE color.
| Base | Red | Green | Blue |
|---|---|---|---|
| Binary | 01011110 | 01101001 | 01101110 |
| Octal | 136 | 151 | 156 |
| Decimal | 94 | 105 | 110 |
| Hexadecimal | 5E | 69 | 6E |
Lorem ipsum dolor sit amet.
Lorem ipsum dolor sit amet.
.mybgcolor {background-color:#5e696e; }
.myforecolor {color:#5e696e; }
.mybordercolor {border:3px solid #5e696e; }
This sample text font color is #5e696e
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:#5e696e">Text here</p>
This div background color is #5e696e
<div style="background-color:#5e696e">
Div content here</div>
This div border color is #5e696e
<div style="border:3px solid #5e696e">
Div here</div>
| #5e696e | border color |
.textShadowRgb {
text-shadow: 4px 4px 2px rgba(94,105,110, 0.8);
}
.textShadowHex {
text-shadow: 4px 4px 2px #5e696e;
}
.divShadow {
-moz-box-shadow: 1px 1px 3px 2px #5e696e;
-webkit-box-shadow: 1px 1px 3px 2px #5e696e;
box-shadow: 1px 1px 3px 2px #5e696e;
}
<p style="text-shadow: 4px 4px 2px rgba(94,105,110, 0.8);">Text here</p>
This text has shadow with rgb values.
<p style="text-shadow: 4px 4px 2px #5e696e">Text here</p>
This text has shadow with hex values.
This div box has shadow with color #5e696e
<div style="-moz-box-shadow: 1px 1px 3px 2px #5e696e; -webkit-box-shadow: 1px 1px 3px 2px #5e696e; box-shadow: 1px 1px 3px 2px #5e696e;">
Div content here</div>