HEX: #D4CEFB
RGB: (212,206,251)
#D4CEFB contains red, green and blue colors in about the same proportion. Web safe color of #D4CEFB is #CCCCFF (or #CCF).
#D4CEFB color RGB value is (212,206,251).
RGB: (212,206,251) (83%,81%,98%)
R 212 of 255 = 83%
G 206 of 255 = 81%
B 251 of 255 = 98%
R + G + B ~ 87%. #D4CEFB is light color.
R + G + B =
212 + 206 + 251 = 669 (100%)
R 212 of 669 ~ 31.69%
G 206 of 669 ~ 30.79%
B 251 of 669 ~ 37.52%
#D4CEFB color CMYK value is (16,18,0,2).
CMYK: (16,18,0,2) C16M18Y0K2 (16%,18%,0%,2%) (0.16/0.18/0.00/0.02)
D4 | CE | FB | |
---|---|---|---|
RGB | 212 | 206 | 251 |
HSL | 248° | 84.91% | 89.61% |
HSB/HSV | 248° | 17.93% | 98.43% |
CMYK | 15.54% | 17.93% | 0.00% |
1.57% |
HEX | D4 | CE | FB |
Decimal | 212 | 206 | 251 |
Binary | 11010100 | 11001110 | 11111011 |
Octal | 324 | 316 | 373 |
Examples of css and html codes for elements with #D4CEFB color. Also use rgb(212,206,251) instead hex code.
.myTextColor { color: #D4CEFB; }
<p style="color:#D4CEFB">This sample text font color is #D4CEFB.</p>
This text font color is #D4CEFB.
.myBgColor { background-color: #D4CEFB; }
<div style="background-color:#D4CEFB">Inner text</div>
This div background color is #D4CEFB.
.myBorderColor { border: 1px solid #D4CEFB; }
<div style="border:3px solid #D4CEFB">Div</div>
This div border color is #D4CEFB.
.myOpacity80 { color: #D4CEFB; opacity: 0.8; }
<p style="color:#D4CEFB;opacity:0.8;">80%</p>
Text with #D4CEFB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D4CEFB;}
<p style="text-shadow: 3px 3px 1px #D4CEFB">Text here.</p>
This text has shadow with #D4CEFB color.
.textShadow {text-shadow: 3px 3px 1px #D4CEFB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D4CEFB, 5px 5px 20px red">Text here.</p>
This text has shadow with #D4CEFB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D4CEFB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D4CEFB, Direction=45, Strength=4)">Text</p>
This text has shadow with #D4CEFB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D4CEFB; -webkit-box-shadow: 1px 1px 3px 2px #D4CEFB; box-shadow: 1px 1px 3px 2px #D4CEFB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D4CEFB; -webkit-box-shadow: 1px 1px 3px 2px #D4CEFB; box-shadow:1px 1px 3px 2px #D4CEFB;">
Div content here</div>
This text has color #D4CEFB on black background.
This text has color #D4CEFB on white background.
This text has black color on #D4CEFB background.
This text has white color on #D4CEFB background.