HEX: #B48B60
RGB: (180,139,96)
#B48B60 contains mainly red and green colors. Web safe color of #B48B60 is #CC9966 (or #C96).
#B48B60 color RGB value is (180,139,96).
RGB: (180,139,96) (71%,55%,38%)
R 180 of 255 = 71%
G 139 of 255 = 55%
B 96 of 255 = 38%
R + G + B ~ 55%. #B48B60 is middle color (not dark and not light).
R + G + B =
180 + 139 + 96 = 415 (100%)
R 180 of 415 ~ 43.37%
G 139 of 415 ~ 33.49%
B 96 of 415 ~ 23.13%
#B48B60 color CMYK value is (0,23,47,29).
CMYK: (0,23,47,29) C0M23Y47K29 (0%,23%,47%,29%) (0.00/0.23/0.47/0.29)
B4 | 8B | 60 | |
---|---|---|---|
RGB | 180 | 139 | 96 |
HSL | 31° | 35.90% | 54.12% |
HSB/HSV | 31° | 46.67% | 70.59% |
CMYK | 0.00% | 22.78% | 46.67% |
29.41% |
HEX | B4 | 8B | 60 |
Decimal | 180 | 139 | 96 |
Binary | 10110100 | 10001011 | 1100000 |
Octal | 264 | 213 | 140 |
Examples of css and html codes for elements with #B48B60 color. Also use rgb(180,139,96) instead hex code.
.myTextColor { color: #B48B60; }
<p style="color:#B48B60">This sample text font color is #B48B60.</p>
This text font color is #B48B60.
.myBgColor { background-color: #B48B60; }
<div style="background-color:#B48B60">Inner text</div>
This div background color is #B48B60.
.myBorderColor { border: 1px solid #B48B60; }
<div style="border:3px solid #B48B60">Div</div>
This div border color is #B48B60.
.myOpacity80 { color: #B48B60; opacity: 0.8; }
<p style="color:#B48B60;opacity:0.8;">80%</p>
Text with #B48B60 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B48B60;}
<p style="text-shadow: 3px 3px 1px #B48B60">Text here.</p>
This text has shadow with #B48B60 color.
.textShadow {text-shadow: 3px 3px 1px #B48B60, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B48B60, 5px 5px 20px red">Text here.</p>
This text has shadow with #B48B60 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B48B60, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B48B60, Direction=45, Strength=4)">Text</p>
This text has shadow with #B48B60 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B48B60; -webkit-box-shadow: 1px 1px 3px 2px #B48B60; box-shadow: 1px 1px 3px 2px #B48B60; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B48B60; -webkit-box-shadow: 1px 1px 3px 2px #B48B60; box-shadow:1px 1px 3px 2px #B48B60;">
Div content here</div>
This text has color #B48B60 on black background.
This text has color #B48B60 on white background.
This text has black color on #B48B60 background.
This text has white color on #B48B60 background.