HEX: #966D2B
RGB: (150,109,43)
#966D2B contains mainly red and green colors. Web safe color of #966D2B is #996633 (or #963).
#966D2B color RGB value is (150,109,43).
RGB: (150,109,43) (59%,43%,17%)
R 150 of 255 = 59%
G 109 of 255 = 43%
B 43 of 255 = 17%
R + G + B ~ 40%. #966D2B is middle color (not dark and not light).
R + G + B =
150 + 109 + 43 = 302 (100%)
R 150 of 302 ~ 49.67%
G 109 of 302 ~ 36.09%
B 43 of 302 ~ 14.24%
#966D2B color CMYK value is (0,27,71,41).
CMYK: (0,27,71,41) C0M27Y71K41 (0%,27%,71%,41%) (0.00/0.27/0.71/0.41)
96 | 6D | 2B | |
---|---|---|---|
RGB | 150 | 109 | 43 |
HSL | 37° | 55.44% | 37.84% |
HSB/HSV | 37° | 71.33% | 58.82% |
CMYK | 0.00% | 27.33% | 71.33% |
41.18% |
HEX | 96 | 6D | 2B |
Decimal | 150 | 109 | 43 |
Binary | 10010110 | 1101101 | 101011 |
Octal | 226 | 155 | 53 |
Examples of css and html codes for elements with #966D2B color. Also use rgb(150,109,43) instead hex code.
.myTextColor { color: #966D2B; }
<p style="color:#966D2B">This sample text font color is #966D2B.</p>
This text font color is #966D2B.
.myBgColor { background-color: #966D2B; }
<div style="background-color:#966D2B">Inner text</div>
This div background color is #966D2B.
.myBorderColor { border: 1px solid #966D2B; }
<div style="border:3px solid #966D2B">Div</div>
This div border color is #966D2B.
.myOpacity80 { color: #966D2B; opacity: 0.8; }
<p style="color:#966D2B;opacity:0.8;">80%</p>
Text with #966D2B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #966D2B;}
<p style="text-shadow: 3px 3px 1px #966D2B">Text here.</p>
This text has shadow with #966D2B color.
.textShadow {text-shadow: 3px 3px 1px #966D2B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #966D2B, 5px 5px 20px red">Text here.</p>
This text has shadow with #966D2B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#966D2B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#966D2B, Direction=45, Strength=4)">Text</p>
This text has shadow with #966D2B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #966D2B; -webkit-box-shadow: 1px 1px 3px 2px #966D2B; box-shadow: 1px 1px 3px 2px #966D2B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #966D2B; -webkit-box-shadow: 1px 1px 3px 2px #966D2B; box-shadow:1px 1px 3px 2px #966D2B;">
Div content here</div>
This text has color #966D2B on black background.
This text has color #966D2B on white background.
This text has black color on #966D2B background.
This text has white color on #966D2B background.