HEX: #DDB2DB
RGB: (221,178,219)
#DDB2DB contains red, green and blue colors in about the same proportion. Web safe color of #DDB2DB is #CC99CC (or #C9C).
#DDB2DB color RGB value is (221,178,219).
RGB: (221,178,219) (87%,70%,86%)
R 221 of 255 = 87%
G 178 of 255 = 70%
B 219 of 255 = 86%
R + G + B ~ 81%. #DDB2DB is quite light color.
R + G + B =
221 + 178 + 219 = 618 (100%)
R 221 of 618 ~ 35.76%
G 178 of 618 ~ 28.8%
B 219 of 618 ~ 35.44%
#DDB2DB color CMYK value is (0,19,1,13).
CMYK: (0,19,1,13) C0M19Y1K13 (0%,19%,1%,13%) (0.00/0.19/0.01/0.13)
DD | B2 | DB | |
---|---|---|---|
RGB | 221 | 178 | 219 |
HSL | 303° | 38.74% | 78.24% |
HSB/HSV | 303° | 19.46% | 86.67% |
CMYK | 0.00% | 19.46% | 0.90% |
13.33% |
HEX | DD | B2 | DB |
Decimal | 221 | 178 | 219 |
Binary | 11011101 | 10110010 | 11011011 |
Octal | 335 | 262 | 333 |
Examples of css and html codes for elements with #DDB2DB color. Also use rgb(221,178,219) instead hex code.
.myTextColor { color: #DDB2DB; }
<p style="color:#DDB2DB">This sample text font color is #DDB2DB.</p>
This text font color is #DDB2DB.
.myBgColor { background-color: #DDB2DB; }
<div style="background-color:#DDB2DB">Inner text</div>
This div background color is #DDB2DB.
.myBorderColor { border: 1px solid #DDB2DB; }
<div style="border:3px solid #DDB2DB">Div</div>
This div border color is #DDB2DB.
.myOpacity80 { color: #DDB2DB; opacity: 0.8; }
<p style="color:#DDB2DB;opacity:0.8;">80%</p>
Text with #DDB2DB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #DDB2DB;}
<p style="text-shadow: 3px 3px 1px #DDB2DB">Text here.</p>
This text has shadow with #DDB2DB color.
.textShadow {text-shadow: 3px 3px 1px #DDB2DB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #DDB2DB, 5px 5px 20px red">Text here.</p>
This text has shadow with #DDB2DB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#DDB2DB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#DDB2DB, Direction=45, Strength=4)">Text</p>
This text has shadow with #DDB2DB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #DDB2DB; -webkit-box-shadow: 1px 1px 3px 2px #DDB2DB; box-shadow: 1px 1px 3px 2px #DDB2DB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #DDB2DB; -webkit-box-shadow: 1px 1px 3px 2px #DDB2DB; box-shadow:1px 1px 3px 2px #DDB2DB;">
Div content here</div>
This text has color #DDB2DB on black background.
This text has color #DDB2DB on white background.
This text has black color on #DDB2DB background.
This text has white color on #DDB2DB background.