HEX: #BCADCC
RGB: (188,173,204)
#BCADCC contains red, green and blue colors in about the same proportion. Web safe color of #BCADCC is #CC99CC (or #C9C).
#BCADCC color RGB value is (188,173,204).
RGB: (188,173,204) (74%,68%,80%)
R 188 of 255 = 74%
G 173 of 255 = 68%
B 204 of 255 = 80%
R + G + B ~ 74%. #BCADCC is quite light color.
R + G + B =
188 + 173 + 204 = 565 (100%)
R 188 of 565 ~ 33.27%
G 173 of 565 ~ 30.62%
B 204 of 565 ~ 36.11%
#BCADCC color CMYK value is (8,15,0,20).
CMYK: (8,15,0,20) C8M15Y0K20 (8%,15%,0%,20%) (0.08/0.15/0.00/0.20)
BC | AD | CC | |
---|---|---|---|
RGB | 188 | 173 | 204 |
HSL | 269° | 23.31% | 73.92% |
HSB/HSV | 269° | 15.20% | 80.00% |
CMYK | 7.84% | 15.20% | 0.00% |
20.00% |
HEX | BC | AD | CC |
Decimal | 188 | 173 | 204 |
Binary | 10111100 | 10101101 | 11001100 |
Octal | 274 | 255 | 314 |
Examples of css and html codes for elements with #BCADCC color. Also use rgb(188,173,204) instead hex code.
.myTextColor { color: #BCADCC; }
<p style="color:#BCADCC">This sample text font color is #BCADCC.</p>
This text font color is #BCADCC.
.myBgColor { background-color: #BCADCC; }
<div style="background-color:#BCADCC">Inner text</div>
This div background color is #BCADCC.
.myBorderColor { border: 1px solid #BCADCC; }
<div style="border:3px solid #BCADCC">Div</div>
This div border color is #BCADCC.
.myOpacity80 { color: #BCADCC; opacity: 0.8; }
<p style="color:#BCADCC;opacity:0.8;">80%</p>
Text with #BCADCC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BCADCC;}
<p style="text-shadow: 3px 3px 1px #BCADCC">Text here.</p>
This text has shadow with #BCADCC color.
.textShadow {text-shadow: 3px 3px 1px #BCADCC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BCADCC, 5px 5px 20px red">Text here.</p>
This text has shadow with #BCADCC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BCADCC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BCADCC, Direction=45, Strength=4)">Text</p>
This text has shadow with #BCADCC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BCADCC; -webkit-box-shadow: 1px 1px 3px 2px #BCADCC; box-shadow: 1px 1px 3px 2px #BCADCC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BCADCC; -webkit-box-shadow: 1px 1px 3px 2px #BCADCC; box-shadow:1px 1px 3px 2px #BCADCC;">
Div content here</div>
This text has color #BCADCC on black background.
This text has color #BCADCC on white background.
This text has black color on #BCADCC background.
This text has white color on #BCADCC background.