HEX: #D9DAFF
RGB: (217,218,255)
#D9DAFF contains red, green and blue colors in about the same proportion. Web safe color of #D9DAFF is #CCCCFF (or #CCF).
#D9DAFF color RGB value is (217,218,255).
RGB: (217,218,255) (85%,85%,100%)
R 217 of 255 = 85%
G 218 of 255 = 85%
B 255 of 255 = 100%
R + G + B ~ 90%. #D9DAFF is light color.
R + G + B =
217 + 218 + 255 = 690 (100%)
R 217 of 690 ~ 31.45%
G 218 of 690 ~ 31.59%
B 255 of 690 ~ 36.96%
#D9DAFF color CMYK value is (15,15,0,0).
CMYK: (15,15,0,0) C15M15Y0K0 (15%,15%,0%,0%) (0.15/0.15/0.00/0.00)
D9 | DA | FF | |
---|---|---|---|
RGB | 217 | 218 | 255 |
HSL | 238° | 100.00% | 92.55% |
HSB/HSV | 238° | 14.90% | 100.00% |
CMYK | 14.90% | 14.51% | 0.00% |
0.00% |
HEX | D9 | DA | FF |
Decimal | 217 | 218 | 255 |
Binary | 11011001 | 11011010 | 11111111 |
Octal | 331 | 332 | 377 |
Examples of css and html codes for elements with #D9DAFF color. Also use rgb(217,218,255) instead hex code.
.myTextColor { color: #D9DAFF; }
<p style="color:#D9DAFF">This sample text font color is #D9DAFF.</p>
This text font color is #D9DAFF.
.myBgColor { background-color: #D9DAFF; }
<div style="background-color:#D9DAFF">Inner text</div>
This div background color is #D9DAFF.
.myBorderColor { border: 1px solid #D9DAFF; }
<div style="border:3px solid #D9DAFF">Div</div>
This div border color is #D9DAFF.
.myOpacity80 { color: #D9DAFF; opacity: 0.8; }
<p style="color:#D9DAFF;opacity:0.8;">80%</p>
Text with #D9DAFF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D9DAFF;}
<p style="text-shadow: 3px 3px 1px #D9DAFF">Text here.</p>
This text has shadow with #D9DAFF color.
.textShadow {text-shadow: 3px 3px 1px #D9DAFF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D9DAFF, 5px 5px 20px red">Text here.</p>
This text has shadow with #D9DAFF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D9DAFF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D9DAFF, Direction=45, Strength=4)">Text</p>
This text has shadow with #D9DAFF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D9DAFF; -webkit-box-shadow: 1px 1px 3px 2px #D9DAFF; box-shadow: 1px 1px 3px 2px #D9DAFF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D9DAFF; -webkit-box-shadow: 1px 1px 3px 2px #D9DAFF; box-shadow:1px 1px 3px 2px #D9DAFF;">
Div content here</div>
This text has color #D9DAFF on black background.
This text has color #D9DAFF on white background.
This text has black color on #D9DAFF background.
This text has white color on #D9DAFF background.