#81898c hex color information.
RGB value of #81898c is (129,137,140)
Change page background color to #81898c
| Reset
| RGB | 129 | 137 | 140 |
|---|---|---|---|
| HSL | 0.55 | 0.05 | 0.53 |
| HSV | 196° | 8° | 55° |
| CMYK | 0.08 | 0.02 | 0.00 0.45 |
| XYZ | 22.7325 | 24.4519 | 28.3325 |
| Yxy | 24.4519 | 0.3010 | 0.3238 |
| Hunter Lab | 49.4489 | -4.4760 | 0.6431 |
| CIE-Lab | 56.5374 | -2.2962 | -2.6200 |
#81898c hex color red value is 129, green value is 137 and the blue value of its RGB is 137. Cylindrical-coordinate representations (also known as HSL) of color #81898c hue: 0.55 , saturation: 0.05 and the lightness value of 81898c is 0.53.
The process color (four color CMYK) of #81898c hex color is 0.08, 0.02, 0.00, 0.45. Web safe color of #81898c is #999999
Color #81898c contains mostly BLUE color.
| Base | Red | Green | Blue |
|---|---|---|---|
| Binary | 10000001 | 10001001 | 10001100 |
| Octal | 201 | 211 | 214 |
| Decimal | 129 | 137 | 140 |
| Hexadecimal | 81 | 89 | 8C |
Lorem ipsum dolor sit amet.
Lorem ipsum dolor sit amet.
.mybgcolor {background-color:#81898c; }
.myforecolor {color:#81898c; }
.mybordercolor {border:3px solid #81898c; }
This sample text font color is #81898c
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:#81898c">Text here</p>
This div background color is #81898c
<div style="background-color:#81898c">
Div content here</div>
This div border color is #81898c
<div style="border:3px solid #81898c">
Div here</div>
| #81898c | border color |
.textShadowRgb {
text-shadow: 4px 4px 2px rgba(129,137,140, 0.8);
}
.textShadowHex {
text-shadow: 4px 4px 2px #81898c;
}
.divShadow {
-moz-box-shadow: 1px 1px 3px 2px #81898c;
-webkit-box-shadow: 1px 1px 3px 2px #81898c;
box-shadow: 1px 1px 3px 2px #81898c;
}
<p style="text-shadow: 4px 4px 2px rgba(129,137,140, 0.8);">Text here</p>
This text has shadow with rgb values.
<p style="text-shadow: 4px 4px 2px #81898c">Text here</p>
This text has shadow with hex values.
This div box has shadow with color #81898c
<div style="-moz-box-shadow: 1px 1px 3px 2px #81898c; -webkit-box-shadow: 1px 1px 3px 2px #81898c; box-shadow: 1px 1px 3px 2px #81898c;">
Div content here</div>