#5d585e hex color information.
RGB value of #5d585e is (93,88,94)
Change page background color to #5d585e
| Reset
| RGB | 93 | 88 | 94 |
|---|---|---|---|
| HSL | 0.81 | 0.03 | 0.36 |
| HSV | 290° | 6° | 37° |
| CMYK | 0.01 | 0.06 | 0.00 0.63 |
| XYZ | 10.0243 | 10.1148 | 12.0137 |
| Yxy | 10.1148 | 0.3118 | 0.3146 |
| Hunter Lab | 31.8038 | 0.6052 | -0.1338 |
| CIE-Lab | 38.0477 | 3.2696 | -2.7402 |
#5d585e hex color red value is 93, green value is 88 and the blue value of its RGB is 88. Cylindrical-coordinate representations (also known as HSL) of color #5d585e hue: 0.81 , saturation: 0.03 and the lightness value of 5d585e is 0.36.
The process color (four color CMYK) of #5d585e hex color is 0.01, 0.06, 0.00, 0.63. Web safe color of #5d585e is #666666
Color #5d585e contains mostly BLUE color.
| Base | Red | Green | Blue |
|---|---|---|---|
| Binary | 01011101 | 01011000 | 01011110 |
| Octal | 135 | 130 | 136 |
| Decimal | 93 | 88 | 94 |
| Hexadecimal | 5D | 58 | 5E |
Lorem ipsum dolor sit amet.
Lorem ipsum dolor sit amet.
.mybgcolor {background-color:#5d585e; }
.myforecolor {color:#5d585e; }
.mybordercolor {border:3px solid #5d585e; }
This sample text font color is #5d585e
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:#5d585e">Text here</p>
This div background color is #5d585e
<div style="background-color:#5d585e">
Div content here</div>
This div border color is #5d585e
<div style="border:3px solid #5d585e">
Div here</div>
| #5d585e | border color |
.textShadowRgb {
text-shadow: 4px 4px 2px rgba(93,88,94, 0.8);
}
.textShadowHex {
text-shadow: 4px 4px 2px #5d585e;
}
.divShadow {
-moz-box-shadow: 1px 1px 3px 2px #5d585e;
-webkit-box-shadow: 1px 1px 3px 2px #5d585e;
box-shadow: 1px 1px 3px 2px #5d585e;
}
<p style="text-shadow: 4px 4px 2px rgba(93,88,94, 0.8);">Text here</p>
This text has shadow with rgb values.
<p style="text-shadow: 4px 4px 2px #5d585e">Text here</p>
This text has shadow with hex values.
This div box has shadow with color #5d585e
<div style="-moz-box-shadow: 1px 1px 3px 2px #5d585e; -webkit-box-shadow: 1px 1px 3px 2px #5d585e; box-shadow: 1px 1px 3px 2px #5d585e;">
Div content here</div>