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