HEX: #F6FFEE
RGB: (246,255,238)
#F6FFEE contains red, green and blue colors in about the same proportion. Web safe color of #F6FFEE is #FFFFFF (or #FFF).
#F6FFEE color RGB value is (246,255,238).
RGB: (246,255,238) (96%,100%,93%)
R 246 of 255 = 96%
G 255 of 255 = 100%
B 238 of 255 = 93%
R + G + B ~ 96%. #F6FFEE is light color.
R + G + B =
246 + 255 + 238 = 739 (100%)
R 246 of 739 ~ 33.29%
G 255 of 739 ~ 34.51%
B 238 of 739 ~ 32.21%
#F6FFEE color CMYK value is (4,0,7,0).
CMYK: (4,0,7,0) C4M0Y7K0 (4%,0%,7%,0%) (0.04/0.00/0.07/0.00)
F6 | FF | EE | |
---|---|---|---|
RGB | 246 | 255 | 238 |
HSL | 92° | 100.00% | 96.67% |
HSB/HSV | 92° | 6.67% | 100.00% |
CMYK | 3.53% | 0.00% | 6.67% |
0.00% |
HEX | F6 | FF | EE |
Decimal | 246 | 255 | 238 |
Binary | 11110110 | 11111111 | 11101110 |
Octal | 366 | 377 | 356 |
Examples of css and html codes for elements with #F6FFEE color. Also use rgb(246,255,238) instead hex code.
.myTextColor { color: #F6FFEE; }
<p style="color:#F6FFEE">This sample text font color is #F6FFEE.</p>
This text font color is #F6FFEE.
.myBgColor { background-color: #F6FFEE; }
<div style="background-color:#F6FFEE">Inner text</div>
This div background color is #F6FFEE.
.myBorderColor { border: 1px solid #F6FFEE; }
<div style="border:3px solid #F6FFEE">Div</div>
This div border color is #F6FFEE.
.myOpacity80 { color: #F6FFEE; opacity: 0.8; }
<p style="color:#F6FFEE;opacity:0.8;">80%</p>
Text with #F6FFEE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F6FFEE;}
<p style="text-shadow: 3px 3px 1px #F6FFEE">Text here.</p>
This text has shadow with #F6FFEE color.
.textShadow {text-shadow: 3px 3px 1px #F6FFEE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F6FFEE, 5px 5px 20px red">Text here.</p>
This text has shadow with #F6FFEE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F6FFEE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F6FFEE, Direction=45, Strength=4)">Text</p>
This text has shadow with #F6FFEE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F6FFEE; -webkit-box-shadow: 1px 1px 3px 2px #F6FFEE; box-shadow: 1px 1px 3px 2px #F6FFEE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F6FFEE; -webkit-box-shadow: 1px 1px 3px 2px #F6FFEE; box-shadow:1px 1px 3px 2px #F6FFEE;">
Div content here</div>
This text has color #F6FFEE on black background.
This text has color #F6FFEE on white background.
This text has black color on #F6FFEE background.
This text has white color on #F6FFEE background.