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