HEX: #BC99CA
RGB: (188,153,202)
#BC99CA contains red, green and blue colors in about the same proportion. Web safe color of #BC99CA is #CC99CC (or #C9C).
#BC99CA color RGB value is (188,153,202).
RGB: (188,153,202) (74%,60%,79%)
R 188 of 255 = 74%
G 153 of 255 = 60%
B 202 of 255 = 79%
R + G + B ~ 71%. #BC99CA is quite light color.
R + G + B =
188 + 153 + 202 = 543 (100%)
R 188 of 543 ~ 34.62%
G 153 of 543 ~ 28.18%
B 202 of 543 ~ 37.2%
#BC99CA color CMYK value is (7,24,0,21).
CMYK: (7,24,0,21) C7M24Y0K21 (7%,24%,0%,21%) (0.07/0.24/0.00/0.21)
BC | 99 | CA | |
---|---|---|---|
RGB | 188 | 153 | 202 |
HSL | 283° | 31.61% | 69.61% |
HSB/HSV | 283° | 24.26% | 79.22% |
CMYK | 6.93% | 24.26% | 0.00% |
20.78% |
HEX | BC | 99 | CA |
Decimal | 188 | 153 | 202 |
Binary | 10111100 | 10011001 | 11001010 |
Octal | 274 | 231 | 312 |
Examples of css and html codes for elements with #BC99CA color. Also use rgb(188,153,202) instead hex code.
.myTextColor { color: #BC99CA; }
<p style="color:#BC99CA">This sample text font color is #BC99CA.</p>
This text font color is #BC99CA.
.myBgColor { background-color: #BC99CA; }
<div style="background-color:#BC99CA">Inner text</div>
This div background color is #BC99CA.
.myBorderColor { border: 1px solid #BC99CA; }
<div style="border:3px solid #BC99CA">Div</div>
This div border color is #BC99CA.
.myOpacity80 { color: #BC99CA; opacity: 0.8; }
<p style="color:#BC99CA;opacity:0.8;">80%</p>
Text with #BC99CA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BC99CA;}
<p style="text-shadow: 3px 3px 1px #BC99CA">Text here.</p>
This text has shadow with #BC99CA color.
.textShadow {text-shadow: 3px 3px 1px #BC99CA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BC99CA, 5px 5px 20px red">Text here.</p>
This text has shadow with #BC99CA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BC99CA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BC99CA, Direction=45, Strength=4)">Text</p>
This text has shadow with #BC99CA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BC99CA; -webkit-box-shadow: 1px 1px 3px 2px #BC99CA; box-shadow: 1px 1px 3px 2px #BC99CA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BC99CA; -webkit-box-shadow: 1px 1px 3px 2px #BC99CA; box-shadow:1px 1px 3px 2px #BC99CA;">
Div content here</div>
This text has color #BC99CA on black background.
This text has color #BC99CA on white background.
This text has black color on #BC99CA background.
This text has white color on #BC99CA background.