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