HEX: #B7894B
RGB: (183,137,75)
#B7894B contains mainly red and green colors. Web safe color of #B7894B is #CC9933 (or #C93).
#B7894B color RGB value is (183,137,75).
RGB: (183,137,75) (72%,54%,29%)
R 183 of 255 = 72%
G 137 of 255 = 54%
B 75 of 255 = 29%
R + G + B ~ 52%. #B7894B is middle color (not dark and not light).
R + G + B =
183 + 137 + 75 = 395 (100%)
R 183 of 395 ~ 46.33%
G 137 of 395 ~ 34.68%
B 75 of 395 ~ 18.99%
#B7894B color CMYK value is (0,25,59,28).
CMYK: (0,25,59,28) C0M25Y59K28 (0%,25%,59%,28%) (0.00/0.25/0.59/0.28)
B7 | 89 | 4B | |
---|---|---|---|
RGB | 183 | 137 | 75 |
HSL | 34° | 42.86% | 50.59% |
HSB/HSV | 34° | 59.02% | 71.76% |
CMYK | 0.00% | 25.14% | 59.02% |
28.24% |
HEX | B7 | 89 | 4B |
Decimal | 183 | 137 | 75 |
Binary | 10110111 | 10001001 | 1001011 |
Octal | 267 | 211 | 113 |
Examples of css and html codes for elements with #B7894B color. Also use rgb(183,137,75) instead hex code.
.myTextColor { color: #B7894B; }
<p style="color:#B7894B">This sample text font color is #B7894B.</p>
This text font color is #B7894B.
.myBgColor { background-color: #B7894B; }
<div style="background-color:#B7894B">Inner text</div>
This div background color is #B7894B.
.myBorderColor { border: 1px solid #B7894B; }
<div style="border:3px solid #B7894B">Div</div>
This div border color is #B7894B.
.myOpacity80 { color: #B7894B; opacity: 0.8; }
<p style="color:#B7894B;opacity:0.8;">80%</p>
Text with #B7894B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B7894B;}
<p style="text-shadow: 3px 3px 1px #B7894B">Text here.</p>
This text has shadow with #B7894B color.
.textShadow {text-shadow: 3px 3px 1px #B7894B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B7894B, 5px 5px 20px red">Text here.</p>
This text has shadow with #B7894B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B7894B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B7894B, Direction=45, Strength=4)">Text</p>
This text has shadow with #B7894B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B7894B; -webkit-box-shadow: 1px 1px 3px 2px #B7894B; box-shadow: 1px 1px 3px 2px #B7894B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B7894B; -webkit-box-shadow: 1px 1px 3px 2px #B7894B; box-shadow:1px 1px 3px 2px #B7894B;">
Div content here</div>
This text has color #B7894B on black background.
This text has color #B7894B on white background.
This text has black color on #B7894B background.
This text has white color on #B7894B background.