HEX: #956D10
RGB: (149,109,16)
#956D10 contains mainly red and green colors. Web safe color of #956D10 is #996600 (or #960).
#956D10 color RGB value is (149,109,16).
RGB: (149,109,16) (58%,43%,6%)
R 149 of 255 = 58%
G 109 of 255 = 43%
B 16 of 255 = 6%
R + G + B ~ 36%. #956D10 is quite dark color.
R + G + B =
149 + 109 + 16 = 274 (100%)
R 149 of 274 ~ 54.38%
G 109 of 274 ~ 39.78%
B 16 of 274 ~ 5.84%
#956D10 color CMYK value is (0,27,89,42).
CMYK: (0,27,89,42) C0M27Y89K42 (0%,27%,89%,42%) (0.00/0.27/0.89/0.42)
95 | 6D | 10 | |
---|---|---|---|
RGB | 149 | 109 | 16 |
HSL | 42° | 80.61% | 32.35% |
HSB/HSV | 42° | 89.26% | 58.43% |
CMYK | 0.00% | 26.85% | 89.26% |
41.57% |
HEX | 95 | 6D | 10 |
Decimal | 149 | 109 | 16 |
Binary | 10010101 | 1101101 | 10000 |
Octal | 225 | 155 | 20 |
Examples of css and html codes for elements with #956D10 color. Also use rgb(149,109,16) instead hex code.
.myTextColor { color: #956D10; }
<p style="color:#956D10">This sample text font color is #956D10.</p>
This text font color is #956D10.
.myBgColor { background-color: #956D10; }
<div style="background-color:#956D10">Inner text</div>
This div background color is #956D10.
.myBorderColor { border: 1px solid #956D10; }
<div style="border:3px solid #956D10">Div</div>
This div border color is #956D10.
.myOpacity80 { color: #956D10; opacity: 0.8; }
<p style="color:#956D10;opacity:0.8;">80%</p>
Text with #956D10 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #956D10;}
<p style="text-shadow: 3px 3px 1px #956D10">Text here.</p>
This text has shadow with #956D10 color.
.textShadow {text-shadow: 3px 3px 1px #956D10, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #956D10, 5px 5px 20px red">Text here.</p>
This text has shadow with #956D10 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#956D10, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#956D10, Direction=45, Strength=4)">Text</p>
This text has shadow with #956D10 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #956D10; -webkit-box-shadow: 1px 1px 3px 2px #956D10; box-shadow: 1px 1px 3px 2px #956D10; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #956D10; -webkit-box-shadow: 1px 1px 3px 2px #956D10; box-shadow:1px 1px 3px 2px #956D10;">
Div content here</div>
This text has color #956D10 on black background.
This text has color #956D10 on white background.
This text has black color on #956D10 background.
This text has white color on #956D10 background.