HEX: #BB855B
RGB: (187,133,91)
#BB855B contains mainly red and green colors. Web safe color of #BB855B is #CC9966 (or #C96).
#BB855B color RGB value is (187,133,91).
RGB: (187,133,91) (73%,52%,36%)
R 187 of 255 = 73%
G 133 of 255 = 52%
B 91 of 255 = 36%
R + G + B ~ 54%. #BB855B is middle color (not dark and not light).
R + G + B =
187 + 133 + 91 = 411 (100%)
R 187 of 411 ~ 45.5%
G 133 of 411 ~ 32.36%
B 91 of 411 ~ 22.14%
#BB855B color CMYK value is (0,29,51,27).
CMYK: (0,29,51,27) C0M29Y51K27 (0%,29%,51%,27%) (0.00/0.29/0.51/0.27)
BB | 85 | 5B | |
---|---|---|---|
RGB | 187 | 133 | 91 |
HSL | 26° | 41.38% | 54.51% |
HSB/HSV | 26° | 51.34% | 73.33% |
CMYK | 0.00% | 28.88% | 51.34% |
26.67% |
HEX | BB | 85 | 5B |
Decimal | 187 | 133 | 91 |
Binary | 10111011 | 10000101 | 1011011 |
Octal | 273 | 205 | 133 |
Examples of css and html codes for elements with #BB855B color. Also use rgb(187,133,91) instead hex code.
.myTextColor { color: #BB855B; }
<p style="color:#BB855B">This sample text font color is #BB855B.</p>
This text font color is #BB855B.
.myBgColor { background-color: #BB855B; }
<div style="background-color:#BB855B">Inner text</div>
This div background color is #BB855B.
.myBorderColor { border: 1px solid #BB855B; }
<div style="border:3px solid #BB855B">Div</div>
This div border color is #BB855B.
.myOpacity80 { color: #BB855B; opacity: 0.8; }
<p style="color:#BB855B;opacity:0.8;">80%</p>
Text with #BB855B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BB855B;}
<p style="text-shadow: 3px 3px 1px #BB855B">Text here.</p>
This text has shadow with #BB855B color.
.textShadow {text-shadow: 3px 3px 1px #BB855B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BB855B, 5px 5px 20px red">Text here.</p>
This text has shadow with #BB855B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BB855B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BB855B, Direction=45, Strength=4)">Text</p>
This text has shadow with #BB855B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BB855B; -webkit-box-shadow: 1px 1px 3px 2px #BB855B; box-shadow: 1px 1px 3px 2px #BB855B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BB855B; -webkit-box-shadow: 1px 1px 3px 2px #BB855B; box-shadow:1px 1px 3px 2px #BB855B;">
Div content here</div>
This text has color #BB855B on black background.
This text has color #BB855B on white background.
This text has black color on #BB855B background.
This text has white color on #BB855B background.