HEX: #D4FCDB
RGB: (212,252,219)
#D4FCDB contains red, green and blue colors in about the same proportion. Web safe color of #D4FCDB is #CCFFCC (or #CFC).
#D4FCDB color RGB value is (212,252,219).
RGB: (212,252,219) (83%,99%,86%)
R 212 of 255 = 83%
G 252 of 255 = 99%
B 219 of 255 = 86%
R + G + B ~ 89%. #D4FCDB is light color.
R + G + B =
212 + 252 + 219 = 683 (100%)
R 212 of 683 ~ 31.04%
G 252 of 683 ~ 36.9%
B 219 of 683 ~ 32.06%
#D4FCDB color CMYK value is (16,0,13,1).
CMYK: (16,0,13,1) C16M0Y13K1 (16%,0%,13%,1%) (0.16/0.00/0.13/0.01)
D4 | FC | DB | |
---|---|---|---|
RGB | 212 | 252 | 219 |
HSL | 131° | 86.96% | 90.98% |
HSB/HSV | 131° | 15.87% | 98.82% |
CMYK | 15.87% | 0.00% | 13.10% |
1.18% |
HEX | D4 | FC | DB |
Decimal | 212 | 252 | 219 |
Binary | 11010100 | 11111100 | 11011011 |
Octal | 324 | 374 | 333 |
Examples of css and html codes for elements with #D4FCDB color. Also use rgb(212,252,219) instead hex code.
.myTextColor { color: #D4FCDB; }
<p style="color:#D4FCDB">This sample text font color is #D4FCDB.</p>
This text font color is #D4FCDB.
.myBgColor { background-color: #D4FCDB; }
<div style="background-color:#D4FCDB">Inner text</div>
This div background color is #D4FCDB.
.myBorderColor { border: 1px solid #D4FCDB; }
<div style="border:3px solid #D4FCDB">Div</div>
This div border color is #D4FCDB.
.myOpacity80 { color: #D4FCDB; opacity: 0.8; }
<p style="color:#D4FCDB;opacity:0.8;">80%</p>
Text with #D4FCDB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D4FCDB;}
<p style="text-shadow: 3px 3px 1px #D4FCDB">Text here.</p>
This text has shadow with #D4FCDB color.
.textShadow {text-shadow: 3px 3px 1px #D4FCDB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D4FCDB, 5px 5px 20px red">Text here.</p>
This text has shadow with #D4FCDB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D4FCDB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D4FCDB, Direction=45, Strength=4)">Text</p>
This text has shadow with #D4FCDB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D4FCDB; -webkit-box-shadow: 1px 1px 3px 2px #D4FCDB; box-shadow: 1px 1px 3px 2px #D4FCDB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D4FCDB; -webkit-box-shadow: 1px 1px 3px 2px #D4FCDB; box-shadow:1px 1px 3px 2px #D4FCDB;">
Div content here</div>
This text has color #D4FCDB on black background.
This text has color #D4FCDB on white background.
This text has black color on #D4FCDB background.
This text has white color on #D4FCDB background.