HEX: #B87D7A
RGB: (184,125,122)
#B87D7A contains mainly red and green colors. Web safe color of #B87D7A is #CC6666 (or #C66).
#B87D7A color RGB value is (184,125,122).
RGB: (184,125,122) (72%,49%,48%)
R 184 of 255 = 72%
G 125 of 255 = 49%
B 122 of 255 = 48%
R + G + B ~ 56%. #B87D7A is middle color (not dark and not light).
R + G + B =
184 + 125 + 122 = 431 (100%)
R 184 of 431 ~ 42.69%
G 125 of 431 ~ 29%
B 122 of 431 ~ 28.31%
#B87D7A color CMYK value is (0,32,34,28).
CMYK: (0,32,34,28) C0M32Y34K28 (0%,32%,34%,28%) (0.00/0.32/0.34/0.28)
B8 | 7D | 7A | |
---|---|---|---|
RGB | 184 | 125 | 122 |
HSL | 3° | 30.39% | 60.00% |
HSB/HSV | 3° | 33.70% | 72.16% |
CMYK | 0.00% | 32.07% | 33.70% |
27.84% |
HEX | B8 | 7D | 7A |
Decimal | 184 | 125 | 122 |
Binary | 10111000 | 1111101 | 1111010 |
Octal | 270 | 175 | 172 |
Examples of css and html codes for elements with #B87D7A color. Also use rgb(184,125,122) instead hex code.
.myTextColor { color: #B87D7A; }
<p style="color:#B87D7A">This sample text font color is #B87D7A.</p>
This text font color is #B87D7A.
.myBgColor { background-color: #B87D7A; }
<div style="background-color:#B87D7A">Inner text</div>
This div background color is #B87D7A.
.myBorderColor { border: 1px solid #B87D7A; }
<div style="border:3px solid #B87D7A">Div</div>
This div border color is #B87D7A.
.myOpacity80 { color: #B87D7A; opacity: 0.8; }
<p style="color:#B87D7A;opacity:0.8;">80%</p>
Text with #B87D7A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B87D7A;}
<p style="text-shadow: 3px 3px 1px #B87D7A">Text here.</p>
This text has shadow with #B87D7A color.
.textShadow {text-shadow: 3px 3px 1px #B87D7A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B87D7A, 5px 5px 20px red">Text here.</p>
This text has shadow with #B87D7A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B87D7A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B87D7A, Direction=45, Strength=4)">Text</p>
This text has shadow with #B87D7A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B87D7A; -webkit-box-shadow: 1px 1px 3px 2px #B87D7A; box-shadow: 1px 1px 3px 2px #B87D7A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B87D7A; -webkit-box-shadow: 1px 1px 3px 2px #B87D7A; box-shadow:1px 1px 3px 2px #B87D7A;">
Div content here</div>
This text has color #B87D7A on black background.
This text has color #B87D7A on white background.
This text has black color on #B87D7A background.
This text has white color on #B87D7A background.