HEX: #B6996D
RGB: (182,153,109)
#B6996D contains mainly red and green colors. Web safe color of #B6996D is #CC9966 (or #C96).
#B6996D color RGB value is (182,153,109).
RGB: (182,153,109) (71%,60%,43%)
R 182 of 255 = 71%
G 153 of 255 = 60%
B 109 of 255 = 43%
R + G + B ~ 58%. #B6996D is middle color (not dark and not light).
R + G + B =
182 + 153 + 109 = 444 (100%)
R 182 of 444 ~ 40.99%
G 153 of 444 ~ 34.46%
B 109 of 444 ~ 24.55%
#B6996D color CMYK value is (0,16,40,29).
CMYK: (0,16,40,29) C0M16Y40K29 (0%,16%,40%,29%) (0.00/0.16/0.40/0.29)
B6 | 99 | 6D | |
---|---|---|---|
RGB | 182 | 153 | 109 |
HSL | 36° | 33.33% | 57.06% |
HSB/HSV | 36° | 40.11% | 71.37% |
CMYK | 0.00% | 15.93% | 40.11% |
28.63% |
HEX | B6 | 99 | 6D |
Decimal | 182 | 153 | 109 |
Binary | 10110110 | 10011001 | 1101101 |
Octal | 266 | 231 | 155 |
Examples of css and html codes for elements with #B6996D color. Also use rgb(182,153,109) instead hex code.
.myTextColor { color: #B6996D; }
<p style="color:#B6996D">This sample text font color is #B6996D.</p>
This text font color is #B6996D.
.myBgColor { background-color: #B6996D; }
<div style="background-color:#B6996D">Inner text</div>
This div background color is #B6996D.
.myBorderColor { border: 1px solid #B6996D; }
<div style="border:3px solid #B6996D">Div</div>
This div border color is #B6996D.
.myOpacity80 { color: #B6996D; opacity: 0.8; }
<p style="color:#B6996D;opacity:0.8;">80%</p>
Text with #B6996D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B6996D;}
<p style="text-shadow: 3px 3px 1px #B6996D">Text here.</p>
This text has shadow with #B6996D color.
.textShadow {text-shadow: 3px 3px 1px #B6996D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B6996D, 5px 5px 20px red">Text here.</p>
This text has shadow with #B6996D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B6996D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B6996D, Direction=45, Strength=4)">Text</p>
This text has shadow with #B6996D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B6996D; -webkit-box-shadow: 1px 1px 3px 2px #B6996D; box-shadow: 1px 1px 3px 2px #B6996D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B6996D; -webkit-box-shadow: 1px 1px 3px 2px #B6996D; box-shadow:1px 1px 3px 2px #B6996D;">
Div content here</div>
This text has color #B6996D on black background.
This text has color #B6996D on white background.
This text has black color on #B6996D background.
This text has white color on #B6996D background.