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