HEX: #B06E47
RGB: (176,110,71)
#B06E47 contains mainly red color. Web safe color of #B06E47 is #996633 (or #963).
#B06E47 color RGB value is (176,110,71).
RGB: (176,110,71) (69%,43%,28%)
R 176 of 255 = 69%
G 110 of 255 = 43%
B 71 of 255 = 28%
R + G + B ~ 47%. #B06E47 is middle color (not dark and not light).
R + G + B =
176 + 110 + 71 = 357 (100%)
R 176 of 357 ~ 49.3%
G 110 of 357 ~ 30.81%
B 71 of 357 ~ 19.89%
#B06E47 color CMYK value is (0,38,60,31).
CMYK: (0,38,60,31) C0M38Y60K31 (0%,38%,60%,31%) (0.00/0.38/0.60/0.31)
B0 | 6E | 47 | |
---|---|---|---|
RGB | 176 | 110 | 71 |
HSL | 22° | 42.51% | 48.43% |
HSB/HSV | 22° | 59.66% | 69.02% |
CMYK | 0.00% | 37.50% | 59.66% |
30.98% |
HEX | B0 | 6E | 47 |
Decimal | 176 | 110 | 71 |
Binary | 10110000 | 1101110 | 1000111 |
Octal | 260 | 156 | 107 |
Examples of css and html codes for elements with #B06E47 color. Also use rgb(176,110,71) instead hex code.
.myTextColor { color: #B06E47; }
<p style="color:#B06E47">This sample text font color is #B06E47.</p>
This text font color is #B06E47.
.myBgColor { background-color: #B06E47; }
<div style="background-color:#B06E47">Inner text</div>
This div background color is #B06E47.
.myBorderColor { border: 1px solid #B06E47; }
<div style="border:3px solid #B06E47">Div</div>
This div border color is #B06E47.
.myOpacity80 { color: #B06E47; opacity: 0.8; }
<p style="color:#B06E47;opacity:0.8;">80%</p>
Text with #B06E47 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B06E47;}
<p style="text-shadow: 3px 3px 1px #B06E47">Text here.</p>
This text has shadow with #B06E47 color.
.textShadow {text-shadow: 3px 3px 1px #B06E47, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B06E47, 5px 5px 20px red">Text here.</p>
This text has shadow with #B06E47 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B06E47, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B06E47, Direction=45, Strength=4)">Text</p>
This text has shadow with #B06E47 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B06E47; -webkit-box-shadow: 1px 1px 3px 2px #B06E47; box-shadow: 1px 1px 3px 2px #B06E47; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B06E47; -webkit-box-shadow: 1px 1px 3px 2px #B06E47; box-shadow:1px 1px 3px 2px #B06E47;">
Div content here</div>
This text has color #B06E47 on black background.
This text has color #B06E47 on white background.
This text has black color on #B06E47 background.
This text has white color on #B06E47 background.