HEX: #BC888D
RGB: (188,136,141)
#BC888D contains red, green and blue colors in about the same proportion. Web safe color of #BC888D is #CC9999 (or #C99).
#BC888D color RGB value is (188,136,141).
RGB: (188,136,141) (74%,53%,55%)
R 188 of 255 = 74%
G 136 of 255 = 53%
B 141 of 255 = 55%
R + G + B ~ 61%. #BC888D is quite light color.
R + G + B =
188 + 136 + 141 = 465 (100%)
R 188 of 465 ~ 40.43%
G 136 of 465 ~ 29.25%
B 141 of 465 ~ 30.32%
#BC888D color CMYK value is (0,28,25,26).
CMYK: (0,28,25,26) C0M28Y25K26 (0%,28%,25%,26%) (0.00/0.28/0.25/0.26)
BC | 88 | 8D | |
---|---|---|---|
RGB | 188 | 136 | 141 |
HSL | 354° | 27.96% | 63.53% |
HSB/HSV | 354° | 27.66% | 73.73% |
CMYK | 0.00% | 27.66% | 25.00% |
26.27% |
HEX | BC | 88 | 8D |
Decimal | 188 | 136 | 141 |
Binary | 10111100 | 10001000 | 10001101 |
Octal | 274 | 210 | 215 |
Examples of css and html codes for elements with #BC888D color. Also use rgb(188,136,141) instead hex code.
.myTextColor { color: #BC888D; }
<p style="color:#BC888D">This sample text font color is #BC888D.</p>
This text font color is #BC888D.
.myBgColor { background-color: #BC888D; }
<div style="background-color:#BC888D">Inner text</div>
This div background color is #BC888D.
.myBorderColor { border: 1px solid #BC888D; }
<div style="border:3px solid #BC888D">Div</div>
This div border color is #BC888D.
.myOpacity80 { color: #BC888D; opacity: 0.8; }
<p style="color:#BC888D;opacity:0.8;">80%</p>
Text with #BC888D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BC888D;}
<p style="text-shadow: 3px 3px 1px #BC888D">Text here.</p>
This text has shadow with #BC888D color.
.textShadow {text-shadow: 3px 3px 1px #BC888D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BC888D, 5px 5px 20px red">Text here.</p>
This text has shadow with #BC888D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BC888D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BC888D, Direction=45, Strength=4)">Text</p>
This text has shadow with #BC888D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BC888D; -webkit-box-shadow: 1px 1px 3px 2px #BC888D; box-shadow: 1px 1px 3px 2px #BC888D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BC888D; -webkit-box-shadow: 1px 1px 3px 2px #BC888D; box-shadow:1px 1px 3px 2px #BC888D;">
Div content here</div>
This text has color #BC888D on black background.
This text has color #BC888D on white background.
This text has black color on #BC888D background.
This text has white color on #BC888D background.