HEX: #BC97AA
RGB: (188,151,170)
#BC97AA contains red, green and blue colors in about the same proportion. Web safe color of #BC97AA is #CC9999 (or #C99).
#BC97AA color RGB value is (188,151,170).
RGB: (188,151,170) (74%,59%,67%)
R 188 of 255 = 74%
G 151 of 255 = 59%
B 170 of 255 = 67%
R + G + B ~ 67%. #BC97AA is quite light color.
R + G + B =
188 + 151 + 170 = 509 (100%)
R 188 of 509 ~ 36.94%
G 151 of 509 ~ 29.67%
B 170 of 509 ~ 33.4%
#BC97AA color CMYK value is (0,20,10,26).
CMYK: (0,20,10,26) C0M20Y10K26 (0%,20%,10%,26%) (0.00/0.20/0.10/0.26)
BC | 97 | AA | |
---|---|---|---|
RGB | 188 | 151 | 170 |
HSL | 329° | 21.64% | 66.47% |
HSB/HSV | 329° | 19.68% | 73.73% |
CMYK | 0.00% | 19.68% | 9.57% |
26.27% |
HEX | BC | 97 | AA |
Decimal | 188 | 151 | 170 |
Binary | 10111100 | 10010111 | 10101010 |
Octal | 274 | 227 | 252 |
Examples of css and html codes for elements with #BC97AA color. Also use rgb(188,151,170) instead hex code.
.myTextColor { color: #BC97AA; }
<p style="color:#BC97AA">This sample text font color is #BC97AA.</p>
This text font color is #BC97AA.
.myBgColor { background-color: #BC97AA; }
<div style="background-color:#BC97AA">Inner text</div>
This div background color is #BC97AA.
.myBorderColor { border: 1px solid #BC97AA; }
<div style="border:3px solid #BC97AA">Div</div>
This div border color is #BC97AA.
.myOpacity80 { color: #BC97AA; opacity: 0.8; }
<p style="color:#BC97AA;opacity:0.8;">80%</p>
Text with #BC97AA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BC97AA;}
<p style="text-shadow: 3px 3px 1px #BC97AA">Text here.</p>
This text has shadow with #BC97AA color.
.textShadow {text-shadow: 3px 3px 1px #BC97AA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BC97AA, 5px 5px 20px red">Text here.</p>
This text has shadow with #BC97AA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BC97AA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BC97AA, Direction=45, Strength=4)">Text</p>
This text has shadow with #BC97AA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BC97AA; -webkit-box-shadow: 1px 1px 3px 2px #BC97AA; box-shadow: 1px 1px 3px 2px #BC97AA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BC97AA; -webkit-box-shadow: 1px 1px 3px 2px #BC97AA; box-shadow:1px 1px 3px 2px #BC97AA;">
Div content here</div>
This text has color #BC97AA on black background.
This text has color #BC97AA on white background.
This text has black color on #BC97AA background.
This text has white color on #BC97AA background.