HEX: #B6994A
RGB: (182,153,74)
#B6994A contains mainly red and green colors. Web safe color of #B6994A is #CC9933 (or #C93).
#B6994A color RGB value is (182,153,74).
RGB: (182,153,74) (71%,60%,29%)
R 182 of 255 = 71%
G 153 of 255 = 60%
B 74 of 255 = 29%
R + G + B ~ 53%. #B6994A is middle color (not dark and not light).
R + G + B =
182 + 153 + 74 = 409 (100%)
R 182 of 409 ~ 44.5%
G 153 of 409 ~ 37.41%
B 74 of 409 ~ 18.09%
#B6994A color CMYK value is (0,16,59,29).
CMYK: (0,16,59,29) C0M16Y59K29 (0%,16%,59%,29%) (0.00/0.16/0.59/0.29)
B6 | 99 | 4A | |
---|---|---|---|
RGB | 182 | 153 | 74 |
HSL | 44° | 42.52% | 50.20% |
HSB/HSV | 44° | 59.34% | 71.37% |
CMYK | 0.00% | 15.93% | 59.34% |
28.63% |
HEX | B6 | 99 | 4A |
Decimal | 182 | 153 | 74 |
Binary | 10110110 | 10011001 | 1001010 |
Octal | 266 | 231 | 112 |
Examples of css and html codes for elements with #B6994A color. Also use rgb(182,153,74) instead hex code.
.myTextColor { color: #B6994A; }
<p style="color:#B6994A">This sample text font color is #B6994A.</p>
This text font color is #B6994A.
.myBgColor { background-color: #B6994A; }
<div style="background-color:#B6994A">Inner text</div>
This div background color is #B6994A.
.myBorderColor { border: 1px solid #B6994A; }
<div style="border:3px solid #B6994A">Div</div>
This div border color is #B6994A.
.myOpacity80 { color: #B6994A; opacity: 0.8; }
<p style="color:#B6994A;opacity:0.8;">80%</p>
Text with #B6994A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B6994A;}
<p style="text-shadow: 3px 3px 1px #B6994A">Text here.</p>
This text has shadow with #B6994A color.
.textShadow {text-shadow: 3px 3px 1px #B6994A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B6994A, 5px 5px 20px red">Text here.</p>
This text has shadow with #B6994A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B6994A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B6994A, Direction=45, Strength=4)">Text</p>
This text has shadow with #B6994A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B6994A; -webkit-box-shadow: 1px 1px 3px 2px #B6994A; box-shadow: 1px 1px 3px 2px #B6994A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B6994A; -webkit-box-shadow: 1px 1px 3px 2px #B6994A; box-shadow:1px 1px 3px 2px #B6994A;">
Div content here</div>
This text has color #B6994A on black background.
This text has color #B6994A on white background.
This text has black color on #B6994A background.
This text has white color on #B6994A background.