HEX: #F2EADB
RGB: (242,234,219)
#F2EADB contains red, green and blue colors in about the same proportion. Web safe color of #F2EADB is #FFFFCC (or #FFC).
#F2EADB color RGB value is (242,234,219).
RGB: (242,234,219) (95%,92%,86%)
R 242 of 255 = 95%
G 234 of 255 = 92%
B 219 of 255 = 86%
R + G + B ~ 91%. #F2EADB is light color.
R + G + B =
242 + 234 + 219 = 695 (100%)
R 242 of 695 ~ 34.82%
G 234 of 695 ~ 33.67%
B 219 of 695 ~ 31.51%
#F2EADB color CMYK value is (0,3,10,5).
CMYK: (0,3,10,5) C0M3Y10K5 (0%,3%,10%,5%) (0.00/0.03/0.10/0.05)
F2 | EA | DB | |
---|---|---|---|
RGB | 242 | 234 | 219 |
HSL | 39° | 46.94% | 90.39% |
HSB/HSV | 39° | 9.50% | 94.90% |
CMYK | 0.00% | 3.31% | 9.50% |
5.10% |
HEX | F2 | EA | DB |
Decimal | 242 | 234 | 219 |
Binary | 11110010 | 11101010 | 11011011 |
Octal | 362 | 352 | 333 |
Examples of css and html codes for elements with #F2EADB color. Also use rgb(242,234,219) instead hex code.
.myTextColor { color: #F2EADB; }
<p style="color:#F2EADB">This sample text font color is #F2EADB.</p>
This text font color is #F2EADB.
.myBgColor { background-color: #F2EADB; }
<div style="background-color:#F2EADB">Inner text</div>
This div background color is #F2EADB.
.myBorderColor { border: 1px solid #F2EADB; }
<div style="border:3px solid #F2EADB">Div</div>
This div border color is #F2EADB.
.myOpacity80 { color: #F2EADB; opacity: 0.8; }
<p style="color:#F2EADB;opacity:0.8;">80%</p>
Text with #F2EADB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F2EADB;}
<p style="text-shadow: 3px 3px 1px #F2EADB">Text here.</p>
This text has shadow with #F2EADB color.
.textShadow {text-shadow: 3px 3px 1px #F2EADB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F2EADB, 5px 5px 20px red">Text here.</p>
This text has shadow with #F2EADB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F2EADB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F2EADB, Direction=45, Strength=4)">Text</p>
This text has shadow with #F2EADB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F2EADB; -webkit-box-shadow: 1px 1px 3px 2px #F2EADB; box-shadow: 1px 1px 3px 2px #F2EADB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F2EADB; -webkit-box-shadow: 1px 1px 3px 2px #F2EADB; box-shadow:1px 1px 3px 2px #F2EADB;">
Div content here</div>
This text has color #F2EADB on black background.
This text has color #F2EADB on white background.
This text has black color on #F2EADB background.
This text has white color on #F2EADB background.