HEX: #DBE9EC
RGB: (219,233,236)
#DBE9EC contains red, green and blue colors in about the same proportion. Web safe color of #DBE9EC is #CCFFFF (or #CFF).
#DBE9EC color RGB value is (219,233,236).
RGB: (219,233,236) (86%,91%,93%)
R 219 of 255 = 86%
G 233 of 255 = 91%
B 236 of 255 = 93%
R + G + B ~ 90%. #DBE9EC is light color.
R + G + B =
219 + 233 + 236 = 688 (100%)
R 219 of 688 ~ 31.83%
G 233 of 688 ~ 33.87%
B 236 of 688 ~ 34.3%
#DBE9EC color CMYK value is (7,1,0,7).
CMYK: (7,1,0,7) C7M1Y0K7 (7%,1%,0%,7%) (0.07/0.01/0.00/0.07)
DB | E9 | EC | |
---|---|---|---|
RGB | 219 | 233 | 236 |
HSL | 191° | 30.91% | 89.22% |
HSB/HSV | 191° | 7.20% | 92.55% |
CMYK | 7.20% | 1.27% | 0.00% |
7.45% |
HEX | DB | E9 | EC |
Decimal | 219 | 233 | 236 |
Binary | 11011011 | 11101001 | 11101100 |
Octal | 333 | 351 | 354 |
Examples of css and html codes for elements with #DBE9EC color. Also use rgb(219,233,236) instead hex code.
.myTextColor { color: #DBE9EC; }
<p style="color:#DBE9EC">This sample text font color is #DBE9EC.</p>
This text font color is #DBE9EC.
.myBgColor { background-color: #DBE9EC; }
<div style="background-color:#DBE9EC">Inner text</div>
This div background color is #DBE9EC.
.myBorderColor { border: 1px solid #DBE9EC; }
<div style="border:3px solid #DBE9EC">Div</div>
This div border color is #DBE9EC.
.myOpacity80 { color: #DBE9EC; opacity: 0.8; }
<p style="color:#DBE9EC;opacity:0.8;">80%</p>
Text with #DBE9EC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #DBE9EC;}
<p style="text-shadow: 3px 3px 1px #DBE9EC">Text here.</p>
This text has shadow with #DBE9EC color.
.textShadow {text-shadow: 3px 3px 1px #DBE9EC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #DBE9EC, 5px 5px 20px red">Text here.</p>
This text has shadow with #DBE9EC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#DBE9EC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#DBE9EC, Direction=45, Strength=4)">Text</p>
This text has shadow with #DBE9EC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #DBE9EC; -webkit-box-shadow: 1px 1px 3px 2px #DBE9EC; box-shadow: 1px 1px 3px 2px #DBE9EC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #DBE9EC; -webkit-box-shadow: 1px 1px 3px 2px #DBE9EC; box-shadow:1px 1px 3px 2px #DBE9EC;">
Div content here</div>
This text has color #DBE9EC on black background.
This text has color #DBE9EC on white background.
This text has black color on #DBE9EC background.
This text has white color on #DBE9EC background.