HEX: #B2755E
RGB: (178,117,94)
#B2755E contains mainly red color. Web safe color of #B2755E is #996666 (or #966).
#B2755E color RGB value is (178,117,94).
RGB: (178,117,94) (70%,46%,37%)
R 178 of 255 = 70%
G 117 of 255 = 46%
B 94 of 255 = 37%
R + G + B ~ 51%. #B2755E is middle color (not dark and not light).
R + G + B =
178 + 117 + 94 = 389 (100%)
R 178 of 389 ~ 45.76%
G 117 of 389 ~ 30.08%
B 94 of 389 ~ 24.16%
#B2755E color CMYK value is (0,34,47,30).
CMYK: (0,34,47,30) C0M34Y47K30 (0%,34%,47%,30%) (0.00/0.34/0.47/0.30)
B2 | 75 | 5E | |
---|---|---|---|
RGB | 178 | 117 | 94 |
HSL | 16° | 35.29% | 53.33% |
HSB/HSV | 16° | 47.19% | 69.80% |
CMYK | 0.00% | 34.27% | 47.19% |
30.20% |
HEX | B2 | 75 | 5E |
Decimal | 178 | 117 | 94 |
Binary | 10110010 | 1110101 | 1011110 |
Octal | 262 | 165 | 136 |
Examples of css and html codes for elements with #B2755E color. Also use rgb(178,117,94) instead hex code.
.myTextColor { color: #B2755E; }
<p style="color:#B2755E">This sample text font color is #B2755E.</p>
This text font color is #B2755E.
.myBgColor { background-color: #B2755E; }
<div style="background-color:#B2755E">Inner text</div>
This div background color is #B2755E.
.myBorderColor { border: 1px solid #B2755E; }
<div style="border:3px solid #B2755E">Div</div>
This div border color is #B2755E.
.myOpacity80 { color: #B2755E; opacity: 0.8; }
<p style="color:#B2755E;opacity:0.8;">80%</p>
Text with #B2755E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B2755E;}
<p style="text-shadow: 3px 3px 1px #B2755E">Text here.</p>
This text has shadow with #B2755E color.
.textShadow {text-shadow: 3px 3px 1px #B2755E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B2755E, 5px 5px 20px red">Text here.</p>
This text has shadow with #B2755E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B2755E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B2755E, Direction=45, Strength=4)">Text</p>
This text has shadow with #B2755E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B2755E; -webkit-box-shadow: 1px 1px 3px 2px #B2755E; box-shadow: 1px 1px 3px 2px #B2755E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B2755E; -webkit-box-shadow: 1px 1px 3px 2px #B2755E; box-shadow:1px 1px 3px 2px #B2755E;">
Div content here</div>
This text has color #B2755E on black background.
This text has color #B2755E on white background.
This text has black color on #B2755E background.
This text has white color on #B2755E background.