HEX: #856E60
RGB: (133,110,96)
#856E60 contains red, green and blue colors in about the same proportion. Web safe color of #856E60 is #996666 (or #966).
#856E60 color RGB value is (133,110,96).
RGB: (133,110,96) (52%,43%,38%)
R 133 of 255 = 52%
G 110 of 255 = 43%
B 96 of 255 = 38%
R + G + B ~ 44%. #856E60 is middle color (not dark and not light).
R + G + B =
133 + 110 + 96 = 339 (100%)
R 133 of 339 ~ 39.23%
G 110 of 339 ~ 32.45%
B 96 of 339 ~ 28.32%
#856E60 color CMYK value is (0,17,28,48).
CMYK: (0,17,28,48) C0M17Y28K48 (0%,17%,28%,48%) (0.00/0.17/0.28/0.48)
85 | 6E | 60 | |
---|---|---|---|
RGB | 133 | 110 | 96 |
HSL | 23° | 16.16% | 44.90% |
HSB/HSV | 23° | 27.82% | 52.16% |
CMYK | 0.00% | 17.29% | 27.82% |
47.84% |
HEX | 85 | 6E | 60 |
Decimal | 133 | 110 | 96 |
Binary | 10000101 | 1101110 | 1100000 |
Octal | 205 | 156 | 140 |
Examples of css and html codes for elements with #856E60 color. Also use rgb(133,110,96) instead hex code.
.myTextColor { color: #856E60; }
<p style="color:#856E60">This sample text font color is #856E60.</p>
This text font color is #856E60.
.myBgColor { background-color: #856E60; }
<div style="background-color:#856E60">Inner text</div>
This div background color is #856E60.
.myBorderColor { border: 1px solid #856E60; }
<div style="border:3px solid #856E60">Div</div>
This div border color is #856E60.
.myOpacity80 { color: #856E60; opacity: 0.8; }
<p style="color:#856E60;opacity:0.8;">80%</p>
Text with #856E60 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #856E60;}
<p style="text-shadow: 3px 3px 1px #856E60">Text here.</p>
This text has shadow with #856E60 color.
.textShadow {text-shadow: 3px 3px 1px #856E60, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #856E60, 5px 5px 20px red">Text here.</p>
This text has shadow with #856E60 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#856E60, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#856E60, Direction=45, Strength=4)">Text</p>
This text has shadow with #856E60 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #856E60; -webkit-box-shadow: 1px 1px 3px 2px #856E60; box-shadow: 1px 1px 3px 2px #856E60; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #856E60; -webkit-box-shadow: 1px 1px 3px 2px #856E60; box-shadow:1px 1px 3px 2px #856E60;">
Div content here</div>
This text has color #856E60 on black background.
This text has color #856E60 on white background.
This text has black color on #856E60 background.
This text has white color on #856E60 background.