HEX: #F0F4CA
RGB: (240,244,202)
#F0F4CA contains red, green and blue colors in about the same proportion. Web safe color of #F0F4CA is #FFFFCC (or #FFC).
#F0F4CA color RGB value is (240,244,202).
RGB: (240,244,202) (94%,96%,79%)
R 240 of 255 = 94%
G 244 of 255 = 96%
B 202 of 255 = 79%
R + G + B ~ 90%. #F0F4CA is light color.
R + G + B =
240 + 244 + 202 = 686 (100%)
R 240 of 686 ~ 34.99%
G 244 of 686 ~ 35.57%
B 202 of 686 ~ 29.45%
#F0F4CA color CMYK value is (2,0,17,4).
CMYK: (2,0,17,4) C2M0Y17K4 (2%,0%,17%,4%) (0.02/0.00/0.17/0.04)
F0 | F4 | CA | |
---|---|---|---|
RGB | 240 | 244 | 202 |
HSL | 66° | 65.63% | 87.45% |
HSB/HSV | 66° | 17.21% | 95.69% |
CMYK | 1.64% | 0.00% | 17.21% |
4.31% |
HEX | F0 | F4 | CA |
Decimal | 240 | 244 | 202 |
Binary | 11110000 | 11110100 | 11001010 |
Octal | 360 | 364 | 312 |
Examples of css and html codes for elements with #F0F4CA color. Also use rgb(240,244,202) instead hex code.
.myTextColor { color: #F0F4CA; }
<p style="color:#F0F4CA">This sample text font color is #F0F4CA.</p>
This text font color is #F0F4CA.
.myBgColor { background-color: #F0F4CA; }
<div style="background-color:#F0F4CA">Inner text</div>
This div background color is #F0F4CA.
.myBorderColor { border: 1px solid #F0F4CA; }
<div style="border:3px solid #F0F4CA">Div</div>
This div border color is #F0F4CA.
.myOpacity80 { color: #F0F4CA; opacity: 0.8; }
<p style="color:#F0F4CA;opacity:0.8;">80%</p>
Text with #F0F4CA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F0F4CA;}
<p style="text-shadow: 3px 3px 1px #F0F4CA">Text here.</p>
This text has shadow with #F0F4CA color.
.textShadow {text-shadow: 3px 3px 1px #F0F4CA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F0F4CA, 5px 5px 20px red">Text here.</p>
This text has shadow with #F0F4CA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F0F4CA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F0F4CA, Direction=45, Strength=4)">Text</p>
This text has shadow with #F0F4CA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F0F4CA; -webkit-box-shadow: 1px 1px 3px 2px #F0F4CA; box-shadow: 1px 1px 3px 2px #F0F4CA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F0F4CA; -webkit-box-shadow: 1px 1px 3px 2px #F0F4CA; box-shadow:1px 1px 3px 2px #F0F4CA;">
Div content here</div>
This text has color #F0F4CA on black background.
This text has color #F0F4CA on white background.
This text has black color on #F0F4CA background.
This text has white color on #F0F4CA background.