HEX: #BCADAE
RGB: (188,173,174)
#BCADAE contains red, green and blue colors in about the same proportion. Web safe color of #BCADAE is #CC9999 (or #C99).
#BCADAE color RGB value is (188,173,174).
RGB: (188,173,174) (74%,68%,68%)
R 188 of 255 = 74%
G 173 of 255 = 68%
B 174 of 255 = 68%
R + G + B ~ 70%. #BCADAE is quite light color.
R + G + B =
188 + 173 + 174 = 535 (100%)
R 188 of 535 ~ 35.14%
G 173 of 535 ~ 32.34%
B 174 of 535 ~ 32.52%
#BCADAE color CMYK value is (0,8,7,26).
CMYK: (0,8,7,26) C0M8Y7K26 (0%,8%,7%,26%) (0.00/0.08/0.07/0.26)
BC | AD | AE | |
---|---|---|---|
RGB | 188 | 173 | 174 |
HSL | 356° | 10.07% | 70.78% |
HSB/HSV | 356° | 7.98% | 73.73% |
CMYK | 0.00% | 7.98% | 7.45% |
26.27% |
HEX | BC | AD | AE |
Decimal | 188 | 173 | 174 |
Binary | 10111100 | 10101101 | 10101110 |
Octal | 274 | 255 | 256 |
Examples of css and html codes for elements with #BCADAE color. Also use rgb(188,173,174) instead hex code.
.myTextColor { color: #BCADAE; }
<p style="color:#BCADAE">This sample text font color is #BCADAE.</p>
This text font color is #BCADAE.
.myBgColor { background-color: #BCADAE; }
<div style="background-color:#BCADAE">Inner text</div>
This div background color is #BCADAE.
.myBorderColor { border: 1px solid #BCADAE; }
<div style="border:3px solid #BCADAE">Div</div>
This div border color is #BCADAE.
.myOpacity80 { color: #BCADAE; opacity: 0.8; }
<p style="color:#BCADAE;opacity:0.8;">80%</p>
Text with #BCADAE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BCADAE;}
<p style="text-shadow: 3px 3px 1px #BCADAE">Text here.</p>
This text has shadow with #BCADAE color.
.textShadow {text-shadow: 3px 3px 1px #BCADAE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BCADAE, 5px 5px 20px red">Text here.</p>
This text has shadow with #BCADAE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BCADAE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BCADAE, Direction=45, Strength=4)">Text</p>
This text has shadow with #BCADAE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BCADAE; -webkit-box-shadow: 1px 1px 3px 2px #BCADAE; box-shadow: 1px 1px 3px 2px #BCADAE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BCADAE; -webkit-box-shadow: 1px 1px 3px 2px #BCADAE; box-shadow:1px 1px 3px 2px #BCADAE;">
Div content here</div>
This text has color #BCADAE on black background.
This text has color #BCADAE on white background.
This text has black color on #BCADAE background.
This text has white color on #BCADAE background.