HEX: #BDAED7
RGB: (189,174,215)
#BDAED7 contains red, green and blue colors in about the same proportion. Web safe color of #BDAED7 is #CC99CC (or #C9C).
#BDAED7 color RGB value is (189,174,215).
RGB: (189,174,215) (74%,68%,84%)
R 189 of 255 = 74%
G 174 of 255 = 68%
B 215 of 255 = 84%
R + G + B ~ 75%. #BDAED7 is quite light color.
R + G + B =
189 + 174 + 215 = 578 (100%)
R 189 of 578 ~ 32.7%
G 174 of 578 ~ 30.1%
B 215 of 578 ~ 37.2%
#BDAED7 color CMYK value is (12,19,0,16).
CMYK: (12,19,0,16) C12M19Y0K16 (12%,19%,0%,16%) (0.12/0.19/0.00/0.16)
BD | AE | D7 | |
---|---|---|---|
RGB | 189 | 174 | 215 |
HSL | 262° | 33.88% | 76.27% |
HSB/HSV | 262° | 19.07% | 84.31% |
CMYK | 12.09% | 19.07% | 0.00% |
15.69% |
HEX | BD | AE | D7 |
Decimal | 189 | 174 | 215 |
Binary | 10111101 | 10101110 | 11010111 |
Octal | 275 | 256 | 327 |
Examples of css and html codes for elements with #BDAED7 color. Also use rgb(189,174,215) instead hex code.
.myTextColor { color: #BDAED7; }
<p style="color:#BDAED7">This sample text font color is #BDAED7.</p>
This text font color is #BDAED7.
.myBgColor { background-color: #BDAED7; }
<div style="background-color:#BDAED7">Inner text</div>
This div background color is #BDAED7.
.myBorderColor { border: 1px solid #BDAED7; }
<div style="border:3px solid #BDAED7">Div</div>
This div border color is #BDAED7.
.myOpacity80 { color: #BDAED7; opacity: 0.8; }
<p style="color:#BDAED7;opacity:0.8;">80%</p>
Text with #BDAED7 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BDAED7;}
<p style="text-shadow: 3px 3px 1px #BDAED7">Text here.</p>
This text has shadow with #BDAED7 color.
.textShadow {text-shadow: 3px 3px 1px #BDAED7, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BDAED7, 5px 5px 20px red">Text here.</p>
This text has shadow with #BDAED7 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BDAED7, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BDAED7, Direction=45, Strength=4)">Text</p>
This text has shadow with #BDAED7 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BDAED7; -webkit-box-shadow: 1px 1px 3px 2px #BDAED7; box-shadow: 1px 1px 3px 2px #BDAED7; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BDAED7; -webkit-box-shadow: 1px 1px 3px 2px #BDAED7; box-shadow:1px 1px 3px 2px #BDAED7;">
Div content here</div>
This text has color #BDAED7 on black background.
This text has color #BDAED7 on white background.
This text has black color on #BDAED7 background.
This text has white color on #BDAED7 background.