HEX: #D4F8CE
RGB: (212,248,206)
#D4F8CE contains red, green and blue colors in about the same proportion. Web safe color of #D4F8CE is #CCFFCC (or #CFC).
#D4F8CE color RGB value is (212,248,206).
RGB: (212,248,206) (83%,97%,81%)
R 212 of 255 = 83%
G 248 of 255 = 97%
B 206 of 255 = 81%
R + G + B ~ 87%. #D4F8CE is light color.
R + G + B =
212 + 248 + 206 = 666 (100%)
R 212 of 666 ~ 31.83%
G 248 of 666 ~ 37.24%
B 206 of 666 ~ 30.93%
#D4F8CE color CMYK value is (15,0,17,3).
CMYK: (15,0,17,3) C15M0Y17K3 (15%,0%,17%,3%) (0.15/0.00/0.17/0.03)
D4 | F8 | CE | |
---|---|---|---|
RGB | 212 | 248 | 206 |
HSL | 111° | 75.00% | 89.02% |
HSB/HSV | 111° | 16.94% | 97.25% |
CMYK | 14.52% | 0.00% | 16.94% |
2.75% |
HEX | D4 | F8 | CE |
Decimal | 212 | 248 | 206 |
Binary | 11010100 | 11111000 | 11001110 |
Octal | 324 | 370 | 316 |
Examples of css and html codes for elements with #D4F8CE color. Also use rgb(212,248,206) instead hex code.
.myTextColor { color: #D4F8CE; }
<p style="color:#D4F8CE">This sample text font color is #D4F8CE.</p>
This text font color is #D4F8CE.
.myBgColor { background-color: #D4F8CE; }
<div style="background-color:#D4F8CE">Inner text</div>
This div background color is #D4F8CE.
.myBorderColor { border: 1px solid #D4F8CE; }
<div style="border:3px solid #D4F8CE">Div</div>
This div border color is #D4F8CE.
.myOpacity80 { color: #D4F8CE; opacity: 0.8; }
<p style="color:#D4F8CE;opacity:0.8;">80%</p>
Text with #D4F8CE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D4F8CE;}
<p style="text-shadow: 3px 3px 1px #D4F8CE">Text here.</p>
This text has shadow with #D4F8CE color.
.textShadow {text-shadow: 3px 3px 1px #D4F8CE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D4F8CE, 5px 5px 20px red">Text here.</p>
This text has shadow with #D4F8CE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D4F8CE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D4F8CE, Direction=45, Strength=4)">Text</p>
This text has shadow with #D4F8CE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D4F8CE; -webkit-box-shadow: 1px 1px 3px 2px #D4F8CE; box-shadow: 1px 1px 3px 2px #D4F8CE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D4F8CE; -webkit-box-shadow: 1px 1px 3px 2px #D4F8CE; box-shadow:1px 1px 3px 2px #D4F8CE;">
Div content here</div>
This text has color #D4F8CE on black background.
This text has color #D4F8CE on white background.
This text has black color on #D4F8CE background.
This text has white color on #D4F8CE background.