HEX: #B48963
RGB: (180,137,99)
#B48963 contains mainly red and green colors. Web safe color of #B48963 is #CC9966 (or #C96).
#B48963 color RGB value is (180,137,99).
RGB: (180,137,99) (71%,54%,39%)
R 180 of 255 = 71%
G 137 of 255 = 54%
B 99 of 255 = 39%
R + G + B ~ 55%. #B48963 is middle color (not dark and not light).
R + G + B =
180 + 137 + 99 = 416 (100%)
R 180 of 416 ~ 43.27%
G 137 of 416 ~ 32.93%
B 99 of 416 ~ 23.8%
#B48963 color CMYK value is (0,24,45,29).
CMYK: (0,24,45,29) C0M24Y45K29 (0%,24%,45%,29%) (0.00/0.24/0.45/0.29)
B4 | 89 | 63 | |
---|---|---|---|
RGB | 180 | 137 | 99 |
HSL | 28° | 35.06% | 54.71% |
HSB/HSV | 28° | 45.00% | 70.59% |
CMYK | 0.00% | 23.89% | 45.00% |
29.41% |
HEX | B4 | 89 | 63 |
Decimal | 180 | 137 | 99 |
Binary | 10110100 | 10001001 | 1100011 |
Octal | 264 | 211 | 143 |
Examples of css and html codes for elements with #B48963 color. Also use rgb(180,137,99) instead hex code.
.myTextColor { color: #B48963; }
<p style="color:#B48963">This sample text font color is #B48963.</p>
This text font color is #B48963.
.myBgColor { background-color: #B48963; }
<div style="background-color:#B48963">Inner text</div>
This div background color is #B48963.
.myBorderColor { border: 1px solid #B48963; }
<div style="border:3px solid #B48963">Div</div>
This div border color is #B48963.
.myOpacity80 { color: #B48963; opacity: 0.8; }
<p style="color:#B48963;opacity:0.8;">80%</p>
Text with #B48963 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B48963;}
<p style="text-shadow: 3px 3px 1px #B48963">Text here.</p>
This text has shadow with #B48963 color.
.textShadow {text-shadow: 3px 3px 1px #B48963, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B48963, 5px 5px 20px red">Text here.</p>
This text has shadow with #B48963 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B48963, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B48963, Direction=45, Strength=4)">Text</p>
This text has shadow with #B48963 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B48963; -webkit-box-shadow: 1px 1px 3px 2px #B48963; box-shadow: 1px 1px 3px 2px #B48963; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B48963; -webkit-box-shadow: 1px 1px 3px 2px #B48963; box-shadow:1px 1px 3px 2px #B48963;">
Div content here</div>
This text has color #B48963 on black background.
This text has color #B48963 on white background.
This text has black color on #B48963 background.
This text has white color on #B48963 background.