HEX: #F5FADD
RGB: (245,250,221)
#F5FADD contains red, green and blue colors in about the same proportion. Web safe color of #F5FADD is #FFFFCC (or #FFC).
#F5FADD color RGB value is (245,250,221).
RGB: (245,250,221) (96%,98%,87%)
R 245 of 255 = 96%
G 250 of 255 = 98%
B 221 of 255 = 87%
R + G + B ~ 94%. #F5FADD is light color.
R + G + B =
245 + 250 + 221 = 716 (100%)
R 245 of 716 ~ 34.22%
G 250 of 716 ~ 34.92%
B 221 of 716 ~ 30.87%
#F5FADD color CMYK value is (2,0,12,2).
CMYK: (2,0,12,2) C2M0Y12K2 (2%,0%,12%,2%) (0.02/0.00/0.12/0.02)
F5 | FA | DD | |
---|---|---|---|
RGB | 245 | 250 | 221 |
HSL | 70° | 74.36% | 92.35% |
HSB/HSV | 70° | 11.60% | 98.04% |
CMYK | 2.00% | 0.00% | 11.60% |
1.96% |
HEX | F5 | FA | DD |
Decimal | 245 | 250 | 221 |
Binary | 11110101 | 11111010 | 11011101 |
Octal | 365 | 372 | 335 |
Examples of css and html codes for elements with #F5FADD color. Also use rgb(245,250,221) instead hex code.
.myTextColor { color: #F5FADD; }
<p style="color:#F5FADD">This sample text font color is #F5FADD.</p>
This text font color is #F5FADD.
.myBgColor { background-color: #F5FADD; }
<div style="background-color:#F5FADD">Inner text</div>
This div background color is #F5FADD.
.myBorderColor { border: 1px solid #F5FADD; }
<div style="border:3px solid #F5FADD">Div</div>
This div border color is #F5FADD.
.myOpacity80 { color: #F5FADD; opacity: 0.8; }
<p style="color:#F5FADD;opacity:0.8;">80%</p>
Text with #F5FADD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F5FADD;}
<p style="text-shadow: 3px 3px 1px #F5FADD">Text here.</p>
This text has shadow with #F5FADD color.
.textShadow {text-shadow: 3px 3px 1px #F5FADD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F5FADD, 5px 5px 20px red">Text here.</p>
This text has shadow with #F5FADD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F5FADD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F5FADD, Direction=45, Strength=4)">Text</p>
This text has shadow with #F5FADD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F5FADD; -webkit-box-shadow: 1px 1px 3px 2px #F5FADD; box-shadow: 1px 1px 3px 2px #F5FADD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F5FADD; -webkit-box-shadow: 1px 1px 3px 2px #F5FADD; box-shadow:1px 1px 3px 2px #F5FADD;">
Div content here</div>
This text has color #F5FADD on black background.
This text has color #F5FADD on white background.
This text has black color on #F5FADD background.
This text has white color on #F5FADD background.