HEX: #DBE7EE
RGB: (219,231,238)
#DBE7EE contains red, green and blue colors in about the same proportion. Web safe color of #DBE7EE is #CCFFFF (or #CFF).
#DBE7EE color RGB value is (219,231,238).
RGB: (219,231,238) (86%,91%,93%)
R 219 of 255 = 86%
G 231 of 255 = 91%
B 238 of 255 = 93%
R + G + B ~ 90%. #DBE7EE is light color.
R + G + B =
219 + 231 + 238 = 688 (100%)
R 219 of 688 ~ 31.83%
G 231 of 688 ~ 33.58%
B 238 of 688 ~ 34.59%
#DBE7EE color CMYK value is (8,3,0,7).
CMYK: (8,3,0,7) C8M3Y0K7 (8%,3%,0%,7%) (0.08/0.03/0.00/0.07)
DB | E7 | EE | |
---|---|---|---|
RGB | 219 | 231 | 238 |
HSL | 202° | 35.85% | 89.61% |
HSB/HSV | 202° | 7.98% | 93.33% |
CMYK | 7.98% | 2.94% | 0.00% |
6.67% |
HEX | DB | E7 | EE |
Decimal | 219 | 231 | 238 |
Binary | 11011011 | 11100111 | 11101110 |
Octal | 333 | 347 | 356 |
Examples of css and html codes for elements with #DBE7EE color. Also use rgb(219,231,238) instead hex code.
.myTextColor { color: #DBE7EE; }
<p style="color:#DBE7EE">This sample text font color is #DBE7EE.</p>
This text font color is #DBE7EE.
.myBgColor { background-color: #DBE7EE; }
<div style="background-color:#DBE7EE">Inner text</div>
This div background color is #DBE7EE.
.myBorderColor { border: 1px solid #DBE7EE; }
<div style="border:3px solid #DBE7EE">Div</div>
This div border color is #DBE7EE.
.myOpacity80 { color: #DBE7EE; opacity: 0.8; }
<p style="color:#DBE7EE;opacity:0.8;">80%</p>
Text with #DBE7EE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #DBE7EE;}
<p style="text-shadow: 3px 3px 1px #DBE7EE">Text here.</p>
This text has shadow with #DBE7EE color.
.textShadow {text-shadow: 3px 3px 1px #DBE7EE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #DBE7EE, 5px 5px 20px red">Text here.</p>
This text has shadow with #DBE7EE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#DBE7EE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#DBE7EE, Direction=45, Strength=4)">Text</p>
This text has shadow with #DBE7EE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #DBE7EE; -webkit-box-shadow: 1px 1px 3px 2px #DBE7EE; box-shadow: 1px 1px 3px 2px #DBE7EE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #DBE7EE; -webkit-box-shadow: 1px 1px 3px 2px #DBE7EE; box-shadow:1px 1px 3px 2px #DBE7EE;">
Div content here</div>
This text has color #DBE7EE on black background.
This text has color #DBE7EE on white background.
This text has black color on #DBE7EE background.
This text has white color on #DBE7EE background.