HEX: #BDB9DA
RGB: (189,185,218)
#BDB9DA contains red, green and blue colors in about the same proportion. Web safe color of #BDB9DA is #CCCCCC (or #CCC).
#BDB9DA color RGB value is (189,185,218).
RGB: (189,185,218) (74%,73%,85%)
R 189 of 255 = 74%
G 185 of 255 = 73%
B 218 of 255 = 85%
R + G + B ~ 77%. #BDB9DA is quite light color.
R + G + B =
189 + 185 + 218 = 592 (100%)
R 189 of 592 ~ 31.93%
G 185 of 592 ~ 31.25%
B 218 of 592 ~ 36.82%
#BDB9DA color CMYK value is (13,15,0,15).
CMYK: (13,15,0,15) C13M15Y0K15 (13%,15%,0%,15%) (0.13/0.15/0.00/0.15)
BD | B9 | DA | |
---|---|---|---|
RGB | 189 | 185 | 218 |
HSL | 247° | 30.84% | 79.02% |
HSB/HSV | 247° | 15.14% | 85.49% |
CMYK | 13.30% | 15.14% | 0.00% |
14.51% |
HEX | BD | B9 | DA |
Decimal | 189 | 185 | 218 |
Binary | 10111101 | 10111001 | 11011010 |
Octal | 275 | 271 | 332 |
Examples of css and html codes for elements with #BDB9DA color. Also use rgb(189,185,218) instead hex code.
.myTextColor { color: #BDB9DA; }
<p style="color:#BDB9DA">This sample text font color is #BDB9DA.</p>
This text font color is #BDB9DA.
.myBgColor { background-color: #BDB9DA; }
<div style="background-color:#BDB9DA">Inner text</div>
This div background color is #BDB9DA.
.myBorderColor { border: 1px solid #BDB9DA; }
<div style="border:3px solid #BDB9DA">Div</div>
This div border color is #BDB9DA.
.myOpacity80 { color: #BDB9DA; opacity: 0.8; }
<p style="color:#BDB9DA;opacity:0.8;">80%</p>
Text with #BDB9DA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BDB9DA;}
<p style="text-shadow: 3px 3px 1px #BDB9DA">Text here.</p>
This text has shadow with #BDB9DA color.
.textShadow {text-shadow: 3px 3px 1px #BDB9DA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BDB9DA, 5px 5px 20px red">Text here.</p>
This text has shadow with #BDB9DA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BDB9DA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BDB9DA, Direction=45, Strength=4)">Text</p>
This text has shadow with #BDB9DA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BDB9DA; -webkit-box-shadow: 1px 1px 3px 2px #BDB9DA; box-shadow: 1px 1px 3px 2px #BDB9DA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BDB9DA; -webkit-box-shadow: 1px 1px 3px 2px #BDB9DA; box-shadow:1px 1px 3px 2px #BDB9DA;">
Div content here</div>
This text has color #BDB9DA on black background.
This text has color #BDB9DA on white background.
This text has black color on #BDB9DA background.
This text has white color on #BDB9DA background.