HEX: #F5FCEF
RGB: (245,252,239)
#F5FCEF contains red, green and blue colors in about the same proportion. Web safe color of #F5FCEF is #FFFFFF (or #FFF).
#F5FCEF color RGB value is (245,252,239).
RGB: (245,252,239) (96%,99%,94%)
R 245 of 255 = 96%
G 252 of 255 = 99%
B 239 of 255 = 94%
R + G + B ~ 96%. #F5FCEF is light color.
R + G + B =
245 + 252 + 239 = 736 (100%)
R 245 of 736 ~ 33.29%
G 252 of 736 ~ 34.24%
B 239 of 736 ~ 32.47%
#F5FCEF color CMYK value is (3,0,5,1).
CMYK: (3,0,5,1) C3M0Y5K1 (3%,0%,5%,1%) (0.03/0.00/0.05/0.01)
F5 | FC | EF | |
---|---|---|---|
RGB | 245 | 252 | 239 |
HSL | 92° | 68.42% | 96.27% |
HSB/HSV | 92° | 5.16% | 98.82% |
CMYK | 2.78% | 0.00% | 5.16% |
1.18% |
HEX | F5 | FC | EF |
Decimal | 245 | 252 | 239 |
Binary | 11110101 | 11111100 | 11101111 |
Octal | 365 | 374 | 357 |
Examples of css and html codes for elements with #F5FCEF color. Also use rgb(245,252,239) instead hex code.
.myTextColor { color: #F5FCEF; }
<p style="color:#F5FCEF">This sample text font color is #F5FCEF.</p>
This text font color is #F5FCEF.
.myBgColor { background-color: #F5FCEF; }
<div style="background-color:#F5FCEF">Inner text</div>
This div background color is #F5FCEF.
.myBorderColor { border: 1px solid #F5FCEF; }
<div style="border:3px solid #F5FCEF">Div</div>
This div border color is #F5FCEF.
.myOpacity80 { color: #F5FCEF; opacity: 0.8; }
<p style="color:#F5FCEF;opacity:0.8;">80%</p>
Text with #F5FCEF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F5FCEF;}
<p style="text-shadow: 3px 3px 1px #F5FCEF">Text here.</p>
This text has shadow with #F5FCEF color.
.textShadow {text-shadow: 3px 3px 1px #F5FCEF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F5FCEF, 5px 5px 20px red">Text here.</p>
This text has shadow with #F5FCEF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F5FCEF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F5FCEF, Direction=45, Strength=4)">Text</p>
This text has shadow with #F5FCEF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F5FCEF; -webkit-box-shadow: 1px 1px 3px 2px #F5FCEF; box-shadow: 1px 1px 3px 2px #F5FCEF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F5FCEF; -webkit-box-shadow: 1px 1px 3px 2px #F5FCEF; box-shadow:1px 1px 3px 2px #F5FCEF;">
Div content here</div>
This text has color #F5FCEF on black background.
This text has color #F5FCEF on white background.
This text has black color on #F5FCEF background.
This text has white color on #F5FCEF background.