HEX: #B46D58
RGB: (180,109,88)
#B46D58 contains mainly red color. Web safe color of #B46D58 is #CC6666 (or #C66).
#B46D58 color RGB value is (180,109,88).
RGB: (180,109,88) (71%,43%,35%)
R 180 of 255 = 71%
G 109 of 255 = 43%
B 88 of 255 = 35%
R + G + B ~ 50%. #B46D58 is middle color (not dark and not light).
R + G + B =
180 + 109 + 88 = 377 (100%)
R 180 of 377 ~ 47.75%
G 109 of 377 ~ 28.91%
B 88 of 377 ~ 23.34%
#B46D58 color CMYK value is (0,39,51,29).
CMYK: (0,39,51,29) C0M39Y51K29 (0%,39%,51%,29%) (0.00/0.39/0.51/0.29)
B4 | 6D | 58 | |
---|---|---|---|
RGB | 180 | 109 | 88 |
HSL | 14° | 38.02% | 52.55% |
HSB/HSV | 14° | 51.11% | 70.59% |
CMYK | 0.00% | 39.44% | 51.11% |
29.41% |
HEX | B4 | 6D | 58 |
Decimal | 180 | 109 | 88 |
Binary | 10110100 | 1101101 | 1011000 |
Octal | 264 | 155 | 130 |
Examples of css and html codes for elements with #B46D58 color. Also use rgb(180,109,88) instead hex code.
.myTextColor { color: #B46D58; }
<p style="color:#B46D58">This sample text font color is #B46D58.</p>
This text font color is #B46D58.
.myBgColor { background-color: #B46D58; }
<div style="background-color:#B46D58">Inner text</div>
This div background color is #B46D58.
.myBorderColor { border: 1px solid #B46D58; }
<div style="border:3px solid #B46D58">Div</div>
This div border color is #B46D58.
.myOpacity80 { color: #B46D58; opacity: 0.8; }
<p style="color:#B46D58;opacity:0.8;">80%</p>
Text with #B46D58 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B46D58;}
<p style="text-shadow: 3px 3px 1px #B46D58">Text here.</p>
This text has shadow with #B46D58 color.
.textShadow {text-shadow: 3px 3px 1px #B46D58, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B46D58, 5px 5px 20px red">Text here.</p>
This text has shadow with #B46D58 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B46D58, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B46D58, Direction=45, Strength=4)">Text</p>
This text has shadow with #B46D58 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B46D58; -webkit-box-shadow: 1px 1px 3px 2px #B46D58; box-shadow: 1px 1px 3px 2px #B46D58; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B46D58; -webkit-box-shadow: 1px 1px 3px 2px #B46D58; box-shadow:1px 1px 3px 2px #B46D58;">
Div content here</div>
This text has color #B46D58 on black background.
This text has color #B46D58 on white background.
This text has black color on #B46D58 background.
This text has white color on #B46D58 background.