HEX: #BCADBE
RGB: (188,173,190)
#BCADBE contains red, green and blue colors in about the same proportion. Web safe color of #BCADBE is #CC99CC (or #C9C).
#BCADBE color RGB value is (188,173,190).
RGB: (188,173,190) (74%,68%,75%)
R 188 of 255 = 74%
G 173 of 255 = 68%
B 190 of 255 = 75%
R + G + B ~ 72%. #BCADBE is quite light color.
R + G + B =
188 + 173 + 190 = 551 (100%)
R 188 of 551 ~ 34.12%
G 173 of 551 ~ 31.4%
B 190 of 551 ~ 34.48%
#BCADBE color CMYK value is (1,9,0,25).
CMYK: (1,9,0,25) C1M9Y0K25 (1%,9%,0%,25%) (0.01/0.09/0.00/0.25)
BC | AD | BE | |
---|---|---|---|
RGB | 188 | 173 | 190 |
HSL | 293° | 11.56% | 71.18% |
HSB/HSV | 293° | 8.95% | 74.51% |
CMYK | 1.05% | 8.95% | 0.00% |
25.49% |
HEX | BC | AD | BE |
Decimal | 188 | 173 | 190 |
Binary | 10111100 | 10101101 | 10111110 |
Octal | 274 | 255 | 276 |
Examples of css and html codes for elements with #BCADBE color. Also use rgb(188,173,190) instead hex code.
.myTextColor { color: #BCADBE; }
<p style="color:#BCADBE">This sample text font color is #BCADBE.</p>
This text font color is #BCADBE.
.myBgColor { background-color: #BCADBE; }
<div style="background-color:#BCADBE">Inner text</div>
This div background color is #BCADBE.
.myBorderColor { border: 1px solid #BCADBE; }
<div style="border:3px solid #BCADBE">Div</div>
This div border color is #BCADBE.
.myOpacity80 { color: #BCADBE; opacity: 0.8; }
<p style="color:#BCADBE;opacity:0.8;">80%</p>
Text with #BCADBE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BCADBE;}
<p style="text-shadow: 3px 3px 1px #BCADBE">Text here.</p>
This text has shadow with #BCADBE color.
.textShadow {text-shadow: 3px 3px 1px #BCADBE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BCADBE, 5px 5px 20px red">Text here.</p>
This text has shadow with #BCADBE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BCADBE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BCADBE, Direction=45, Strength=4)">Text</p>
This text has shadow with #BCADBE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BCADBE; -webkit-box-shadow: 1px 1px 3px 2px #BCADBE; box-shadow: 1px 1px 3px 2px #BCADBE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BCADBE; -webkit-box-shadow: 1px 1px 3px 2px #BCADBE; box-shadow:1px 1px 3px 2px #BCADBE;">
Div content here</div>
This text has color #BCADBE on black background.
This text has color #BCADBE on white background.
This text has black color on #BCADBE background.
This text has white color on #BCADBE background.