HEX: #F5DADF
RGB: (245,218,223)
#F5DADF contains red, green and blue colors in about the same proportion. Web safe color of #F5DADF is #FFCCCC (or #FCC).
#F5DADF color RGB value is (245,218,223).
RGB: (245,218,223) (96%,85%,87%)
R 245 of 255 = 96%
G 218 of 255 = 85%
B 223 of 255 = 87%
R + G + B ~ 89%. #F5DADF is light color.
R + G + B =
245 + 218 + 223 = 686 (100%)
R 245 of 686 ~ 35.71%
G 218 of 686 ~ 31.78%
B 223 of 686 ~ 32.51%
#F5DADF color CMYK value is (0,11,9,4).
CMYK: (0,11,9,4) C0M11Y9K4 (0%,11%,9%,4%) (0.00/0.11/0.09/0.04)
F5 | DA | DF | |
---|---|---|---|
RGB | 245 | 218 | 223 |
HSL | 349° | 57.45% | 90.78% |
HSB/HSV | 349° | 11.02% | 96.08% |
CMYK | 0.00% | 11.02% | 8.98% |
3.92% |
HEX | F5 | DA | DF |
Decimal | 245 | 218 | 223 |
Binary | 11110101 | 11011010 | 11011111 |
Octal | 365 | 332 | 337 |
Examples of css and html codes for elements with #F5DADF color. Also use rgb(245,218,223) instead hex code.
.myTextColor { color: #F5DADF; }
<p style="color:#F5DADF">This sample text font color is #F5DADF.</p>
This text font color is #F5DADF.
.myBgColor { background-color: #F5DADF; }
<div style="background-color:#F5DADF">Inner text</div>
This div background color is #F5DADF.
.myBorderColor { border: 1px solid #F5DADF; }
<div style="border:3px solid #F5DADF">Div</div>
This div border color is #F5DADF.
.myOpacity80 { color: #F5DADF; opacity: 0.8; }
<p style="color:#F5DADF;opacity:0.8;">80%</p>
Text with #F5DADF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F5DADF;}
<p style="text-shadow: 3px 3px 1px #F5DADF">Text here.</p>
This text has shadow with #F5DADF color.
.textShadow {text-shadow: 3px 3px 1px #F5DADF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F5DADF, 5px 5px 20px red">Text here.</p>
This text has shadow with #F5DADF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F5DADF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F5DADF, Direction=45, Strength=4)">Text</p>
This text has shadow with #F5DADF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F5DADF; -webkit-box-shadow: 1px 1px 3px 2px #F5DADF; box-shadow: 1px 1px 3px 2px #F5DADF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F5DADF; -webkit-box-shadow: 1px 1px 3px 2px #F5DADF; box-shadow:1px 1px 3px 2px #F5DADF;">
Div content here</div>
This text has color #F5DADF on black background.
This text has color #F5DADF on white background.
This text has black color on #F5DADF background.
This text has white color on #F5DADF background.