HEX: #DFEDFB
RGB: (223,237,251)
#DFEDFB contains red, green and blue colors in about the same proportion. Web safe color of #DFEDFB is #CCFFFF (or #CFF).
#DFEDFB color RGB value is (223,237,251).
RGB: (223,237,251) (87%,93%,98%)
R 223 of 255 = 87%
G 237 of 255 = 93%
B 251 of 255 = 98%
R + G + B ~ 93%. #DFEDFB is light color.
R + G + B =
223 + 237 + 251 = 711 (100%)
R 223 of 711 ~ 31.36%
G 237 of 711 ~ 33.33%
B 251 of 711 ~ 35.3%
#DFEDFB color CMYK value is (11,6,0,2).
CMYK: (11,6,0,2) C11M6Y0K2 (11%,6%,0%,2%) (0.11/0.06/0.00/0.02)
DF | ED | FB | |
---|---|---|---|
RGB | 223 | 237 | 251 |
HSL | 210° | 77.78% | 92.94% |
HSB/HSV | 210° | 11.16% | 98.43% |
CMYK | 11.16% | 5.58% | 0.00% |
1.57% |
HEX | DF | ED | FB |
Decimal | 223 | 237 | 251 |
Binary | 11011111 | 11101101 | 11111011 |
Octal | 337 | 355 | 373 |
Examples of css and html codes for elements with #DFEDFB color. Also use rgb(223,237,251) instead hex code.
.myTextColor { color: #DFEDFB; }
<p style="color:#DFEDFB">This sample text font color is #DFEDFB.</p>
This text font color is #DFEDFB.
.myBgColor { background-color: #DFEDFB; }
<div style="background-color:#DFEDFB">Inner text</div>
This div background color is #DFEDFB.
.myBorderColor { border: 1px solid #DFEDFB; }
<div style="border:3px solid #DFEDFB">Div</div>
This div border color is #DFEDFB.
.myOpacity80 { color: #DFEDFB; opacity: 0.8; }
<p style="color:#DFEDFB;opacity:0.8;">80%</p>
Text with #DFEDFB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #DFEDFB;}
<p style="text-shadow: 3px 3px 1px #DFEDFB">Text here.</p>
This text has shadow with #DFEDFB color.
.textShadow {text-shadow: 3px 3px 1px #DFEDFB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #DFEDFB, 5px 5px 20px red">Text here.</p>
This text has shadow with #DFEDFB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#DFEDFB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#DFEDFB, Direction=45, Strength=4)">Text</p>
This text has shadow with #DFEDFB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #DFEDFB; -webkit-box-shadow: 1px 1px 3px 2px #DFEDFB; box-shadow: 1px 1px 3px 2px #DFEDFB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #DFEDFB; -webkit-box-shadow: 1px 1px 3px 2px #DFEDFB; box-shadow:1px 1px 3px 2px #DFEDFB;">
Div content here</div>
This text has color #DFEDFB on black background.
This text has color #DFEDFB on white background.
This text has black color on #DFEDFB background.
This text has white color on #DFEDFB background.