HEX: #B56E5A
RGB: (181,110,90)
#B56E5A contains mainly red color. Web safe color of #B56E5A is #CC6666 (or #C66).
#B56E5A color RGB value is (181,110,90).
RGB: (181,110,90) (71%,43%,35%)
R 181 of 255 = 71%
G 110 of 255 = 43%
B 90 of 255 = 35%
R + G + B ~ 50%. #B56E5A is middle color (not dark and not light).
R + G + B =
181 + 110 + 90 = 381 (100%)
R 181 of 381 ~ 47.51%
G 110 of 381 ~ 28.87%
B 90 of 381 ~ 23.62%
#B56E5A color CMYK value is (0,39,50,29).
CMYK: (0,39,50,29) C0M39Y50K29 (0%,39%,50%,29%) (0.00/0.39/0.50/0.29)
B5 | 6E | 5A | |
---|---|---|---|
RGB | 181 | 110 | 90 |
HSL | 13° | 38.08% | 53.14% |
HSB/HSV | 13° | 50.28% | 70.98% |
CMYK | 0.00% | 39.23% | 50.28% |
29.02% |
HEX | B5 | 6E | 5A |
Decimal | 181 | 110 | 90 |
Binary | 10110101 | 1101110 | 1011010 |
Octal | 265 | 156 | 132 |
Examples of css and html codes for elements with #B56E5A color. Also use rgb(181,110,90) instead hex code.
.myTextColor { color: #B56E5A; }
<p style="color:#B56E5A">This sample text font color is #B56E5A.</p>
This text font color is #B56E5A.
.myBgColor { background-color: #B56E5A; }
<div style="background-color:#B56E5A">Inner text</div>
This div background color is #B56E5A.
.myBorderColor { border: 1px solid #B56E5A; }
<div style="border:3px solid #B56E5A">Div</div>
This div border color is #B56E5A.
.myOpacity80 { color: #B56E5A; opacity: 0.8; }
<p style="color:#B56E5A;opacity:0.8;">80%</p>
Text with #B56E5A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B56E5A;}
<p style="text-shadow: 3px 3px 1px #B56E5A">Text here.</p>
This text has shadow with #B56E5A color.
.textShadow {text-shadow: 3px 3px 1px #B56E5A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B56E5A, 5px 5px 20px red">Text here.</p>
This text has shadow with #B56E5A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B56E5A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B56E5A, Direction=45, Strength=4)">Text</p>
This text has shadow with #B56E5A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B56E5A; -webkit-box-shadow: 1px 1px 3px 2px #B56E5A; box-shadow: 1px 1px 3px 2px #B56E5A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B56E5A; -webkit-box-shadow: 1px 1px 3px 2px #B56E5A; box-shadow:1px 1px 3px 2px #B56E5A;">
Div content here</div>
This text has color #B56E5A on black background.
This text has color #B56E5A on white background.
This text has black color on #B56E5A background.
This text has white color on #B56E5A background.