HEX: #B46C5D
RGB: (180,108,93)
#B46C5D contains mainly red color. Web safe color of #B46C5D is #CC6666 (or #C66).
#B46C5D color RGB value is (180,108,93).
RGB: (180,108,93) (71%,42%,36%)
R 180 of 255 = 71%
G 108 of 255 = 42%
B 93 of 255 = 36%
R + G + B ~ 50%. #B46C5D is middle color (not dark and not light).
R + G + B =
180 + 108 + 93 = 381 (100%)
R 180 of 381 ~ 47.24%
G 108 of 381 ~ 28.35%
B 93 of 381 ~ 24.41%
#B46C5D color CMYK value is (0,40,48,29).
CMYK: (0,40,48,29) C0M40Y48K29 (0%,40%,48%,29%) (0.00/0.40/0.48/0.29)
B4 | 6C | 5D | |
---|---|---|---|
RGB | 180 | 108 | 93 |
HSL | 10° | 36.71% | 53.53% |
HSB/HSV | 10° | 48.33% | 70.59% |
CMYK | 0.00% | 40.00% | 48.33% |
29.41% |
HEX | B4 | 6C | 5D |
Decimal | 180 | 108 | 93 |
Binary | 10110100 | 1101100 | 1011101 |
Octal | 264 | 154 | 135 |
Examples of css and html codes for elements with #B46C5D color. Also use rgb(180,108,93) instead hex code.
.myTextColor { color: #B46C5D; }
<p style="color:#B46C5D">This sample text font color is #B46C5D.</p>
This text font color is #B46C5D.
.myBgColor { background-color: #B46C5D; }
<div style="background-color:#B46C5D">Inner text</div>
This div background color is #B46C5D.
.myBorderColor { border: 1px solid #B46C5D; }
<div style="border:3px solid #B46C5D">Div</div>
This div border color is #B46C5D.
.myOpacity80 { color: #B46C5D; opacity: 0.8; }
<p style="color:#B46C5D;opacity:0.8;">80%</p>
Text with #B46C5D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B46C5D;}
<p style="text-shadow: 3px 3px 1px #B46C5D">Text here.</p>
This text has shadow with #B46C5D color.
.textShadow {text-shadow: 3px 3px 1px #B46C5D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B46C5D, 5px 5px 20px red">Text here.</p>
This text has shadow with #B46C5D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B46C5D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B46C5D, Direction=45, Strength=4)">Text</p>
This text has shadow with #B46C5D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B46C5D; -webkit-box-shadow: 1px 1px 3px 2px #B46C5D; box-shadow: 1px 1px 3px 2px #B46C5D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B46C5D; -webkit-box-shadow: 1px 1px 3px 2px #B46C5D; box-shadow:1px 1px 3px 2px #B46C5D;">
Div content here</div>
This text has color #B46C5D on black background.
This text has color #B46C5D on white background.
This text has black color on #B46C5D background.
This text has white color on #B46C5D background.