HEX: #B87000
RGB: (184,112,0)
#B87000 contains mainly red color. Web safe color of #B87000 is #CC6600 (or #C60).
#B87000 color RGB value is (184,112,0).
RGB: (184,112,0) (72%,44%,0%)
R 184 of 255 = 72%
G 112 of 255 = 44%
B 0 of 255 = 0%
R + G + B ~ 39%. #B87000 is quite dark color.
R + G + B =
184 + 112 + 0 = 296 (100%)
R 184 of 296 ~ 62.16%
G 112 of 296 ~ 37.84%
B 0 of 296 ~ 0%
#B87000 color CMYK value is (0,39,100,28).
CMYK: (0,39,100,28) C0M39Y100K28 (0%,39%,100%,28%) (0.00/0.39/1.00/0.28)
B8 | 70 | 00 | |
---|---|---|---|
RGB | 184 | 112 | 0 |
HSL | 37° | 100.00% | 36.08% |
HSB/HSV | 37° | 100.00% | 72.16% |
CMYK | 0.00% | 39.13% | 100.00% |
27.84% |
HEX | B8 | 70 | 00 |
Decimal | 184 | 112 | 0 |
Binary | 10111000 | 1110000 | 0 |
Octal | 270 | 160 | 0 |
Examples of css and html codes for elements with #B87000 color. Also use rgb(184,112,0) instead hex code.
.myTextColor { color: #B87000; }
<p style="color:#B87000">This sample text font color is #B87000.</p>
This text font color is #B87000.
.myBgColor { background-color: #B87000; }
<div style="background-color:#B87000">Inner text</div>
This div background color is #B87000.
.myBorderColor { border: 1px solid #B87000; }
<div style="border:3px solid #B87000">Div</div>
This div border color is #B87000.
.myOpacity80 { color: #B87000; opacity: 0.8; }
<p style="color:#B87000;opacity:0.8;">80%</p>
Text with #B87000 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B87000;}
<p style="text-shadow: 3px 3px 1px #B87000">Text here.</p>
This text has shadow with #B87000 color.
.textShadow {text-shadow: 3px 3px 1px #B87000, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B87000, 5px 5px 20px red">Text here.</p>
This text has shadow with #B87000 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B87000, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B87000, Direction=45, Strength=4)">Text</p>
This text has shadow with #B87000 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B87000; -webkit-box-shadow: 1px 1px 3px 2px #B87000; box-shadow: 1px 1px 3px 2px #B87000; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B87000; -webkit-box-shadow: 1px 1px 3px 2px #B87000; box-shadow:1px 1px 3px 2px #B87000;">
Div content here</div>
This text has color #B87000 on black background.
This text has color #B87000 on white background.
This text has black color on #B87000 background.
This text has white color on #B87000 background.