HEX: #BC816D
RGB: (188,129,109)
#BC816D contains mainly red and green colors. Web safe color of #BC816D is #CC9966 (or #C96).
#BC816D color RGB value is (188,129,109).
RGB: (188,129,109) (74%,51%,43%)
R 188 of 255 = 74%
G 129 of 255 = 51%
B 109 of 255 = 43%
R + G + B ~ 56%. #BC816D is middle color (not dark and not light).
R + G + B =
188 + 129 + 109 = 426 (100%)
R 188 of 426 ~ 44.13%
G 129 of 426 ~ 30.28%
B 109 of 426 ~ 25.59%
#BC816D color CMYK value is (0,31,42,26).
CMYK: (0,31,42,26) C0M31Y42K26 (0%,31%,42%,26%) (0.00/0.31/0.42/0.26)
BC | 81 | 6D | |
---|---|---|---|
RGB | 188 | 129 | 109 |
HSL | 15° | 37.09% | 58.24% |
HSB/HSV | 15° | 42.02% | 73.73% |
CMYK | 0.00% | 31.38% | 42.02% |
26.27% |
HEX | BC | 81 | 6D |
Decimal | 188 | 129 | 109 |
Binary | 10111100 | 10000001 | 1101101 |
Octal | 274 | 201 | 155 |
Examples of css and html codes for elements with #BC816D color. Also use rgb(188,129,109) instead hex code.
.myTextColor { color: #BC816D; }
<p style="color:#BC816D">This sample text font color is #BC816D.</p>
This text font color is #BC816D.
.myBgColor { background-color: #BC816D; }
<div style="background-color:#BC816D">Inner text</div>
This div background color is #BC816D.
.myBorderColor { border: 1px solid #BC816D; }
<div style="border:3px solid #BC816D">Div</div>
This div border color is #BC816D.
.myOpacity80 { color: #BC816D; opacity: 0.8; }
<p style="color:#BC816D;opacity:0.8;">80%</p>
Text with #BC816D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BC816D;}
<p style="text-shadow: 3px 3px 1px #BC816D">Text here.</p>
This text has shadow with #BC816D color.
.textShadow {text-shadow: 3px 3px 1px #BC816D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BC816D, 5px 5px 20px red">Text here.</p>
This text has shadow with #BC816D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BC816D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BC816D, Direction=45, Strength=4)">Text</p>
This text has shadow with #BC816D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BC816D; -webkit-box-shadow: 1px 1px 3px 2px #BC816D; box-shadow: 1px 1px 3px 2px #BC816D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BC816D; -webkit-box-shadow: 1px 1px 3px 2px #BC816D; box-shadow:1px 1px 3px 2px #BC816D;">
Div content here</div>
This text has color #BC816D on black background.
This text has color #BC816D on white background.
This text has black color on #BC816D background.
This text has white color on #BC816D background.