HEX: #BB7865
RGB: (187,120,101)
#BB7865 contains mainly red color. Web safe color of #BB7865 is #CC6666 (or #C66).
#BB7865 color RGB value is (187,120,101).
RGB: (187,120,101) (73%,47%,40%)
R 187 of 255 = 73%
G 120 of 255 = 47%
B 101 of 255 = 40%
R + G + B ~ 53%. #BB7865 is middle color (not dark and not light).
R + G + B =
187 + 120 + 101 = 408 (100%)
R 187 of 408 ~ 45.83%
G 120 of 408 ~ 29.41%
B 101 of 408 ~ 24.75%
#BB7865 color CMYK value is (0,36,46,27).
CMYK: (0,36,46,27) C0M36Y46K27 (0%,36%,46%,27%) (0.00/0.36/0.46/0.27)
BB | 78 | 65 | |
---|---|---|---|
RGB | 187 | 120 | 101 |
HSL | 13° | 38.74% | 56.47% |
HSB/HSV | 13° | 45.99% | 73.33% |
CMYK | 0.00% | 35.83% | 45.99% |
26.67% |
HEX | BB | 78 | 65 |
Decimal | 187 | 120 | 101 |
Binary | 10111011 | 1111000 | 1100101 |
Octal | 273 | 170 | 145 |
Examples of css and html codes for elements with #BB7865 color. Also use rgb(187,120,101) instead hex code.
.myTextColor { color: #BB7865; }
<p style="color:#BB7865">This sample text font color is #BB7865.</p>
This text font color is #BB7865.
.myBgColor { background-color: #BB7865; }
<div style="background-color:#BB7865">Inner text</div>
This div background color is #BB7865.
.myBorderColor { border: 1px solid #BB7865; }
<div style="border:3px solid #BB7865">Div</div>
This div border color is #BB7865.
.myOpacity80 { color: #BB7865; opacity: 0.8; }
<p style="color:#BB7865;opacity:0.8;">80%</p>
Text with #BB7865 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BB7865;}
<p style="text-shadow: 3px 3px 1px #BB7865">Text here.</p>
This text has shadow with #BB7865 color.
.textShadow {text-shadow: 3px 3px 1px #BB7865, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BB7865, 5px 5px 20px red">Text here.</p>
This text has shadow with #BB7865 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BB7865, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BB7865, Direction=45, Strength=4)">Text</p>
This text has shadow with #BB7865 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BB7865; -webkit-box-shadow: 1px 1px 3px 2px #BB7865; box-shadow: 1px 1px 3px 2px #BB7865; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BB7865; -webkit-box-shadow: 1px 1px 3px 2px #BB7865; box-shadow:1px 1px 3px 2px #BB7865;">
Div content here</div>
This text has color #BB7865 on black background.
This text has color #BB7865 on white background.
This text has black color on #BB7865 background.
This text has white color on #BB7865 background.