HEX: #DDCEDB
RGB: (221,206,219)
#DDCEDB contains red, green and blue colors in about the same proportion. Web safe color of #DDCEDB is #CCCCCC (or #CCC).
#DDCEDB color RGB value is (221,206,219).
RGB: (221,206,219) (87%,81%,86%)
R 221 of 255 = 87%
G 206 of 255 = 81%
B 219 of 255 = 86%
R + G + B ~ 85%. #DDCEDB is quite light color.
R + G + B =
221 + 206 + 219 = 646 (100%)
R 221 of 646 ~ 34.21%
G 206 of 646 ~ 31.89%
B 219 of 646 ~ 33.9%
#DDCEDB color CMYK value is (0,7,1,13).
CMYK: (0,7,1,13) C0M7Y1K13 (0%,7%,1%,13%) (0.00/0.07/0.01/0.13)
DD | CE | DB | |
---|---|---|---|
RGB | 221 | 206 | 219 |
HSL | 308° | 18.07% | 83.73% |
HSB/HSV | 308° | 6.79% | 86.67% |
CMYK | 0.00% | 6.79% | 0.90% |
13.33% |
HEX | DD | CE | DB |
Decimal | 221 | 206 | 219 |
Binary | 11011101 | 11001110 | 11011011 |
Octal | 335 | 316 | 333 |
Examples of css and html codes for elements with #DDCEDB color. Also use rgb(221,206,219) instead hex code.
.myTextColor { color: #DDCEDB; }
<p style="color:#DDCEDB">This sample text font color is #DDCEDB.</p>
This text font color is #DDCEDB.
.myBgColor { background-color: #DDCEDB; }
<div style="background-color:#DDCEDB">Inner text</div>
This div background color is #DDCEDB.
.myBorderColor { border: 1px solid #DDCEDB; }
<div style="border:3px solid #DDCEDB">Div</div>
This div border color is #DDCEDB.
.myOpacity80 { color: #DDCEDB; opacity: 0.8; }
<p style="color:#DDCEDB;opacity:0.8;">80%</p>
Text with #DDCEDB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #DDCEDB;}
<p style="text-shadow: 3px 3px 1px #DDCEDB">Text here.</p>
This text has shadow with #DDCEDB color.
.textShadow {text-shadow: 3px 3px 1px #DDCEDB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #DDCEDB, 5px 5px 20px red">Text here.</p>
This text has shadow with #DDCEDB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#DDCEDB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#DDCEDB, Direction=45, Strength=4)">Text</p>
This text has shadow with #DDCEDB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #DDCEDB; -webkit-box-shadow: 1px 1px 3px 2px #DDCEDB; box-shadow: 1px 1px 3px 2px #DDCEDB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #DDCEDB; -webkit-box-shadow: 1px 1px 3px 2px #DDCEDB; box-shadow:1px 1px 3px 2px #DDCEDB;">
Div content here</div>
This text has color #DDCEDB on black background.
This text has color #DDCEDB on white background.
This text has black color on #DDCEDB background.
This text has white color on #DDCEDB background.