HEX: #B8860B
RGB: (184,134,11)
Color name is DarkGoldenrod. #B8860B contains mainly red and green colors. Web safe color of #B8860B is #CC9900 (or #C90).
#B8860B color RGB value is (184,134,11).
RGB: (184,134,11) (72%,53%,4%)
R 184 of 255 = 72%
G 134 of 255 = 53%
B 11 of 255 = 4%
R + G + B ~ 43%. #B8860B is middle color (not dark and not light).
R + G + B =
184 + 134 + 11 = 329 (100%)
R 184 of 329 ~ 55.93%
G 134 of 329 ~ 40.73%
B 11 of 329 ~ 3.34%
#B8860B color CMYK value is (0,27,94,28).
CMYK: (0,27,94,28) C0M27Y94K28 (0%,27%,94%,28%) (0.00/0.27/0.94/0.28)
B8 | 86 | 0B | |
---|---|---|---|
RGB | 184 | 134 | 11 |
HSL | 43° | 88.72% | 38.24% |
HSB/HSV | 43° | 94.02% | 72.16% |
CMYK | 0.00% | 27.17% | 94.02% |
27.84% |
HEX | B8 | 86 | 0B |
Decimal | 184 | 134 | 11 |
Binary | 10111000 | 10000110 | 1011 |
Octal | 270 | 206 | 13 |
Examples of css and html codes for elements with #B8860B color. Also use rgb(184,134,11) instead hex code.
.myTextColor { color: #B8860B; }
<p style="color:#B8860B">This sample text font color is #B8860B.</p>
This text font color is #B8860B.
.myBgColor { background-color: #B8860B; }
<div style="background-color:#B8860B">Inner text</div>
This div background color is #B8860B.
.myBorderColor { border: 1px solid #B8860B; }
<div style="border:3px solid #B8860B">Div</div>
This div border color is #B8860B.
.myOpacity80 { color: #B8860B; opacity: 0.8; }
<p style="color:#B8860B;opacity:0.8;">80%</p>
Text with #B8860B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B8860B;}
<p style="text-shadow: 3px 3px 1px #B8860B">Text here.</p>
This text has shadow with #B8860B color.
.textShadow {text-shadow: 3px 3px 1px #B8860B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B8860B, 5px 5px 20px red">Text here.</p>
This text has shadow with #B8860B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B8860B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B8860B, Direction=45, Strength=4)">Text</p>
This text has shadow with #B8860B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B8860B; -webkit-box-shadow: 1px 1px 3px 2px #B8860B; box-shadow: 1px 1px 3px 2px #B8860B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B8860B; -webkit-box-shadow: 1px 1px 3px 2px #B8860B; box-shadow:1px 1px 3px 2px #B8860B;">
Div content here</div>
This text has color #B8860B on black background.
This text has color #B8860B on white background.
This text has black color on #B8860B background.
This text has white color on #B8860B background.