HEX: #B4897D
RGB: (180,137,125)
#B4897D contains red, green and blue colors in about the same proportion. Web safe color of #B4897D is #CC9966 (or #C96).
#B4897D color RGB value is (180,137,125).
RGB: (180,137,125) (71%,54%,49%)
R 180 of 255 = 71%
G 137 of 255 = 54%
B 125 of 255 = 49%
R + G + B ~ 58%. #B4897D is middle color (not dark and not light).
R + G + B =
180 + 137 + 125 = 442 (100%)
R 180 of 442 ~ 40.72%
G 137 of 442 ~ 31%
B 125 of 442 ~ 28.28%
#B4897D color CMYK value is (0,24,31,29).
CMYK: (0,24,31,29) C0M24Y31K29 (0%,24%,31%,29%) (0.00/0.24/0.31/0.29)
B4 | 89 | 7D | |
---|---|---|---|
RGB | 180 | 137 | 125 |
HSL | 13° | 26.83% | 59.80% |
HSB/HSV | 13° | 30.56% | 70.59% |
CMYK | 0.00% | 23.89% | 30.56% |
29.41% |
HEX | B4 | 89 | 7D |
Decimal | 180 | 137 | 125 |
Binary | 10110100 | 10001001 | 1111101 |
Octal | 264 | 211 | 175 |
Examples of css and html codes for elements with #B4897D color. Also use rgb(180,137,125) instead hex code.
.myTextColor { color: #B4897D; }
<p style="color:#B4897D">This sample text font color is #B4897D.</p>
This text font color is #B4897D.
.myBgColor { background-color: #B4897D; }
<div style="background-color:#B4897D">Inner text</div>
This div background color is #B4897D.
.myBorderColor { border: 1px solid #B4897D; }
<div style="border:3px solid #B4897D">Div</div>
This div border color is #B4897D.
.myOpacity80 { color: #B4897D; opacity: 0.8; }
<p style="color:#B4897D;opacity:0.8;">80%</p>
Text with #B4897D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B4897D;}
<p style="text-shadow: 3px 3px 1px #B4897D">Text here.</p>
This text has shadow with #B4897D color.
.textShadow {text-shadow: 3px 3px 1px #B4897D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B4897D, 5px 5px 20px red">Text here.</p>
This text has shadow with #B4897D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B4897D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B4897D, Direction=45, Strength=4)">Text</p>
This text has shadow with #B4897D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B4897D; -webkit-box-shadow: 1px 1px 3px 2px #B4897D; box-shadow: 1px 1px 3px 2px #B4897D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B4897D; -webkit-box-shadow: 1px 1px 3px 2px #B4897D; box-shadow:1px 1px 3px 2px #B4897D;">
Div content here</div>
This text has color #B4897D on black background.
This text has color #B4897D on white background.
This text has black color on #B4897D background.
This text has white color on #B4897D background.