HEX: #BB756E
RGB: (187,117,110)
#BB756E contains mainly red color. Web safe color of #BB756E is #CC6666 (or #C66).
#BB756E color RGB value is (187,117,110).
RGB: (187,117,110) (73%,46%,43%)
R 187 of 255 = 73%
G 117 of 255 = 46%
B 110 of 255 = 43%
R + G + B ~ 54%. #BB756E is middle color (not dark and not light).
R + G + B =
187 + 117 + 110 = 414 (100%)
R 187 of 414 ~ 45.17%
G 117 of 414 ~ 28.26%
B 110 of 414 ~ 26.57%
#BB756E color CMYK value is (0,37,41,27).
CMYK: (0,37,41,27) C0M37Y41K27 (0%,37%,41%,27%) (0.00/0.37/0.41/0.27)
BB | 75 | 6E | |
---|---|---|---|
RGB | 187 | 117 | 110 |
HSL | 5° | 36.15% | 58.24% |
HSB/HSV | 5° | 41.18% | 73.33% |
CMYK | 0.00% | 37.43% | 41.18% |
26.67% |
HEX | BB | 75 | 6E |
Decimal | 187 | 117 | 110 |
Binary | 10111011 | 1110101 | 1101110 |
Octal | 273 | 165 | 156 |
Examples of css and html codes for elements with #BB756E color. Also use rgb(187,117,110) instead hex code.
.myTextColor { color: #BB756E; }
<p style="color:#BB756E">This sample text font color is #BB756E.</p>
This text font color is #BB756E.
.myBgColor { background-color: #BB756E; }
<div style="background-color:#BB756E">Inner text</div>
This div background color is #BB756E.
.myBorderColor { border: 1px solid #BB756E; }
<div style="border:3px solid #BB756E">Div</div>
This div border color is #BB756E.
.myOpacity80 { color: #BB756E; opacity: 0.8; }
<p style="color:#BB756E;opacity:0.8;">80%</p>
Text with #BB756E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BB756E;}
<p style="text-shadow: 3px 3px 1px #BB756E">Text here.</p>
This text has shadow with #BB756E color.
.textShadow {text-shadow: 3px 3px 1px #BB756E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BB756E, 5px 5px 20px red">Text here.</p>
This text has shadow with #BB756E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BB756E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BB756E, Direction=45, Strength=4)">Text</p>
This text has shadow with #BB756E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BB756E; -webkit-box-shadow: 1px 1px 3px 2px #BB756E; box-shadow: 1px 1px 3px 2px #BB756E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BB756E; -webkit-box-shadow: 1px 1px 3px 2px #BB756E; box-shadow:1px 1px 3px 2px #BB756E;">
Div content here</div>
This text has color #BB756E on black background.
This text has color #BB756E on white background.
This text has black color on #BB756E background.
This text has white color on #BB756E background.