HEX: #BDAEDF
RGB: (189,174,223)
#BDAEDF contains red, green and blue colors in about the same proportion. Web safe color of #BDAEDF is #CC99CC (or #C9C).
#BDAEDF color RGB value is (189,174,223).
RGB: (189,174,223) (74%,68%,87%)
R 189 of 255 = 74%
G 174 of 255 = 68%
B 223 of 255 = 87%
R + G + B ~ 76%. #BDAEDF is quite light color.
R + G + B =
189 + 174 + 223 = 586 (100%)
R 189 of 586 ~ 32.25%
G 174 of 586 ~ 29.69%
B 223 of 586 ~ 38.05%
#BDAEDF color CMYK value is (15,22,0,13).
CMYK: (15,22,0,13) C15M22Y0K13 (15%,22%,0%,13%) (0.15/0.22/0.00/0.13)
BD | AE | DF | |
---|---|---|---|
RGB | 189 | 174 | 223 |
HSL | 258° | 43.36% | 77.84% |
HSB/HSV | 258° | 21.97% | 87.45% |
CMYK | 15.25% | 21.97% | 0.00% |
12.55% |
HEX | BD | AE | DF |
Decimal | 189 | 174 | 223 |
Binary | 10111101 | 10101110 | 11011111 |
Octal | 275 | 256 | 337 |
Examples of css and html codes for elements with #BDAEDF color. Also use rgb(189,174,223) instead hex code.
.myTextColor { color: #BDAEDF; }
<p style="color:#BDAEDF">This sample text font color is #BDAEDF.</p>
This text font color is #BDAEDF.
.myBgColor { background-color: #BDAEDF; }
<div style="background-color:#BDAEDF">Inner text</div>
This div background color is #BDAEDF.
.myBorderColor { border: 1px solid #BDAEDF; }
<div style="border:3px solid #BDAEDF">Div</div>
This div border color is #BDAEDF.
.myOpacity80 { color: #BDAEDF; opacity: 0.8; }
<p style="color:#BDAEDF;opacity:0.8;">80%</p>
Text with #BDAEDF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BDAEDF;}
<p style="text-shadow: 3px 3px 1px #BDAEDF">Text here.</p>
This text has shadow with #BDAEDF color.
.textShadow {text-shadow: 3px 3px 1px #BDAEDF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BDAEDF, 5px 5px 20px red">Text here.</p>
This text has shadow with #BDAEDF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BDAEDF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BDAEDF, Direction=45, Strength=4)">Text</p>
This text has shadow with #BDAEDF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BDAEDF; -webkit-box-shadow: 1px 1px 3px 2px #BDAEDF; box-shadow: 1px 1px 3px 2px #BDAEDF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BDAEDF; -webkit-box-shadow: 1px 1px 3px 2px #BDAEDF; box-shadow:1px 1px 3px 2px #BDAEDF;">
Div content here</div>
This text has color #BDAEDF on black background.
This text has color #BDAEDF on white background.
This text has black color on #BDAEDF background.
This text has white color on #BDAEDF background.