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