HEX: #F2E4DF
RGB: (242,228,223)
#F2E4DF contains red, green and blue colors in about the same proportion. Web safe color of #F2E4DF is #FFCCCC (or #FCC).
#F2E4DF color RGB value is (242,228,223).
RGB: (242,228,223) (95%,89%,87%)
R 242 of 255 = 95%
G 228 of 255 = 89%
B 223 of 255 = 87%
R + G + B ~ 90%. #F2E4DF is light color.
R + G + B =
242 + 228 + 223 = 693 (100%)
R 242 of 693 ~ 34.92%
G 228 of 693 ~ 32.9%
B 223 of 693 ~ 32.18%
#F2E4DF color CMYK value is (0,6,8,5).
CMYK: (0,6,8,5) C0M6Y8K5 (0%,6%,8%,5%) (0.00/0.06/0.08/0.05)
F2 | E4 | DF | |
---|---|---|---|
RGB | 242 | 228 | 223 |
HSL | 16° | 42.22% | 91.18% |
HSB/HSV | 16° | 7.85% | 94.90% |
CMYK | 0.00% | 5.79% | 7.85% |
5.10% |
HEX | F2 | E4 | DF |
Decimal | 242 | 228 | 223 |
Binary | 11110010 | 11100100 | 11011111 |
Octal | 362 | 344 | 337 |
Examples of css and html codes for elements with #F2E4DF color. Also use rgb(242,228,223) instead hex code.
.myTextColor { color: #F2E4DF; }
<p style="color:#F2E4DF">This sample text font color is #F2E4DF.</p>
This text font color is #F2E4DF.
.myBgColor { background-color: #F2E4DF; }
<div style="background-color:#F2E4DF">Inner text</div>
This div background color is #F2E4DF.
.myBorderColor { border: 1px solid #F2E4DF; }
<div style="border:3px solid #F2E4DF">Div</div>
This div border color is #F2E4DF.
.myOpacity80 { color: #F2E4DF; opacity: 0.8; }
<p style="color:#F2E4DF;opacity:0.8;">80%</p>
Text with #F2E4DF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F2E4DF;}
<p style="text-shadow: 3px 3px 1px #F2E4DF">Text here.</p>
This text has shadow with #F2E4DF color.
.textShadow {text-shadow: 3px 3px 1px #F2E4DF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F2E4DF, 5px 5px 20px red">Text here.</p>
This text has shadow with #F2E4DF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F2E4DF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F2E4DF, Direction=45, Strength=4)">Text</p>
This text has shadow with #F2E4DF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F2E4DF; -webkit-box-shadow: 1px 1px 3px 2px #F2E4DF; box-shadow: 1px 1px 3px 2px #F2E4DF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F2E4DF; -webkit-box-shadow: 1px 1px 3px 2px #F2E4DF; box-shadow:1px 1px 3px 2px #F2E4DF;">
Div content here</div>
This text has color #F2E4DF on black background.
This text has color #F2E4DF on white background.
This text has black color on #F2E4DF background.
This text has white color on #F2E4DF background.