HEX: #857D37
RGB: (133,125,55)
#857D37 contains mainly red and green colors. Web safe color of #857D37 is #996633 (or #963).
#857D37 color RGB value is (133,125,55).
RGB: (133,125,55) (52%,49%,22%)
R 133 of 255 = 52%
G 125 of 255 = 49%
B 55 of 255 = 22%
R + G + B ~ 41%. #857D37 is middle color (not dark and not light).
R + G + B =
133 + 125 + 55 = 313 (100%)
R 133 of 313 ~ 42.49%
G 125 of 313 ~ 39.94%
B 55 of 313 ~ 17.57%
#857D37 color CMYK value is (0,6,59,48).
CMYK: (0,6,59,48) C0M6Y59K48 (0%,6%,59%,48%) (0.00/0.06/0.59/0.48)
85 | 7D | 37 | |
---|---|---|---|
RGB | 133 | 125 | 55 |
HSL | 54° | 41.49% | 36.86% |
HSB/HSV | 54° | 58.65% | 52.16% |
CMYK | 0.00% | 6.02% | 58.65% |
47.84% |
HEX | 85 | 7D | 37 |
Decimal | 133 | 125 | 55 |
Binary | 10000101 | 1111101 | 110111 |
Octal | 205 | 175 | 67 |
Examples of css and html codes for elements with #857D37 color. Also use rgb(133,125,55) instead hex code.
.myTextColor { color: #857D37; }
<p style="color:#857D37">This sample text font color is #857D37.</p>
This text font color is #857D37.
.myBgColor { background-color: #857D37; }
<div style="background-color:#857D37">Inner text</div>
This div background color is #857D37.
.myBorderColor { border: 1px solid #857D37; }
<div style="border:3px solid #857D37">Div</div>
This div border color is #857D37.
.myOpacity80 { color: #857D37; opacity: 0.8; }
<p style="color:#857D37;opacity:0.8;">80%</p>
Text with #857D37 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #857D37;}
<p style="text-shadow: 3px 3px 1px #857D37">Text here.</p>
This text has shadow with #857D37 color.
.textShadow {text-shadow: 3px 3px 1px #857D37, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #857D37, 5px 5px 20px red">Text here.</p>
This text has shadow with #857D37 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#857D37, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#857D37, Direction=45, Strength=4)">Text</p>
This text has shadow with #857D37 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #857D37; -webkit-box-shadow: 1px 1px 3px 2px #857D37; box-shadow: 1px 1px 3px 2px #857D37; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #857D37; -webkit-box-shadow: 1px 1px 3px 2px #857D37; box-shadow:1px 1px 3px 2px #857D37;">
Div content here</div>
This text has color #857D37 on black background.
This text has color #857D37 on white background.
This text has black color on #857D37 background.
This text has white color on #857D37 background.