HEX: #D5DBFA
RGB: (213,219,250)
#D5DBFA contains red, green and blue colors in about the same proportion. Web safe color of #D5DBFA is #CCCCFF (or #CCF).
#D5DBFA color RGB value is (213,219,250).
RGB: (213,219,250) (84%,86%,98%)
R 213 of 255 = 84%
G 219 of 255 = 86%
B 250 of 255 = 98%
R + G + B ~ 89%. #D5DBFA is light color.
R + G + B =
213 + 219 + 250 = 682 (100%)
R 213 of 682 ~ 31.23%
G 219 of 682 ~ 32.11%
B 250 of 682 ~ 36.66%
#D5DBFA color CMYK value is (15,12,0,2).
CMYK: (15,12,0,2) C15M12Y0K2 (15%,12%,0%,2%) (0.15/0.12/0.00/0.02)
D5 | DB | FA | |
---|---|---|---|
RGB | 213 | 219 | 250 |
HSL | 230° | 78.72% | 90.78% |
HSB/HSV | 230° | 14.80% | 98.04% |
CMYK | 14.80% | 12.40% | 0.00% |
1.96% |
HEX | D5 | DB | FA |
Decimal | 213 | 219 | 250 |
Binary | 11010101 | 11011011 | 11111010 |
Octal | 325 | 333 | 372 |
Examples of css and html codes for elements with #D5DBFA color. Also use rgb(213,219,250) instead hex code.
.myTextColor { color: #D5DBFA; }
<p style="color:#D5DBFA">This sample text font color is #D5DBFA.</p>
This text font color is #D5DBFA.
.myBgColor { background-color: #D5DBFA; }
<div style="background-color:#D5DBFA">Inner text</div>
This div background color is #D5DBFA.
.myBorderColor { border: 1px solid #D5DBFA; }
<div style="border:3px solid #D5DBFA">Div</div>
This div border color is #D5DBFA.
.myOpacity80 { color: #D5DBFA; opacity: 0.8; }
<p style="color:#D5DBFA;opacity:0.8;">80%</p>
Text with #D5DBFA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D5DBFA;}
<p style="text-shadow: 3px 3px 1px #D5DBFA">Text here.</p>
This text has shadow with #D5DBFA color.
.textShadow {text-shadow: 3px 3px 1px #D5DBFA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D5DBFA, 5px 5px 20px red">Text here.</p>
This text has shadow with #D5DBFA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D5DBFA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D5DBFA, Direction=45, Strength=4)">Text</p>
This text has shadow with #D5DBFA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D5DBFA; -webkit-box-shadow: 1px 1px 3px 2px #D5DBFA; box-shadow: 1px 1px 3px 2px #D5DBFA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D5DBFA; -webkit-box-shadow: 1px 1px 3px 2px #D5DBFA; box-shadow:1px 1px 3px 2px #D5DBFA;">
Div content here</div>
This text has color #D5DBFA on black background.
This text has color #D5DBFA on white background.
This text has black color on #D5DBFA background.
This text has white color on #D5DBFA background.