#058c8e hex color information.
RGB value of #058c8e is (5,140,142)
Change page background color to #058c8e
| Reset
| RGB | 5 | 140 | 142 |
|---|---|---|---|
| HSL | 0.50 | 0.93 | 0.29 |
| HSV | 181° | 96° | 56° |
| CMYK | 0.96 | 0.01 | 0.00 0.44 |
| XYZ | 14.3232 | 20.7414 | 28.8398 |
| Yxy | 20.7414 | 0.2241 | 0.3246 |
| Hunter Lab | 45.5427 | -23.5615 | -5.6653 |
| CIE-Lab | 52.6653 | -29.8963 | -10.0536 |
#058c8e hex color red value is 5, green value is 140 and the blue value of its RGB is 140. Cylindrical-coordinate representations (also known as HSL) of color #058c8e hue: 0.50 , saturation: 0.93 and the lightness value of 058c8e is 0.29.
The process color (four color CMYK) of #058c8e hex color is 0.96, 0.01, 0.00, 0.44. Web safe color of #058c8e is #009999
Color #058c8e contains mostly BLUE color.
| Base | Red | Green | Blue |
|---|---|---|---|
| Binary | 00000101 | 10001100 | 10001110 |
| Octal | 5 | 214 | 216 |
| Decimal | 5 | 140 | 142 |
| Hexadecimal | 5 | 8C | 8E |
Lorem ipsum dolor sit amet.
Lorem ipsum dolor sit amet.
.mybgcolor {background-color:#058c8e; }
.myforecolor {color:#058c8e; }
.mybordercolor {border:3px solid #058c8e; }
This sample text font color is #058c8e
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:#058c8e">Text here</p>
This div background color is #058c8e
<div style="background-color:#058c8e">
Div content here</div>
This div border color is #058c8e
<div style="border:3px solid #058c8e">
Div here</div>
| #058c8e | border color |
.textShadowRgb {
text-shadow: 4px 4px 2px rgba(5,140,142, 0.8);
}
.textShadowHex {
text-shadow: 4px 4px 2px #058c8e;
}
.divShadow {
-moz-box-shadow: 1px 1px 3px 2px #058c8e;
-webkit-box-shadow: 1px 1px 3px 2px #058c8e;
box-shadow: 1px 1px 3px 2px #058c8e;
}
<p style="text-shadow: 4px 4px 2px rgba(5,140,142, 0.8);">Text here</p>
This text has shadow with rgb values.
<p style="text-shadow: 4px 4px 2px #058c8e">Text here</p>
This text has shadow with hex values.
This div box has shadow with color #058c8e
<div style="-moz-box-shadow: 1px 1px 3px 2px #058c8e; -webkit-box-shadow: 1px 1px 3px 2px #058c8e; box-shadow: 1px 1px 3px 2px #058c8e;">
Div content here</div>