HEX: #B47E1D
RGB: (180,126,29)
#B47E1D contains mainly red and green colors. Web safe color of #B47E1D is #CC6633 (or #C63).
#B47E1D color RGB value is (180,126,29).
RGB: (180,126,29) (71%,49%,11%)
R 180 of 255 = 71%
G 126 of 255 = 49%
B 29 of 255 = 11%
R + G + B ~ 44%. #B47E1D is middle color (not dark and not light).
R + G + B =
180 + 126 + 29 = 335 (100%)
R 180 of 335 ~ 53.73%
G 126 of 335 ~ 37.61%
B 29 of 335 ~ 8.66%
#B47E1D color CMYK value is (0,30,84,29).
CMYK: (0,30,84,29) C0M30Y84K29 (0%,30%,84%,29%) (0.00/0.30/0.84/0.29)
B4 | 7E | 1D | |
---|---|---|---|
RGB | 180 | 126 | 29 |
HSL | 39° | 72.25% | 40.98% |
HSB/HSV | 39° | 83.89% | 70.59% |
CMYK | 0.00% | 30.00% | 83.89% |
29.41% |
HEX | B4 | 7E | 1D |
Decimal | 180 | 126 | 29 |
Binary | 10110100 | 1111110 | 11101 |
Octal | 264 | 176 | 35 |
Examples of css and html codes for elements with #B47E1D color. Also use rgb(180,126,29) instead hex code.
.myTextColor { color: #B47E1D; }
<p style="color:#B47E1D">This sample text font color is #B47E1D.</p>
This text font color is #B47E1D.
.myBgColor { background-color: #B47E1D; }
<div style="background-color:#B47E1D">Inner text</div>
This div background color is #B47E1D.
.myBorderColor { border: 1px solid #B47E1D; }
<div style="border:3px solid #B47E1D">Div</div>
This div border color is #B47E1D.
.myOpacity80 { color: #B47E1D; opacity: 0.8; }
<p style="color:#B47E1D;opacity:0.8;">80%</p>
Text with #B47E1D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B47E1D;}
<p style="text-shadow: 3px 3px 1px #B47E1D">Text here.</p>
This text has shadow with #B47E1D color.
.textShadow {text-shadow: 3px 3px 1px #B47E1D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B47E1D, 5px 5px 20px red">Text here.</p>
This text has shadow with #B47E1D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B47E1D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B47E1D, Direction=45, Strength=4)">Text</p>
This text has shadow with #B47E1D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B47E1D; -webkit-box-shadow: 1px 1px 3px 2px #B47E1D; box-shadow: 1px 1px 3px 2px #B47E1D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B47E1D; -webkit-box-shadow: 1px 1px 3px 2px #B47E1D; box-shadow:1px 1px 3px 2px #B47E1D;">
Div content here</div>
This text has color #B47E1D on black background.
This text has color #B47E1D on white background.
This text has black color on #B47E1D background.
This text has white color on #B47E1D background.