HEX: #DDB4DE
RGB: (221,180,222)
#DDB4DE contains red, green and blue colors in about the same proportion. Web safe color of #DDB4DE is #CCCCCC (or #CCC).
#DDB4DE color RGB value is (221,180,222).
RGB: (221,180,222) (87%,71%,87%)
R 221 of 255 = 87%
G 180 of 255 = 71%
B 222 of 255 = 87%
R + G + B ~ 82%. #DDB4DE is quite light color.
R + G + B =
221 + 180 + 222 = 623 (100%)
R 221 of 623 ~ 35.47%
G 180 of 623 ~ 28.89%
B 222 of 623 ~ 35.63%
#DDB4DE color CMYK value is (0,19,0,13).
CMYK: (0,19,0,13) C0M19Y0K13 (0%,19%,0%,13%) (0.00/0.19/0.00/0.13)
DD | B4 | DE | |
---|---|---|---|
RGB | 221 | 180 | 222 |
HSL | 299° | 38.89% | 78.82% |
HSB/HSV | 299° | 18.92% | 87.06% |
CMYK | 0.45% | 18.92% | 0.00% |
12.94% |
HEX | DD | B4 | DE |
Decimal | 221 | 180 | 222 |
Binary | 11011101 | 10110100 | 11011110 |
Octal | 335 | 264 | 336 |
Examples of css and html codes for elements with #DDB4DE color. Also use rgb(221,180,222) instead hex code.
.myTextColor { color: #DDB4DE; }
<p style="color:#DDB4DE">This sample text font color is #DDB4DE.</p>
This text font color is #DDB4DE.
.myBgColor { background-color: #DDB4DE; }
<div style="background-color:#DDB4DE">Inner text</div>
This div background color is #DDB4DE.
.myBorderColor { border: 1px solid #DDB4DE; }
<div style="border:3px solid #DDB4DE">Div</div>
This div border color is #DDB4DE.
.myOpacity80 { color: #DDB4DE; opacity: 0.8; }
<p style="color:#DDB4DE;opacity:0.8;">80%</p>
Text with #DDB4DE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #DDB4DE;}
<p style="text-shadow: 3px 3px 1px #DDB4DE">Text here.</p>
This text has shadow with #DDB4DE color.
.textShadow {text-shadow: 3px 3px 1px #DDB4DE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #DDB4DE, 5px 5px 20px red">Text here.</p>
This text has shadow with #DDB4DE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#DDB4DE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#DDB4DE, Direction=45, Strength=4)">Text</p>
This text has shadow with #DDB4DE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #DDB4DE; -webkit-box-shadow: 1px 1px 3px 2px #DDB4DE; box-shadow: 1px 1px 3px 2px #DDB4DE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #DDB4DE; -webkit-box-shadow: 1px 1px 3px 2px #DDB4DE; box-shadow:1px 1px 3px 2px #DDB4DE;">
Div content here</div>
This text has color #DDB4DE on black background.
This text has color #DDB4DE on white background.
This text has black color on #DDB4DE background.
This text has white color on #DDB4DE background.