HEX: #DDEDED
RGB: (221,237,237)
#DDEDED contains red, green and blue colors in about the same proportion. Web safe color of #DDEDED is #CCFFFF (or #CFF).
#DDEDED color RGB value is (221,237,237).
RGB: (221,237,237) (87%,93%,93%)
R 221 of 255 = 87%
G 237 of 255 = 93%
B 237 of 255 = 93%
R + G + B ~ 91%. #DDEDED is light color.
R + G + B =
221 + 237 + 237 = 695 (100%)
R 221 of 695 ~ 31.8%
G 237 of 695 ~ 34.1%
B 237 of 695 ~ 34.1%
#DDEDED color CMYK value is (7,0,0,7).
CMYK: (7,0,0,7) C7M0Y0K7 (7%,0%,0%,7%) (0.07/0.00/0.00/0.07)
DD | ED | ED | |
---|---|---|---|
RGB | 221 | 237 | 237 |
HSL | 180° | 30.77% | 89.80% |
HSB/HSV | 180° | 6.75% | 92.94% |
CMYK | 6.75% | 0.00% | 0.00% |
7.06% |
HEX | DD | ED | ED |
Decimal | 221 | 237 | 237 |
Binary | 11011101 | 11101101 | 11101101 |
Octal | 335 | 355 | 355 |
Examples of css and html codes for elements with #DDEDED color. Also use rgb(221,237,237) instead hex code.
.myTextColor { color: #DDEDED; }
<p style="color:#DDEDED">This sample text font color is #DDEDED.</p>
This text font color is #DDEDED.
.myBgColor { background-color: #DDEDED; }
<div style="background-color:#DDEDED">Inner text</div>
This div background color is #DDEDED.
.myBorderColor { border: 1px solid #DDEDED; }
<div style="border:3px solid #DDEDED">Div</div>
This div border color is #DDEDED.
.myOpacity80 { color: #DDEDED; opacity: 0.8; }
<p style="color:#DDEDED;opacity:0.8;">80%</p>
Text with #DDEDED color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #DDEDED;}
<p style="text-shadow: 3px 3px 1px #DDEDED">Text here.</p>
This text has shadow with #DDEDED color.
.textShadow {text-shadow: 3px 3px 1px #DDEDED, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #DDEDED, 5px 5px 20px red">Text here.</p>
This text has shadow with #DDEDED primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#DDEDED, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#DDEDED, Direction=45, Strength=4)">Text</p>
This text has shadow with #DDEDED and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #DDEDED; -webkit-box-shadow: 1px 1px 3px 2px #DDEDED; box-shadow: 1px 1px 3px 2px #DDEDED; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #DDEDED; -webkit-box-shadow: 1px 1px 3px 2px #DDEDED; box-shadow:1px 1px 3px 2px #DDEDED;">
Div content here</div>
This text has color #DDEDED on black background.
This text has color #DDEDED on white background.
This text has black color on #DDEDED background.
This text has white color on #DDEDED background.