HEX: #DDEDF1
RGB: (221,237,241)
#DDEDF1 contains red, green and blue colors in about the same proportion. Web safe color of #DDEDF1 is #CCFFFF (or #CFF).
#DDEDF1 color RGB value is (221,237,241).
RGB: (221,237,241) (87%,93%,95%)
R 221 of 255 = 87%
G 237 of 255 = 93%
B 241 of 255 = 95%
R + G + B ~ 92%. #DDEDF1 is light color.
R + G + B =
221 + 237 + 241 = 699 (100%)
R 221 of 699 ~ 31.62%
G 237 of 699 ~ 33.91%
B 241 of 699 ~ 34.48%
#DDEDF1 color CMYK value is (8,2,0,5).
CMYK: (8,2,0,5) C8M2Y0K5 (8%,2%,0%,5%) (0.08/0.02/0.00/0.05)
DD | ED | F1 | |
---|---|---|---|
RGB | 221 | 237 | 241 |
HSL | 192° | 41.67% | 90.59% |
HSB/HSV | 192° | 8.30% | 94.51% |
CMYK | 8.30% | 1.66% | 0.00% |
5.49% |
HEX | DD | ED | F1 |
Decimal | 221 | 237 | 241 |
Binary | 11011101 | 11101101 | 11110001 |
Octal | 335 | 355 | 361 |
Examples of css and html codes for elements with #DDEDF1 color. Also use rgb(221,237,241) instead hex code.
.myTextColor { color: #DDEDF1; }
<p style="color:#DDEDF1">This sample text font color is #DDEDF1.</p>
This text font color is #DDEDF1.
.myBgColor { background-color: #DDEDF1; }
<div style="background-color:#DDEDF1">Inner text</div>
This div background color is #DDEDF1.
.myBorderColor { border: 1px solid #DDEDF1; }
<div style="border:3px solid #DDEDF1">Div</div>
This div border color is #DDEDF1.
.myOpacity80 { color: #DDEDF1; opacity: 0.8; }
<p style="color:#DDEDF1;opacity:0.8;">80%</p>
Text with #DDEDF1 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #DDEDF1;}
<p style="text-shadow: 3px 3px 1px #DDEDF1">Text here.</p>
This text has shadow with #DDEDF1 color.
.textShadow {text-shadow: 3px 3px 1px #DDEDF1, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #DDEDF1, 5px 5px 20px red">Text here.</p>
This text has shadow with #DDEDF1 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#DDEDF1, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#DDEDF1, Direction=45, Strength=4)">Text</p>
This text has shadow with #DDEDF1 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #DDEDF1; -webkit-box-shadow: 1px 1px 3px 2px #DDEDF1; box-shadow: 1px 1px 3px 2px #DDEDF1; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #DDEDF1; -webkit-box-shadow: 1px 1px 3px 2px #DDEDF1; box-shadow:1px 1px 3px 2px #DDEDF1;">
Div content here</div>
This text has color #DDEDF1 on black background.
This text has color #DDEDF1 on white background.
This text has black color on #DDEDF1 background.
This text has white color on #DDEDF1 background.