HEX: #D9DFEB
RGB: (217,223,235)
#D9DFEB contains red, green and blue colors in about the same proportion. Web safe color of #D9DFEB is #CCCCFF (or #CCF).
#D9DFEB color RGB value is (217,223,235).
RGB: (217,223,235) (85%,87%,92%)
R 217 of 255 = 85%
G 223 of 255 = 87%
B 235 of 255 = 92%
R + G + B ~ 88%. #D9DFEB is light color.
R + G + B =
217 + 223 + 235 = 675 (100%)
R 217 of 675 ~ 32.15%
G 223 of 675 ~ 33.04%
B 235 of 675 ~ 34.81%
#D9DFEB color CMYK value is (8,5,0,8).
CMYK: (8,5,0,8) C8M5Y0K8 (8%,5%,0%,8%) (0.08/0.05/0.00/0.08)
D9 | DF | EB | |
---|---|---|---|
RGB | 217 | 223 | 235 |
HSL | 220° | 31.03% | 88.63% |
HSB/HSV | 220° | 7.66% | 92.16% |
CMYK | 7.66% | 5.11% | 0.00% |
7.84% |
HEX | D9 | DF | EB |
Decimal | 217 | 223 | 235 |
Binary | 11011001 | 11011111 | 11101011 |
Octal | 331 | 337 | 353 |
Examples of css and html codes for elements with #D9DFEB color. Also use rgb(217,223,235) instead hex code.
.myTextColor { color: #D9DFEB; }
<p style="color:#D9DFEB">This sample text font color is #D9DFEB.</p>
This text font color is #D9DFEB.
.myBgColor { background-color: #D9DFEB; }
<div style="background-color:#D9DFEB">Inner text</div>
This div background color is #D9DFEB.
.myBorderColor { border: 1px solid #D9DFEB; }
<div style="border:3px solid #D9DFEB">Div</div>
This div border color is #D9DFEB.
.myOpacity80 { color: #D9DFEB; opacity: 0.8; }
<p style="color:#D9DFEB;opacity:0.8;">80%</p>
Text with #D9DFEB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D9DFEB;}
<p style="text-shadow: 3px 3px 1px #D9DFEB">Text here.</p>
This text has shadow with #D9DFEB color.
.textShadow {text-shadow: 3px 3px 1px #D9DFEB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D9DFEB, 5px 5px 20px red">Text here.</p>
This text has shadow with #D9DFEB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D9DFEB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D9DFEB, Direction=45, Strength=4)">Text</p>
This text has shadow with #D9DFEB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D9DFEB; -webkit-box-shadow: 1px 1px 3px 2px #D9DFEB; box-shadow: 1px 1px 3px 2px #D9DFEB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D9DFEB; -webkit-box-shadow: 1px 1px 3px 2px #D9DFEB; box-shadow:1px 1px 3px 2px #D9DFEB;">
Div content here</div>
This text has color #D9DFEB on black background.
This text has color #D9DFEB on white background.
This text has black color on #D9DFEB background.
This text has white color on #D9DFEB background.