HEX: #BDB8DC
RGB: (189,184,220)
#BDB8DC contains red, green and blue colors in about the same proportion. Web safe color of #BDB8DC is #CCCCCC (or #CCC).
#BDB8DC color RGB value is (189,184,220).
RGB: (189,184,220) (74%,72%,86%)
R 189 of 255 = 74%
G 184 of 255 = 72%
B 220 of 255 = 86%
R + G + B ~ 77%. #BDB8DC is quite light color.
R + G + B =
189 + 184 + 220 = 593 (100%)
R 189 of 593 ~ 31.87%
G 184 of 593 ~ 31.03%
B 220 of 593 ~ 37.1%
#BDB8DC color CMYK value is (14,16,0,14).
CMYK: (14,16,0,14) C14M16Y0K14 (14%,16%,0%,14%) (0.14/0.16/0.00/0.14)
BD | B8 | DC | |
---|---|---|---|
RGB | 189 | 184 | 220 |
HSL | 248° | 33.96% | 79.22% |
HSB/HSV | 248° | 16.36% | 86.27% |
CMYK | 14.09% | 16.36% | 0.00% |
13.73% |
HEX | BD | B8 | DC |
Decimal | 189 | 184 | 220 |
Binary | 10111101 | 10111000 | 11011100 |
Octal | 275 | 270 | 334 |
Examples of css and html codes for elements with #BDB8DC color. Also use rgb(189,184,220) instead hex code.
.myTextColor { color: #BDB8DC; }
<p style="color:#BDB8DC">This sample text font color is #BDB8DC.</p>
This text font color is #BDB8DC.
.myBgColor { background-color: #BDB8DC; }
<div style="background-color:#BDB8DC">Inner text</div>
This div background color is #BDB8DC.
.myBorderColor { border: 1px solid #BDB8DC; }
<div style="border:3px solid #BDB8DC">Div</div>
This div border color is #BDB8DC.
.myOpacity80 { color: #BDB8DC; opacity: 0.8; }
<p style="color:#BDB8DC;opacity:0.8;">80%</p>
Text with #BDB8DC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BDB8DC;}
<p style="text-shadow: 3px 3px 1px #BDB8DC">Text here.</p>
This text has shadow with #BDB8DC color.
.textShadow {text-shadow: 3px 3px 1px #BDB8DC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BDB8DC, 5px 5px 20px red">Text here.</p>
This text has shadow with #BDB8DC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BDB8DC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BDB8DC, Direction=45, Strength=4)">Text</p>
This text has shadow with #BDB8DC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BDB8DC; -webkit-box-shadow: 1px 1px 3px 2px #BDB8DC; box-shadow: 1px 1px 3px 2px #BDB8DC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BDB8DC; -webkit-box-shadow: 1px 1px 3px 2px #BDB8DC; box-shadow:1px 1px 3px 2px #BDB8DC;">
Div content here</div>
This text has color #BDB8DC on black background.
This text has color #BDB8DC on white background.
This text has black color on #BDB8DC background.
This text has white color on #BDB8DC background.