HEX: #84998D
RGB: (132,153,141)
#84998D contains red, green and blue colors in about the same proportion. Web safe color of #84998D is #999999 (or #999).
#84998D color RGB value is (132,153,141).
RGB: (132,153,141) (52%,60%,55%)
R 132 of 255 = 52%
G 153 of 255 = 60%
B 141 of 255 = 55%
R + G + B ~ 56%. #84998D is middle color (not dark and not light).
R + G + B =
132 + 153 + 141 = 426 (100%)
R 132 of 426 ~ 30.99%
G 153 of 426 ~ 35.92%
B 141 of 426 ~ 33.1%
#84998D color CMYK value is (14,0,8,40).
CMYK: (14,0,8,40) C14M0Y8K40 (14%,0%,8%,40%) (0.14/0.00/0.08/0.40)
84 | 99 | 8D | |
---|---|---|---|
RGB | 132 | 153 | 141 |
HSL | 146° | 9.33% | 55.88% |
HSB/HSV | 146° | 13.73% | 60.00% |
CMYK | 13.73% | 0.00% | 7.84% |
40.00% |
HEX | 84 | 99 | 8D |
Decimal | 132 | 153 | 141 |
Binary | 10000100 | 10011001 | 10001101 |
Octal | 204 | 231 | 215 |
Examples of css and html codes for elements with #84998D color. Also use rgb(132,153,141) instead hex code.
.myTextColor { color: #84998D; }
<p style="color:#84998D">This sample text font color is #84998D.</p>
This text font color is #84998D.
.myBgColor { background-color: #84998D; }
<div style="background-color:#84998D">Inner text</div>
This div background color is #84998D.
.myBorderColor { border: 1px solid #84998D; }
<div style="border:3px solid #84998D">Div</div>
This div border color is #84998D.
.myOpacity80 { color: #84998D; opacity: 0.8; }
<p style="color:#84998D;opacity:0.8;">80%</p>
Text with #84998D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #84998D;}
<p style="text-shadow: 3px 3px 1px #84998D">Text here.</p>
This text has shadow with #84998D color.
.textShadow {text-shadow: 3px 3px 1px #84998D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #84998D, 5px 5px 20px red">Text here.</p>
This text has shadow with #84998D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#84998D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#84998D, Direction=45, Strength=4)">Text</p>
This text has shadow with #84998D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #84998D; -webkit-box-shadow: 1px 1px 3px 2px #84998D; box-shadow: 1px 1px 3px 2px #84998D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #84998D; -webkit-box-shadow: 1px 1px 3px 2px #84998D; box-shadow:1px 1px 3px 2px #84998D;">
Div content here</div>
This text has color #84998D on black background.
This text has color #84998D on white background.
This text has black color on #84998D background.
This text has white color on #84998D background.