HEX: #B4B667
RGB: (180,182,103)
#B4B667 contains mainly red and green colors. Web safe color of #B4B667 is #CCCC66 (or #CC6).
#B4B667 color RGB value is (180,182,103).
RGB: (180,182,103) (71%,71%,40%)
R 180 of 255 = 71%
G 182 of 255 = 71%
B 103 of 255 = 40%
R + G + B ~ 61%. #B4B667 is quite light color.
R + G + B =
180 + 182 + 103 = 465 (100%)
R 180 of 465 ~ 38.71%
G 182 of 465 ~ 39.14%
B 103 of 465 ~ 22.15%
#B4B667 color CMYK value is (1,0,43,29).
CMYK: (1,0,43,29) C1M0Y43K29 (1%,0%,43%,29%) (0.01/0.00/0.43/0.29)
B4 | B6 | 67 | |
---|---|---|---|
RGB | 180 | 182 | 103 |
HSL | 62° | 35.11% | 55.88% |
HSB/HSV | 62° | 43.41% | 71.37% |
CMYK | 1.10% | 0.00% | 43.41% |
28.63% |
HEX | B4 | B6 | 67 |
Decimal | 180 | 182 | 103 |
Binary | 10110100 | 10110110 | 1100111 |
Octal | 264 | 266 | 147 |
Examples of css and html codes for elements with #B4B667 color. Also use rgb(180,182,103) instead hex code.
.myTextColor { color: #B4B667; }
<p style="color:#B4B667">This sample text font color is #B4B667.</p>
This text font color is #B4B667.
.myBgColor { background-color: #B4B667; }
<div style="background-color:#B4B667">Inner text</div>
This div background color is #B4B667.
.myBorderColor { border: 1px solid #B4B667; }
<div style="border:3px solid #B4B667">Div</div>
This div border color is #B4B667.
.myOpacity80 { color: #B4B667; opacity: 0.8; }
<p style="color:#B4B667;opacity:0.8;">80%</p>
Text with #B4B667 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B4B667;}
<p style="text-shadow: 3px 3px 1px #B4B667">Text here.</p>
This text has shadow with #B4B667 color.
.textShadow {text-shadow: 3px 3px 1px #B4B667, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B4B667, 5px 5px 20px red">Text here.</p>
This text has shadow with #B4B667 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B4B667, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B4B667, Direction=45, Strength=4)">Text</p>
This text has shadow with #B4B667 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B4B667; -webkit-box-shadow: 1px 1px 3px 2px #B4B667; box-shadow: 1px 1px 3px 2px #B4B667; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B4B667; -webkit-box-shadow: 1px 1px 3px 2px #B4B667; box-shadow:1px 1px 3px 2px #B4B667;">
Div content here</div>
This text has color #B4B667 on black background.
This text has color #B4B667 on white background.
This text has black color on #B4B667 background.
This text has white color on #B4B667 background.