HEX: #BC9FB0
RGB: (188,159,176)
#BC9FB0 contains red, green and blue colors in about the same proportion. Web safe color of #BC9FB0 is #CC9999 (or #C99).
#BC9FB0 color RGB value is (188,159,176).
RGB: (188,159,176) (74%,62%,69%)
R 188 of 255 = 74%
G 159 of 255 = 62%
B 176 of 255 = 69%
R + G + B ~ 68%. #BC9FB0 is quite light color.
R + G + B =
188 + 159 + 176 = 523 (100%)
R 188 of 523 ~ 35.95%
G 159 of 523 ~ 30.4%
B 176 of 523 ~ 33.65%
#BC9FB0 color CMYK value is (0,15,6,26).
CMYK: (0,15,6,26) C0M15Y6K26 (0%,15%,6%,26%) (0.00/0.15/0.06/0.26)
BC | 9F | B0 | |
---|---|---|---|
RGB | 188 | 159 | 176 |
HSL | 325° | 17.79% | 68.04% |
HSB/HSV | 325° | 15.43% | 73.73% |
CMYK | 0.00% | 15.43% | 6.38% |
26.27% |
HEX | BC | 9F | B0 |
Decimal | 188 | 159 | 176 |
Binary | 10111100 | 10011111 | 10110000 |
Octal | 274 | 237 | 260 |
Examples of css and html codes for elements with #BC9FB0 color. Also use rgb(188,159,176) instead hex code.
.myTextColor { color: #BC9FB0; }
<p style="color:#BC9FB0">This sample text font color is #BC9FB0.</p>
This text font color is #BC9FB0.
.myBgColor { background-color: #BC9FB0; }
<div style="background-color:#BC9FB0">Inner text</div>
This div background color is #BC9FB0.
.myBorderColor { border: 1px solid #BC9FB0; }
<div style="border:3px solid #BC9FB0">Div</div>
This div border color is #BC9FB0.
.myOpacity80 { color: #BC9FB0; opacity: 0.8; }
<p style="color:#BC9FB0;opacity:0.8;">80%</p>
Text with #BC9FB0 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BC9FB0;}
<p style="text-shadow: 3px 3px 1px #BC9FB0">Text here.</p>
This text has shadow with #BC9FB0 color.
.textShadow {text-shadow: 3px 3px 1px #BC9FB0, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BC9FB0, 5px 5px 20px red">Text here.</p>
This text has shadow with #BC9FB0 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BC9FB0, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BC9FB0, Direction=45, Strength=4)">Text</p>
This text has shadow with #BC9FB0 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BC9FB0; -webkit-box-shadow: 1px 1px 3px 2px #BC9FB0; box-shadow: 1px 1px 3px 2px #BC9FB0; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BC9FB0; -webkit-box-shadow: 1px 1px 3px 2px #BC9FB0; box-shadow:1px 1px 3px 2px #BC9FB0;">
Div content here</div>
This text has color #BC9FB0 on black background.
This text has color #BC9FB0 on white background.
This text has black color on #BC9FB0 background.
This text has white color on #BC9FB0 background.