#8a8b8a hex color information.
RGB value of #8a8b8a is (138,139,138)
Change page background color to #8a8b8a
| Reset
| RGB | 138 | 139 | 138 |
|---|---|---|---|
| HSL | 0.33 | 0.00 | 0.54 |
| HSV | 120° | 1° | 55° |
| CMYK | 0.01 | 0.00 | 0.01 0.45 |
| XYZ | 24.3013 | 25.7035 | 27.7252 |
| Yxy | 25.7035 | 0.3126 | 0.3307 |
| Hunter Lab | 50.6986 | -3.1624 | 3.0655 |
| CIE-Lab | 57.7545 | -0.5610 | 0.3974 |
#8a8b8a hex color red value is 138, green value is 139 and the blue value of its RGB is 139. Cylindrical-coordinate representations (also known as HSL) of color #8a8b8a hue: 0.33 , saturation: 0.00 and the lightness value of 8a8b8a is 0.54.
The process color (four color CMYK) of #8a8b8a hex color is 0.01, 0.00, 0.01, 0.45. Web safe color of #8a8b8a is #999999
Color #8a8b8a contains mostly GREEN color.
| Base | Red | Green | Blue |
|---|---|---|---|
| Binary | 10001010 | 10001011 | 10001010 |
| Octal | 212 | 213 | 212 |
| Decimal | 138 | 139 | 138 |
| Hexadecimal | 8A | 8B | 8A |
Analogous colors are identical
| #8a8b8a | #8b8a8b |
Lorem ipsum dolor sit amet.
Lorem ipsum dolor sit amet.
.mybgcolor {background-color:#8a8b8a; }
.myforecolor {color:#8a8b8a; }
.mybordercolor {border:3px solid #8a8b8a; }
This sample text font color is #8a8b8a
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:#8a8b8a">Text here</p>
This div background color is #8a8b8a
<div style="background-color:#8a8b8a">
Div content here</div>
This div border color is #8a8b8a
<div style="border:3px solid #8a8b8a">
Div here</div>
| #8a8b8a | border color |
.textShadowRgb {
text-shadow: 4px 4px 2px rgba(138,139,138, 0.8);
}
.textShadowHex {
text-shadow: 4px 4px 2px #8a8b8a;
}
.divShadow {
-moz-box-shadow: 1px 1px 3px 2px #8a8b8a;
-webkit-box-shadow: 1px 1px 3px 2px #8a8b8a;
box-shadow: 1px 1px 3px 2px #8a8b8a;
}
<p style="text-shadow: 4px 4px 2px rgba(138,139,138, 0.8);">Text here</p>
This text has shadow with rgb values.
<p style="text-shadow: 4px 4px 2px #8a8b8a">Text here</p>
This text has shadow with hex values.
This div box has shadow with color #8a8b8a
<div style="-moz-box-shadow: 1px 1px 3px 2px #8a8b8a; -webkit-box-shadow: 1px 1px 3px 2px #8a8b8a; box-shadow: 1px 1px 3px 2px #8a8b8a;">
Div content here</div>