HEX: #84897C
RGB: (132,137,124)
#84897C contains red, green and blue colors in about the same proportion. Web safe color of #84897C is #999966 (or #996).
#84897C color RGB value is (132,137,124).
RGB: (132,137,124) (52%,54%,49%)
R 132 of 255 = 52%
G 137 of 255 = 54%
B 124 of 255 = 49%
R + G + B ~ 52%. #84897C is middle color (not dark and not light).
R + G + B =
132 + 137 + 124 = 393 (100%)
R 132 of 393 ~ 33.59%
G 137 of 393 ~ 34.86%
B 124 of 393 ~ 31.55%
#84897C color CMYK value is (4,0,9,46).
CMYK: (4,0,9,46) C4M0Y9K46 (4%,0%,9%,46%) (0.04/0.00/0.09/0.46)
84 | 89 | 7C | |
---|---|---|---|
RGB | 132 | 137 | 124 |
HSL | 83° | 5.22% | 51.18% |
HSB/HSV | 83° | 9.49% | 53.73% |
CMYK | 3.65% | 0.00% | 9.49% |
46.27% |
HEX | 84 | 89 | 7C |
Decimal | 132 | 137 | 124 |
Binary | 10000100 | 10001001 | 1111100 |
Octal | 204 | 211 | 174 |
Examples of css and html codes for elements with #84897C color. Also use rgb(132,137,124) instead hex code.
.myTextColor { color: #84897C; }
<p style="color:#84897C">This sample text font color is #84897C.</p>
This text font color is #84897C.
.myBgColor { background-color: #84897C; }
<div style="background-color:#84897C">Inner text</div>
This div background color is #84897C.
.myBorderColor { border: 1px solid #84897C; }
<div style="border:3px solid #84897C">Div</div>
This div border color is #84897C.
.myOpacity80 { color: #84897C; opacity: 0.8; }
<p style="color:#84897C;opacity:0.8;">80%</p>
Text with #84897C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #84897C;}
<p style="text-shadow: 3px 3px 1px #84897C">Text here.</p>
This text has shadow with #84897C color.
.textShadow {text-shadow: 3px 3px 1px #84897C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #84897C, 5px 5px 20px red">Text here.</p>
This text has shadow with #84897C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#84897C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#84897C, Direction=45, Strength=4)">Text</p>
This text has shadow with #84897C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #84897C; -webkit-box-shadow: 1px 1px 3px 2px #84897C; box-shadow: 1px 1px 3px 2px #84897C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #84897C; -webkit-box-shadow: 1px 1px 3px 2px #84897C; box-shadow:1px 1px 3px 2px #84897C;">
Div content here</div>
This text has color #84897C on black background.
This text has color #84897C on white background.
This text has black color on #84897C background.
This text has white color on #84897C background.