HEX: #B57050
RGB: (181,112,80)
#B57050 contains mainly red color. Web safe color of #B57050 is #CC6666 (or #C66).
#B57050 color RGB value is (181,112,80).
RGB: (181,112,80) (71%,44%,31%)
R 181 of 255 = 71%
G 112 of 255 = 44%
B 80 of 255 = 31%
R + G + B ~ 49%. #B57050 is middle color (not dark and not light).
R + G + B =
181 + 112 + 80 = 373 (100%)
R 181 of 373 ~ 48.53%
G 112 of 373 ~ 30.03%
B 80 of 373 ~ 21.45%
#B57050 color CMYK value is (0,38,56,29).
CMYK: (0,38,56,29) C0M38Y56K29 (0%,38%,56%,29%) (0.00/0.38/0.56/0.29)
B5 | 70 | 50 | |
---|---|---|---|
RGB | 181 | 112 | 80 |
HSL | 19° | 40.56% | 51.18% |
HSB/HSV | 19° | 55.80% | 70.98% |
CMYK | 0.00% | 38.12% | 55.80% |
29.02% |
HEX | B5 | 70 | 50 |
Decimal | 181 | 112 | 80 |
Binary | 10110101 | 1110000 | 1010000 |
Octal | 265 | 160 | 120 |
Examples of css and html codes for elements with #B57050 color. Also use rgb(181,112,80) instead hex code.
.myTextColor { color: #B57050; }
<p style="color:#B57050">This sample text font color is #B57050.</p>
This text font color is #B57050.
.myBgColor { background-color: #B57050; }
<div style="background-color:#B57050">Inner text</div>
This div background color is #B57050.
.myBorderColor { border: 1px solid #B57050; }
<div style="border:3px solid #B57050">Div</div>
This div border color is #B57050.
.myOpacity80 { color: #B57050; opacity: 0.8; }
<p style="color:#B57050;opacity:0.8;">80%</p>
Text with #B57050 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B57050;}
<p style="text-shadow: 3px 3px 1px #B57050">Text here.</p>
This text has shadow with #B57050 color.
.textShadow {text-shadow: 3px 3px 1px #B57050, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B57050, 5px 5px 20px red">Text here.</p>
This text has shadow with #B57050 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B57050, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B57050, Direction=45, Strength=4)">Text</p>
This text has shadow with #B57050 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B57050; -webkit-box-shadow: 1px 1px 3px 2px #B57050; box-shadow: 1px 1px 3px 2px #B57050; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B57050; -webkit-box-shadow: 1px 1px 3px 2px #B57050; box-shadow:1px 1px 3px 2px #B57050;">
Div content here</div>
This text has color #B57050 on black background.
This text has color #B57050 on white background.
This text has black color on #B57050 background.
This text has white color on #B57050 background.