HEX: #B8987D
RGB: (184,152,125)
#B8987D contains red, green and blue colors in about the same proportion. Web safe color of #B8987D is #CC9966 (or #C96).
#B8987D color RGB value is (184,152,125).
RGB: (184,152,125) (72%,60%,49%)
R 184 of 255 = 72%
G 152 of 255 = 60%
B 125 of 255 = 49%
R + G + B ~ 60%. #B8987D is middle color (not dark and not light).
R + G + B =
184 + 152 + 125 = 461 (100%)
R 184 of 461 ~ 39.91%
G 152 of 461 ~ 32.97%
B 125 of 461 ~ 27.11%
#B8987D color CMYK value is (0,17,32,28).
CMYK: (0,17,32,28) C0M17Y32K28 (0%,17%,32%,28%) (0.00/0.17/0.32/0.28)
B8 | 98 | 7D | |
---|---|---|---|
RGB | 184 | 152 | 125 |
HSL | 27° | 29.35% | 60.59% |
HSB/HSV | 27° | 32.07% | 72.16% |
CMYK | 0.00% | 17.39% | 32.07% |
27.84% |
HEX | B8 | 98 | 7D |
Decimal | 184 | 152 | 125 |
Binary | 10111000 | 10011000 | 1111101 |
Octal | 270 | 230 | 175 |
Examples of css and html codes for elements with #B8987D color. Also use rgb(184,152,125) instead hex code.
.myTextColor { color: #B8987D; }
<p style="color:#B8987D">This sample text font color is #B8987D.</p>
This text font color is #B8987D.
.myBgColor { background-color: #B8987D; }
<div style="background-color:#B8987D">Inner text</div>
This div background color is #B8987D.
.myBorderColor { border: 1px solid #B8987D; }
<div style="border:3px solid #B8987D">Div</div>
This div border color is #B8987D.
.myOpacity80 { color: #B8987D; opacity: 0.8; }
<p style="color:#B8987D;opacity:0.8;">80%</p>
Text with #B8987D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B8987D;}
<p style="text-shadow: 3px 3px 1px #B8987D">Text here.</p>
This text has shadow with #B8987D color.
.textShadow {text-shadow: 3px 3px 1px #B8987D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B8987D, 5px 5px 20px red">Text here.</p>
This text has shadow with #B8987D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B8987D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B8987D, Direction=45, Strength=4)">Text</p>
This text has shadow with #B8987D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B8987D; -webkit-box-shadow: 1px 1px 3px 2px #B8987D; box-shadow: 1px 1px 3px 2px #B8987D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B8987D; -webkit-box-shadow: 1px 1px 3px 2px #B8987D; box-shadow:1px 1px 3px 2px #B8987D;">
Div content here</div>
This text has color #B8987D on black background.
This text has color #B8987D on white background.
This text has black color on #B8987D background.
This text has white color on #B8987D background.