HEX: #DDEFEB
RGB: (221,239,235)
#DDEFEB contains red, green and blue colors in about the same proportion. Web safe color of #DDEFEB is #CCFFFF (or #CFF).
#DDEFEB color RGB value is (221,239,235).
RGB: (221,239,235) (87%,94%,92%)
R 221 of 255 = 87%
G 239 of 255 = 94%
B 235 of 255 = 92%
R + G + B ~ 91%. #DDEFEB is light color.
R + G + B =
221 + 239 + 235 = 695 (100%)
R 221 of 695 ~ 31.8%
G 239 of 695 ~ 34.39%
B 235 of 695 ~ 33.81%
#DDEFEB color CMYK value is (8,0,2,6).
CMYK: (8,0,2,6) C8M0Y2K6 (8%,0%,2%,6%) (0.08/0.00/0.02/0.06)
DD | EF | EB | |
---|---|---|---|
RGB | 221 | 239 | 235 |
HSL | 167° | 36.00% | 90.20% |
HSB/HSV | 167° | 7.53% | 93.73% |
CMYK | 7.53% | 0.00% | 1.67% |
6.27% |
HEX | DD | EF | EB |
Decimal | 221 | 239 | 235 |
Binary | 11011101 | 11101111 | 11101011 |
Octal | 335 | 357 | 353 |
Examples of css and html codes for elements with #DDEFEB color. Also use rgb(221,239,235) instead hex code.
.myTextColor { color: #DDEFEB; }
<p style="color:#DDEFEB">This sample text font color is #DDEFEB.</p>
This text font color is #DDEFEB.
.myBgColor { background-color: #DDEFEB; }
<div style="background-color:#DDEFEB">Inner text</div>
This div background color is #DDEFEB.
.myBorderColor { border: 1px solid #DDEFEB; }
<div style="border:3px solid #DDEFEB">Div</div>
This div border color is #DDEFEB.
.myOpacity80 { color: #DDEFEB; opacity: 0.8; }
<p style="color:#DDEFEB;opacity:0.8;">80%</p>
Text with #DDEFEB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #DDEFEB;}
<p style="text-shadow: 3px 3px 1px #DDEFEB">Text here.</p>
This text has shadow with #DDEFEB color.
.textShadow {text-shadow: 3px 3px 1px #DDEFEB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #DDEFEB, 5px 5px 20px red">Text here.</p>
This text has shadow with #DDEFEB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#DDEFEB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#DDEFEB, Direction=45, Strength=4)">Text</p>
This text has shadow with #DDEFEB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #DDEFEB; -webkit-box-shadow: 1px 1px 3px 2px #DDEFEB; box-shadow: 1px 1px 3px 2px #DDEFEB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #DDEFEB; -webkit-box-shadow: 1px 1px 3px 2px #DDEFEB; box-shadow:1px 1px 3px 2px #DDEFEB;">
Div content here</div>
This text has color #DDEFEB on black background.
This text has color #DDEFEB on white background.
This text has black color on #DDEFEB background.
This text has white color on #DDEFEB background.