HEX: #F5DCDB
RGB: (245,220,219)
#F5DCDB contains red, green and blue colors in about the same proportion. Web safe color of #F5DCDB is #FFCCCC (or #FCC).
#F5DCDB color RGB value is (245,220,219).
RGB: (245,220,219) (96%,86%,86%)
R 245 of 255 = 96%
G 220 of 255 = 86%
B 219 of 255 = 86%
R + G + B ~ 89%. #F5DCDB is light color.
R + G + B =
245 + 220 + 219 = 684 (100%)
R 245 of 684 ~ 35.82%
G 220 of 684 ~ 32.16%
B 219 of 684 ~ 32.02%
#F5DCDB color CMYK value is (0,10,11,4).
CMYK: (0,10,11,4) C0M10Y11K4 (0%,10%,11%,4%) (0.00/0.10/0.11/0.04)
F5 | DC | DB | |
---|---|---|---|
RGB | 245 | 220 | 219 |
HSL | 2° | 56.52% | 90.98% |
HSB/HSV | 2° | 10.61% | 96.08% |
CMYK | 0.00% | 10.20% | 10.61% |
3.92% |
HEX | F5 | DC | DB |
Decimal | 245 | 220 | 219 |
Binary | 11110101 | 11011100 | 11011011 |
Octal | 365 | 334 | 333 |
Examples of css and html codes for elements with #F5DCDB color. Also use rgb(245,220,219) instead hex code.
.myTextColor { color: #F5DCDB; }
<p style="color:#F5DCDB">This sample text font color is #F5DCDB.</p>
This text font color is #F5DCDB.
.myBgColor { background-color: #F5DCDB; }
<div style="background-color:#F5DCDB">Inner text</div>
This div background color is #F5DCDB.
.myBorderColor { border: 1px solid #F5DCDB; }
<div style="border:3px solid #F5DCDB">Div</div>
This div border color is #F5DCDB.
.myOpacity80 { color: #F5DCDB; opacity: 0.8; }
<p style="color:#F5DCDB;opacity:0.8;">80%</p>
Text with #F5DCDB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F5DCDB;}
<p style="text-shadow: 3px 3px 1px #F5DCDB">Text here.</p>
This text has shadow with #F5DCDB color.
.textShadow {text-shadow: 3px 3px 1px #F5DCDB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F5DCDB, 5px 5px 20px red">Text here.</p>
This text has shadow with #F5DCDB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F5DCDB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F5DCDB, Direction=45, Strength=4)">Text</p>
This text has shadow with #F5DCDB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F5DCDB; -webkit-box-shadow: 1px 1px 3px 2px #F5DCDB; box-shadow: 1px 1px 3px 2px #F5DCDB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F5DCDB; -webkit-box-shadow: 1px 1px 3px 2px #F5DCDB; box-shadow:1px 1px 3px 2px #F5DCDB;">
Div content here</div>
This text has color #F5DCDB on black background.
This text has color #F5DCDB on white background.
This text has black color on #F5DCDB background.
This text has white color on #F5DCDB background.