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