HEX: #BC9ACE
RGB: (188,154,206)
#BC9ACE contains red, green and blue colors in about the same proportion. Web safe color of #BC9ACE is #CC99CC (or #C9C).
#BC9ACE color RGB value is (188,154,206).
RGB: (188,154,206) (74%,60%,81%)
R 188 of 255 = 74%
G 154 of 255 = 60%
B 206 of 255 = 81%
R + G + B ~ 72%. #BC9ACE is quite light color.
R + G + B =
188 + 154 + 206 = 548 (100%)
R 188 of 548 ~ 34.31%
G 154 of 548 ~ 28.1%
B 206 of 548 ~ 37.59%
#BC9ACE color CMYK value is (9,25,0,19).
CMYK: (9,25,0,19) C9M25Y0K19 (9%,25%,0%,19%) (0.09/0.25/0.00/0.19)
BC | 9A | CE | |
---|---|---|---|
RGB | 188 | 154 | 206 |
HSL | 279° | 34.67% | 70.59% |
HSB/HSV | 279° | 25.24% | 80.78% |
CMYK | 8.74% | 25.24% | 0.00% |
19.22% |
HEX | BC | 9A | CE |
Decimal | 188 | 154 | 206 |
Binary | 10111100 | 10011010 | 11001110 |
Octal | 274 | 232 | 316 |
Examples of css and html codes for elements with #BC9ACE color. Also use rgb(188,154,206) instead hex code.
.myTextColor { color: #BC9ACE; }
<p style="color:#BC9ACE">This sample text font color is #BC9ACE.</p>
This text font color is #BC9ACE.
.myBgColor { background-color: #BC9ACE; }
<div style="background-color:#BC9ACE">Inner text</div>
This div background color is #BC9ACE.
.myBorderColor { border: 1px solid #BC9ACE; }
<div style="border:3px solid #BC9ACE">Div</div>
This div border color is #BC9ACE.
.myOpacity80 { color: #BC9ACE; opacity: 0.8; }
<p style="color:#BC9ACE;opacity:0.8;">80%</p>
Text with #BC9ACE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BC9ACE;}
<p style="text-shadow: 3px 3px 1px #BC9ACE">Text here.</p>
This text has shadow with #BC9ACE color.
.textShadow {text-shadow: 3px 3px 1px #BC9ACE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BC9ACE, 5px 5px 20px red">Text here.</p>
This text has shadow with #BC9ACE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BC9ACE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BC9ACE, Direction=45, Strength=4)">Text</p>
This text has shadow with #BC9ACE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BC9ACE; -webkit-box-shadow: 1px 1px 3px 2px #BC9ACE; box-shadow: 1px 1px 3px 2px #BC9ACE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BC9ACE; -webkit-box-shadow: 1px 1px 3px 2px #BC9ACE; box-shadow:1px 1px 3px 2px #BC9ACE;">
Div content here</div>
This text has color #BC9ACE on black background.
This text has color #BC9ACE on white background.
This text has black color on #BC9ACE background.
This text has white color on #BC9ACE background.