HEX: #D5E3FB
RGB: (213,227,251)
#D5E3FB contains red, green and blue colors in about the same proportion. Web safe color of #D5E3FB is #CCCCFF (or #CCF).
#D5E3FB color RGB value is (213,227,251).
RGB: (213,227,251) (84%,89%,98%)
R 213 of 255 = 84%
G 227 of 255 = 89%
B 251 of 255 = 98%
R + G + B ~ 90%. #D5E3FB is light color.
R + G + B =
213 + 227 + 251 = 691 (100%)
R 213 of 691 ~ 30.82%
G 227 of 691 ~ 32.85%
B 251 of 691 ~ 36.32%
#D5E3FB color CMYK value is (15,10,0,2).
CMYK: (15,10,0,2) C15M10Y0K2 (15%,10%,0%,2%) (0.15/0.10/0.00/0.02)
D5 | E3 | FB | |
---|---|---|---|
RGB | 213 | 227 | 251 |
HSL | 218° | 82.61% | 90.98% |
HSB/HSV | 218° | 15.14% | 98.43% |
CMYK | 15.14% | 9.56% | 0.00% |
1.57% |
HEX | D5 | E3 | FB |
Decimal | 213 | 227 | 251 |
Binary | 11010101 | 11100011 | 11111011 |
Octal | 325 | 343 | 373 |
Examples of css and html codes for elements with #D5E3FB color. Also use rgb(213,227,251) instead hex code.
.myTextColor { color: #D5E3FB; }
<p style="color:#D5E3FB">This sample text font color is #D5E3FB.</p>
This text font color is #D5E3FB.
.myBgColor { background-color: #D5E3FB; }
<div style="background-color:#D5E3FB">Inner text</div>
This div background color is #D5E3FB.
.myBorderColor { border: 1px solid #D5E3FB; }
<div style="border:3px solid #D5E3FB">Div</div>
This div border color is #D5E3FB.
.myOpacity80 { color: #D5E3FB; opacity: 0.8; }
<p style="color:#D5E3FB;opacity:0.8;">80%</p>
Text with #D5E3FB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D5E3FB;}
<p style="text-shadow: 3px 3px 1px #D5E3FB">Text here.</p>
This text has shadow with #D5E3FB color.
.textShadow {text-shadow: 3px 3px 1px #D5E3FB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D5E3FB, 5px 5px 20px red">Text here.</p>
This text has shadow with #D5E3FB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D5E3FB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D5E3FB, Direction=45, Strength=4)">Text</p>
This text has shadow with #D5E3FB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D5E3FB; -webkit-box-shadow: 1px 1px 3px 2px #D5E3FB; box-shadow: 1px 1px 3px 2px #D5E3FB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D5E3FB; -webkit-box-shadow: 1px 1px 3px 2px #D5E3FB; box-shadow:1px 1px 3px 2px #D5E3FB;">
Div content here</div>
This text has color #D5E3FB on black background.
This text has color #D5E3FB on white background.
This text has black color on #D5E3FB background.
This text has white color on #D5E3FB background.