HEX: #D5FCDB
RGB: (213,252,219)
#D5FCDB contains red, green and blue colors in about the same proportion. Web safe color of #D5FCDB is #CCFFCC (or #CFC).
#D5FCDB color RGB value is (213,252,219).
RGB: (213,252,219) (84%,99%,86%)
R 213 of 255 = 84%
G 252 of 255 = 99%
B 219 of 255 = 86%
R + G + B ~ 90%. #D5FCDB is light color.
R + G + B =
213 + 252 + 219 = 684 (100%)
R 213 of 684 ~ 31.14%
G 252 of 684 ~ 36.84%
B 219 of 684 ~ 32.02%
#D5FCDB color CMYK value is (15,0,13,1).
CMYK: (15,0,13,1) C15M0Y13K1 (15%,0%,13%,1%) (0.15/0.00/0.13/0.01)
D5 | FC | DB | |
---|---|---|---|
RGB | 213 | 252 | 219 |
HSL | 129° | 86.67% | 91.18% |
HSB/HSV | 129° | 15.48% | 98.82% |
CMYK | 15.48% | 0.00% | 13.10% |
1.18% |
HEX | D5 | FC | DB |
Decimal | 213 | 252 | 219 |
Binary | 11010101 | 11111100 | 11011011 |
Octal | 325 | 374 | 333 |
Examples of css and html codes for elements with #D5FCDB color. Also use rgb(213,252,219) instead hex code.
.myTextColor { color: #D5FCDB; }
<p style="color:#D5FCDB">This sample text font color is #D5FCDB.</p>
This text font color is #D5FCDB.
.myBgColor { background-color: #D5FCDB; }
<div style="background-color:#D5FCDB">Inner text</div>
This div background color is #D5FCDB.
.myBorderColor { border: 1px solid #D5FCDB; }
<div style="border:3px solid #D5FCDB">Div</div>
This div border color is #D5FCDB.
.myOpacity80 { color: #D5FCDB; opacity: 0.8; }
<p style="color:#D5FCDB;opacity:0.8;">80%</p>
Text with #D5FCDB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D5FCDB;}
<p style="text-shadow: 3px 3px 1px #D5FCDB">Text here.</p>
This text has shadow with #D5FCDB color.
.textShadow {text-shadow: 3px 3px 1px #D5FCDB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D5FCDB, 5px 5px 20px red">Text here.</p>
This text has shadow with #D5FCDB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D5FCDB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D5FCDB, Direction=45, Strength=4)">Text</p>
This text has shadow with #D5FCDB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D5FCDB; -webkit-box-shadow: 1px 1px 3px 2px #D5FCDB; box-shadow: 1px 1px 3px 2px #D5FCDB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D5FCDB; -webkit-box-shadow: 1px 1px 3px 2px #D5FCDB; box-shadow:1px 1px 3px 2px #D5FCDB;">
Div content here</div>
This text has color #D5FCDB on black background.
This text has color #D5FCDB on white background.
This text has black color on #D5FCDB background.
This text has white color on #D5FCDB background.