#80676e hex color information.
RGB value of #80676e is (128,103,110)
Change page background color to #80676e
| Reset
| RGB | 128 | 103 | 110 |
|---|---|---|---|
| HSL | 0.95 | 0.11 | 0.45 |
| HSV | 343° | 20° | 50° |
| CMYK | 0.00 | 0.20 | 0.14 0.50 |
| XYZ | 16.5668 | 15.4155 | 16.8542 |
| Yxy | 15.4155 | 0.3392 | 0.3157 |
| Hunter Lab | 39.2626 | 6.6084 | 2.0325 |
| CIE-Lab | 46.1981 | 11.2041 | -0.1475 |
#80676e hex color red value is 128, green value is 103 and the blue value of its RGB is 103. Cylindrical-coordinate representations (also known as HSL) of color #80676e hue: 0.95 , saturation: 0.11 and the lightness value of 80676e is 0.45.
The process color (four color CMYK) of #80676e hex color is 0.00, 0.20, 0.14, 0.50. Web safe color of #80676e is #996666
Color #80676e contains mostly RED color.
| Base | Red | Green | Blue |
|---|---|---|---|
| Binary | 10000000 | 01100111 | 01101110 |
| Octal | 200 | 147 | 156 |
| Decimal | 128 | 103 | 110 |
| Hexadecimal | 80 | 67 | 6E |
Lorem ipsum dolor sit amet.
Lorem ipsum dolor sit amet.
.mybgcolor {background-color:#80676e; }
.myforecolor {color:#80676e; }
.mybordercolor {border:3px solid #80676e; }
This sample text font color is #80676e
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:#80676e">Text here</p>
This div background color is #80676e
<div style="background-color:#80676e">
Div content here</div>
This div border color is #80676e
<div style="border:3px solid #80676e">
Div here</div>
| #80676e | border color |
.textShadowRgb {
text-shadow: 4px 4px 2px rgba(128,103,110, 0.8);
}
.textShadowHex {
text-shadow: 4px 4px 2px #80676e;
}
.divShadow {
-moz-box-shadow: 1px 1px 3px 2px #80676e;
-webkit-box-shadow: 1px 1px 3px 2px #80676e;
box-shadow: 1px 1px 3px 2px #80676e;
}
<p style="text-shadow: 4px 4px 2px rgba(128,103,110, 0.8);">Text here</p>
This text has shadow with rgb values.
<p style="text-shadow: 4px 4px 2px #80676e">Text here</p>
This text has shadow with hex values.
This div box has shadow with color #80676e
<div style="-moz-box-shadow: 1px 1px 3px 2px #80676e; -webkit-box-shadow: 1px 1px 3px 2px #80676e; box-shadow: 1px 1px 3px 2px #80676e;">
Div content here</div>