HEX: #D5BDDF
RGB: (213,189,223)
#D5BDDF contains red, green and blue colors in about the same proportion. Web safe color of #D5BDDF is #CCCCCC (or #CCC).
#D5BDDF color RGB value is (213,189,223).
RGB: (213,189,223) (84%,74%,87%)
R 213 of 255 = 84%
G 189 of 255 = 74%
B 223 of 255 = 87%
R + G + B ~ 82%. #D5BDDF is quite light color.
R + G + B =
213 + 189 + 223 = 625 (100%)
R 213 of 625 ~ 34.08%
G 189 of 625 ~ 30.24%
B 223 of 625 ~ 35.68%
#D5BDDF 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 | BD | DF | |
---|---|---|---|
RGB | 213 | 189 | 223 |
HSL | 282° | 34.69% | 80.78% |
HSB/HSV | 282° | 15.25% | 87.45% |
CMYK | 4.48% | 15.25% | 0.00% |
12.55% |
HEX | D5 | BD | DF |
Decimal | 213 | 189 | 223 |
Binary | 11010101 | 10111101 | 11011111 |
Octal | 325 | 275 | 337 |
Examples of css and html codes for elements with #D5BDDF color. Also use rgb(213,189,223) instead hex code.
.myTextColor { color: #D5BDDF; }
<p style="color:#D5BDDF">This sample text font color is #D5BDDF.</p>
This text font color is #D5BDDF.
.myBgColor { background-color: #D5BDDF; }
<div style="background-color:#D5BDDF">Inner text</div>
This div background color is #D5BDDF.
.myBorderColor { border: 1px solid #D5BDDF; }
<div style="border:3px solid #D5BDDF">Div</div>
This div border color is #D5BDDF.
.myOpacity80 { color: #D5BDDF; opacity: 0.8; }
<p style="color:#D5BDDF;opacity:0.8;">80%</p>
Text with #D5BDDF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D5BDDF;}
<p style="text-shadow: 3px 3px 1px #D5BDDF">Text here.</p>
This text has shadow with #D5BDDF color.
.textShadow {text-shadow: 3px 3px 1px #D5BDDF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D5BDDF, 5px 5px 20px red">Text here.</p>
This text has shadow with #D5BDDF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D5BDDF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D5BDDF, Direction=45, Strength=4)">Text</p>
This text has shadow with #D5BDDF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D5BDDF; -webkit-box-shadow: 1px 1px 3px 2px #D5BDDF; box-shadow: 1px 1px 3px 2px #D5BDDF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D5BDDF; -webkit-box-shadow: 1px 1px 3px 2px #D5BDDF; box-shadow:1px 1px 3px 2px #D5BDDF;">
Div content here</div>
This text has color #D5BDDF on black background.
This text has color #D5BDDF on white background.
This text has black color on #D5BDDF background.
This text has white color on #D5BDDF background.