HEX: #DDCEF1
RGB: (221,206,241)
#DDCEF1 contains red, green and blue colors in about the same proportion. Web safe color of #DDCEF1 is #CCCCFF (or #CCF).
#DDCEF1 color RGB value is (221,206,241).
RGB: (221,206,241) (87%,81%,95%)
R 221 of 255 = 87%
G 206 of 255 = 81%
B 241 of 255 = 95%
R + G + B ~ 88%. #DDCEF1 is light color.
R + G + B =
221 + 206 + 241 = 668 (100%)
R 221 of 668 ~ 33.08%
G 206 of 668 ~ 30.84%
B 241 of 668 ~ 36.08%
#DDCEF1 color CMYK value is (8,15,0,5).
CMYK: (8,15,0,5) C8M15Y0K5 (8%,15%,0%,5%) (0.08/0.15/0.00/0.05)
DD | CE | F1 | |
---|---|---|---|
RGB | 221 | 206 | 241 |
HSL | 266° | 55.56% | 87.65% |
HSB/HSV | 266° | 14.52% | 94.51% |
CMYK | 8.30% | 14.52% | 0.00% |
5.49% |
HEX | DD | CE | F1 |
Decimal | 221 | 206 | 241 |
Binary | 11011101 | 11001110 | 11110001 |
Octal | 335 | 316 | 361 |
Examples of css and html codes for elements with #DDCEF1 color. Also use rgb(221,206,241) instead hex code.
.myTextColor { color: #DDCEF1; }
<p style="color:#DDCEF1">This sample text font color is #DDCEF1.</p>
This text font color is #DDCEF1.
.myBgColor { background-color: #DDCEF1; }
<div style="background-color:#DDCEF1">Inner text</div>
This div background color is #DDCEF1.
.myBorderColor { border: 1px solid #DDCEF1; }
<div style="border:3px solid #DDCEF1">Div</div>
This div border color is #DDCEF1.
.myOpacity80 { color: #DDCEF1; opacity: 0.8; }
<p style="color:#DDCEF1;opacity:0.8;">80%</p>
Text with #DDCEF1 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #DDCEF1;}
<p style="text-shadow: 3px 3px 1px #DDCEF1">Text here.</p>
This text has shadow with #DDCEF1 color.
.textShadow {text-shadow: 3px 3px 1px #DDCEF1, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #DDCEF1, 5px 5px 20px red">Text here.</p>
This text has shadow with #DDCEF1 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#DDCEF1, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#DDCEF1, Direction=45, Strength=4)">Text</p>
This text has shadow with #DDCEF1 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #DDCEF1; -webkit-box-shadow: 1px 1px 3px 2px #DDCEF1; box-shadow: 1px 1px 3px 2px #DDCEF1; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #DDCEF1; -webkit-box-shadow: 1px 1px 3px 2px #DDCEF1; box-shadow:1px 1px 3px 2px #DDCEF1;">
Div content here</div>
This text has color #DDCEF1 on black background.
This text has color #DDCEF1 on white background.
This text has black color on #DDCEF1 background.
This text has white color on #DDCEF1 background.