HEX: #DBEBDD
RGB: (219,235,221)
#DBEBDD contains red, green and blue colors in about the same proportion. Web safe color of #DBEBDD is #CCFFCC (or #CFC).
#DBEBDD color RGB value is (219,235,221).
RGB: (219,235,221) (86%,92%,87%)
R 219 of 255 = 86%
G 235 of 255 = 92%
B 221 of 255 = 87%
R + G + B ~ 88%. #DBEBDD is light color.
R + G + B =
219 + 235 + 221 = 675 (100%)
R 219 of 675 ~ 32.44%
G 235 of 675 ~ 34.81%
B 221 of 675 ~ 32.74%
#DBEBDD color CMYK value is (7,0,6,8).
CMYK: (7,0,6,8) C7M0Y6K8 (7%,0%,6%,8%) (0.07/0.00/0.06/0.08)
DB | EB | DD | |
---|---|---|---|
RGB | 219 | 235 | 221 |
HSL | 128° | 28.57% | 89.02% |
HSB/HSV | 128° | 6.81% | 92.16% |
CMYK | 6.81% | 0.00% | 5.96% |
7.84% |
HEX | DB | EB | DD |
Decimal | 219 | 235 | 221 |
Binary | 11011011 | 11101011 | 11011101 |
Octal | 333 | 353 | 335 |
Examples of css and html codes for elements with #DBEBDD color. Also use rgb(219,235,221) instead hex code.
.myTextColor { color: #DBEBDD; }
<p style="color:#DBEBDD">This sample text font color is #DBEBDD.</p>
This text font color is #DBEBDD.
.myBgColor { background-color: #DBEBDD; }
<div style="background-color:#DBEBDD">Inner text</div>
This div background color is #DBEBDD.
.myBorderColor { border: 1px solid #DBEBDD; }
<div style="border:3px solid #DBEBDD">Div</div>
This div border color is #DBEBDD.
.myOpacity80 { color: #DBEBDD; opacity: 0.8; }
<p style="color:#DBEBDD;opacity:0.8;">80%</p>
Text with #DBEBDD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #DBEBDD;}
<p style="text-shadow: 3px 3px 1px #DBEBDD">Text here.</p>
This text has shadow with #DBEBDD color.
.textShadow {text-shadow: 3px 3px 1px #DBEBDD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #DBEBDD, 5px 5px 20px red">Text here.</p>
This text has shadow with #DBEBDD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#DBEBDD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#DBEBDD, Direction=45, Strength=4)">Text</p>
This text has shadow with #DBEBDD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #DBEBDD; -webkit-box-shadow: 1px 1px 3px 2px #DBEBDD; box-shadow: 1px 1px 3px 2px #DBEBDD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #DBEBDD; -webkit-box-shadow: 1px 1px 3px 2px #DBEBDD; box-shadow:1px 1px 3px 2px #DBEBDD;">
Div content here</div>
This text has color #DBEBDD on black background.
This text has color #DBEBDD on white background.
This text has black color on #DBEBDD background.
This text has white color on #DBEBDD background.