HEX: #DBEED7
RGB: (219,238,215)
#DBEED7 contains red, green and blue colors in about the same proportion. Web safe color of #DBEED7 is #CCFFCC (or #CFC).
#DBEED7 color RGB value is (219,238,215).
RGB: (219,238,215) (86%,93%,84%)
R 219 of 255 = 86%
G 238 of 255 = 93%
B 215 of 255 = 84%
R + G + B ~ 88%. #DBEED7 is light color.
R + G + B =
219 + 238 + 215 = 672 (100%)
R 219 of 672 ~ 32.59%
G 238 of 672 ~ 35.42%
B 215 of 672 ~ 31.99%
#DBEED7 color CMYK value is (8,0,10,7).
CMYK: (8,0,10,7) C8M0Y10K7 (8%,0%,10%,7%) (0.08/0.00/0.10/0.07)
DB | EE | D7 | |
---|---|---|---|
RGB | 219 | 238 | 215 |
HSL | 110° | 40.35% | 88.82% |
HSB/HSV | 110° | 9.66% | 93.33% |
CMYK | 7.98% | 0.00% | 9.66% |
6.67% |
HEX | DB | EE | D7 |
Decimal | 219 | 238 | 215 |
Binary | 11011011 | 11101110 | 11010111 |
Octal | 333 | 356 | 327 |
Examples of css and html codes for elements with #DBEED7 color. Also use rgb(219,238,215) instead hex code.
.myTextColor { color: #DBEED7; }
<p style="color:#DBEED7">This sample text font color is #DBEED7.</p>
This text font color is #DBEED7.
.myBgColor { background-color: #DBEED7; }
<div style="background-color:#DBEED7">Inner text</div>
This div background color is #DBEED7.
.myBorderColor { border: 1px solid #DBEED7; }
<div style="border:3px solid #DBEED7">Div</div>
This div border color is #DBEED7.
.myOpacity80 { color: #DBEED7; opacity: 0.8; }
<p style="color:#DBEED7;opacity:0.8;">80%</p>
Text with #DBEED7 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #DBEED7;}
<p style="text-shadow: 3px 3px 1px #DBEED7">Text here.</p>
This text has shadow with #DBEED7 color.
.textShadow {text-shadow: 3px 3px 1px #DBEED7, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #DBEED7, 5px 5px 20px red">Text here.</p>
This text has shadow with #DBEED7 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#DBEED7, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#DBEED7, Direction=45, Strength=4)">Text</p>
This text has shadow with #DBEED7 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #DBEED7; -webkit-box-shadow: 1px 1px 3px 2px #DBEED7; box-shadow: 1px 1px 3px 2px #DBEED7; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #DBEED7; -webkit-box-shadow: 1px 1px 3px 2px #DBEED7; box-shadow:1px 1px 3px 2px #DBEED7;">
Div content here</div>
This text has color #DBEED7 on black background.
This text has color #DBEED7 on white background.
This text has black color on #DBEED7 background.
This text has white color on #DBEED7 background.