HEX: #D4DFFA
RGB: (212,223,250)
#D4DFFA contains red, green and blue colors in about the same proportion. Web safe color of #D4DFFA is #CCCCFF (or #CCF).
#D4DFFA color RGB value is (212,223,250).
RGB: (212,223,250) (83%,87%,98%)
R 212 of 255 = 83%
G 223 of 255 = 87%
B 250 of 255 = 98%
R + G + B ~ 89%. #D4DFFA is light color.
R + G + B =
212 + 223 + 250 = 685 (100%)
R 212 of 685 ~ 30.95%
G 223 of 685 ~ 32.55%
B 250 of 685 ~ 36.5%
#D4DFFA color CMYK value is (15,11,0,2).
CMYK: (15,11,0,2) C15M11Y0K2 (15%,11%,0%,2%) (0.15/0.11/0.00/0.02)
D4 | DF | FA | |
---|---|---|---|
RGB | 212 | 223 | 250 |
HSL | 223° | 79.17% | 90.59% |
HSB/HSV | 223° | 15.20% | 98.04% |
CMYK | 15.20% | 10.80% | 0.00% |
1.96% |
HEX | D4 | DF | FA |
Decimal | 212 | 223 | 250 |
Binary | 11010100 | 11011111 | 11111010 |
Octal | 324 | 337 | 372 |
Examples of css and html codes for elements with #D4DFFA color. Also use rgb(212,223,250) instead hex code.
.myTextColor { color: #D4DFFA; }
<p style="color:#D4DFFA">This sample text font color is #D4DFFA.</p>
This text font color is #D4DFFA.
.myBgColor { background-color: #D4DFFA; }
<div style="background-color:#D4DFFA">Inner text</div>
This div background color is #D4DFFA.
.myBorderColor { border: 1px solid #D4DFFA; }
<div style="border:3px solid #D4DFFA">Div</div>
This div border color is #D4DFFA.
.myOpacity80 { color: #D4DFFA; opacity: 0.8; }
<p style="color:#D4DFFA;opacity:0.8;">80%</p>
Text with #D4DFFA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D4DFFA;}
<p style="text-shadow: 3px 3px 1px #D4DFFA">Text here.</p>
This text has shadow with #D4DFFA color.
.textShadow {text-shadow: 3px 3px 1px #D4DFFA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D4DFFA, 5px 5px 20px red">Text here.</p>
This text has shadow with #D4DFFA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D4DFFA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D4DFFA, Direction=45, Strength=4)">Text</p>
This text has shadow with #D4DFFA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D4DFFA; -webkit-box-shadow: 1px 1px 3px 2px #D4DFFA; box-shadow: 1px 1px 3px 2px #D4DFFA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D4DFFA; -webkit-box-shadow: 1px 1px 3px 2px #D4DFFA; box-shadow:1px 1px 3px 2px #D4DFFA;">
Div content here</div>
This text has color #D4DFFA on black background.
This text has color #D4DFFA on white background.
This text has black color on #D4DFFA background.
This text has white color on #D4DFFA background.