HEX: #F5EADE
RGB: (245,234,222)
#F5EADE contains red, green and blue colors in about the same proportion. Web safe color of #F5EADE is #FFFFCC (or #FFC).
#F5EADE color RGB value is (245,234,222).
RGB: (245,234,222) (96%,92%,87%)
R 245 of 255 = 96%
G 234 of 255 = 92%
B 222 of 255 = 87%
R + G + B ~ 92%. #F5EADE is light color.
R + G + B =
245 + 234 + 222 = 701 (100%)
R 245 of 701 ~ 34.95%
G 234 of 701 ~ 33.38%
B 222 of 701 ~ 31.67%
#F5EADE color CMYK value is (0,4,9,4).
CMYK: (0,4,9,4) C0M4Y9K4 (0%,4%,9%,4%) (0.00/0.04/0.09/0.04)
F5 | EA | DE | |
---|---|---|---|
RGB | 245 | 234 | 222 |
HSL | 31° | 53.49% | 91.57% |
HSB/HSV | 31° | 9.39% | 96.08% |
CMYK | 0.00% | 4.49% | 9.39% |
3.92% |
HEX | F5 | EA | DE |
Decimal | 245 | 234 | 222 |
Binary | 11110101 | 11101010 | 11011110 |
Octal | 365 | 352 | 336 |
Examples of css and html codes for elements with #F5EADE color. Also use rgb(245,234,222) instead hex code.
.myTextColor { color: #F5EADE; }
<p style="color:#F5EADE">This sample text font color is #F5EADE.</p>
This text font color is #F5EADE.
.myBgColor { background-color: #F5EADE; }
<div style="background-color:#F5EADE">Inner text</div>
This div background color is #F5EADE.
.myBorderColor { border: 1px solid #F5EADE; }
<div style="border:3px solid #F5EADE">Div</div>
This div border color is #F5EADE.
.myOpacity80 { color: #F5EADE; opacity: 0.8; }
<p style="color:#F5EADE;opacity:0.8;">80%</p>
Text with #F5EADE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F5EADE;}
<p style="text-shadow: 3px 3px 1px #F5EADE">Text here.</p>
This text has shadow with #F5EADE color.
.textShadow {text-shadow: 3px 3px 1px #F5EADE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F5EADE, 5px 5px 20px red">Text here.</p>
This text has shadow with #F5EADE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F5EADE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F5EADE, Direction=45, Strength=4)">Text</p>
This text has shadow with #F5EADE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F5EADE; -webkit-box-shadow: 1px 1px 3px 2px #F5EADE; box-shadow: 1px 1px 3px 2px #F5EADE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F5EADE; -webkit-box-shadow: 1px 1px 3px 2px #F5EADE; box-shadow:1px 1px 3px 2px #F5EADE;">
Div content here</div>
This text has color #F5EADE on black background.
This text has color #F5EADE on white background.
This text has black color on #F5EADE background.
This text has white color on #F5EADE background.