HEX: #F6EBDE
RGB: (246,235,222)
#F6EBDE contains red, green and blue colors in about the same proportion. Web safe color of #F6EBDE is #FFFFCC (or #FFC).
#F6EBDE color RGB value is (246,235,222).
RGB: (246,235,222) (96%,92%,87%)
R 246 of 255 = 96%
G 235 of 255 = 92%
B 222 of 255 = 87%
R + G + B ~ 92%. #F6EBDE is light color.
R + G + B =
246 + 235 + 222 = 703 (100%)
R 246 of 703 ~ 34.99%
G 235 of 703 ~ 33.43%
B 222 of 703 ~ 31.58%
#F6EBDE color CMYK value is (0,4,10,4).
CMYK: (0,4,10,4) C0M4Y10K4 (0%,4%,10%,4%) (0.00/0.04/0.10/0.04)
F6 | EB | DE | |
---|---|---|---|
RGB | 246 | 235 | 222 |
HSL | 33° | 57.14% | 91.76% |
HSB/HSV | 33° | 9.76% | 96.47% |
CMYK | 0.00% | 4.47% | 9.76% |
3.53% |
HEX | F6 | EB | DE |
Decimal | 246 | 235 | 222 |
Binary | 11110110 | 11101011 | 11011110 |
Octal | 366 | 353 | 336 |
Examples of css and html codes for elements with #F6EBDE color. Also use rgb(246,235,222) instead hex code.
.myTextColor { color: #F6EBDE; }
<p style="color:#F6EBDE">This sample text font color is #F6EBDE.</p>
This text font color is #F6EBDE.
.myBgColor { background-color: #F6EBDE; }
<div style="background-color:#F6EBDE">Inner text</div>
This div background color is #F6EBDE.
.myBorderColor { border: 1px solid #F6EBDE; }
<div style="border:3px solid #F6EBDE">Div</div>
This div border color is #F6EBDE.
.myOpacity80 { color: #F6EBDE; opacity: 0.8; }
<p style="color:#F6EBDE;opacity:0.8;">80%</p>
Text with #F6EBDE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F6EBDE;}
<p style="text-shadow: 3px 3px 1px #F6EBDE">Text here.</p>
This text has shadow with #F6EBDE color.
.textShadow {text-shadow: 3px 3px 1px #F6EBDE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F6EBDE, 5px 5px 20px red">Text here.</p>
This text has shadow with #F6EBDE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F6EBDE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F6EBDE, Direction=45, Strength=4)">Text</p>
This text has shadow with #F6EBDE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F6EBDE; -webkit-box-shadow: 1px 1px 3px 2px #F6EBDE; box-shadow: 1px 1px 3px 2px #F6EBDE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F6EBDE; -webkit-box-shadow: 1px 1px 3px 2px #F6EBDE; box-shadow:1px 1px 3px 2px #F6EBDE;">
Div content here</div>
This text has color #F6EBDE on black background.
This text has color #F6EBDE on white background.
This text has black color on #F6EBDE background.
This text has white color on #F6EBDE background.