HEX: #D5BCDE
RGB: (213,188,222)
#D5BCDE contains red, green and blue colors in about the same proportion. Web safe color of #D5BCDE is #CCCCCC (or #CCC).
#D5BCDE color RGB value is (213,188,222).
RGB: (213,188,222) (84%,74%,87%)
R 213 of 255 = 84%
G 188 of 255 = 74%
B 222 of 255 = 87%
R + G + B ~ 82%. #D5BCDE is quite light color.
R + G + B =
213 + 188 + 222 = 623 (100%)
R 213 of 623 ~ 34.19%
G 188 of 623 ~ 30.18%
B 222 of 623 ~ 35.63%
#D5BCDE color CMYK value is (4,15,0,13).
CMYK: (4,15,0,13) C4M15Y0K13 (4%,15%,0%,13%) (0.04/0.15/0.00/0.13)
D5 | BC | DE | |
---|---|---|---|
RGB | 213 | 188 | 222 |
HSL | 284° | 34.00% | 80.39% |
HSB/HSV | 284° | 15.32% | 87.06% |
CMYK | 4.05% | 15.32% | 0.00% |
12.94% |
HEX | D5 | BC | DE |
Decimal | 213 | 188 | 222 |
Binary | 11010101 | 10111100 | 11011110 |
Octal | 325 | 274 | 336 |
Examples of css and html codes for elements with #D5BCDE color. Also use rgb(213,188,222) instead hex code.
.myTextColor { color: #D5BCDE; }
<p style="color:#D5BCDE">This sample text font color is #D5BCDE.</p>
This text font color is #D5BCDE.
.myBgColor { background-color: #D5BCDE; }
<div style="background-color:#D5BCDE">Inner text</div>
This div background color is #D5BCDE.
.myBorderColor { border: 1px solid #D5BCDE; }
<div style="border:3px solid #D5BCDE">Div</div>
This div border color is #D5BCDE.
.myOpacity80 { color: #D5BCDE; opacity: 0.8; }
<p style="color:#D5BCDE;opacity:0.8;">80%</p>
Text with #D5BCDE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D5BCDE;}
<p style="text-shadow: 3px 3px 1px #D5BCDE">Text here.</p>
This text has shadow with #D5BCDE color.
.textShadow {text-shadow: 3px 3px 1px #D5BCDE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D5BCDE, 5px 5px 20px red">Text here.</p>
This text has shadow with #D5BCDE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D5BCDE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D5BCDE, Direction=45, Strength=4)">Text</p>
This text has shadow with #D5BCDE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D5BCDE; -webkit-box-shadow: 1px 1px 3px 2px #D5BCDE; box-shadow: 1px 1px 3px 2px #D5BCDE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D5BCDE; -webkit-box-shadow: 1px 1px 3px 2px #D5BCDE; box-shadow:1px 1px 3px 2px #D5BCDE;">
Div content here</div>
This text has color #D5BCDE on black background.
This text has color #D5BCDE on white background.
This text has black color on #D5BCDE background.
This text has white color on #D5BCDE background.