HEX: #F6F9EB
RGB: (246,249,235)
#F6F9EB contains red, green and blue colors in about the same proportion. Web safe color of #F6F9EB is #FFFFFF (or #FFF).
#F6F9EB color RGB value is (246,249,235).
RGB: (246,249,235) (96%,98%,92%)
R 246 of 255 = 96%
G 249 of 255 = 98%
B 235 of 255 = 92%
R + G + B ~ 95%. #F6F9EB is light color.
R + G + B =
246 + 249 + 235 = 730 (100%)
R 246 of 730 ~ 33.7%
G 249 of 730 ~ 34.11%
B 235 of 730 ~ 32.19%
#F6F9EB color CMYK value is (1,0,6,2).
CMYK: (1,0,6,2) C1M0Y6K2 (1%,0%,6%,2%) (0.01/0.00/0.06/0.02)
F6 | F9 | EB | |
---|---|---|---|
RGB | 246 | 249 | 235 |
HSL | 73° | 53.85% | 94.90% |
HSB/HSV | 73° | 5.62% | 97.65% |
CMYK | 1.20% | 0.00% | 5.62% |
2.35% |
HEX | F6 | F9 | EB |
Decimal | 246 | 249 | 235 |
Binary | 11110110 | 11111001 | 11101011 |
Octal | 366 | 371 | 353 |
Examples of css and html codes for elements with #F6F9EB color. Also use rgb(246,249,235) instead hex code.
.myTextColor { color: #F6F9EB; }
<p style="color:#F6F9EB">This sample text font color is #F6F9EB.</p>
This text font color is #F6F9EB.
.myBgColor { background-color: #F6F9EB; }
<div style="background-color:#F6F9EB">Inner text</div>
This div background color is #F6F9EB.
.myBorderColor { border: 1px solid #F6F9EB; }
<div style="border:3px solid #F6F9EB">Div</div>
This div border color is #F6F9EB.
.myOpacity80 { color: #F6F9EB; opacity: 0.8; }
<p style="color:#F6F9EB;opacity:0.8;">80%</p>
Text with #F6F9EB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F6F9EB;}
<p style="text-shadow: 3px 3px 1px #F6F9EB">Text here.</p>
This text has shadow with #F6F9EB color.
.textShadow {text-shadow: 3px 3px 1px #F6F9EB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F6F9EB, 5px 5px 20px red">Text here.</p>
This text has shadow with #F6F9EB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F6F9EB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F6F9EB, Direction=45, Strength=4)">Text</p>
This text has shadow with #F6F9EB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F6F9EB; -webkit-box-shadow: 1px 1px 3px 2px #F6F9EB; box-shadow: 1px 1px 3px 2px #F6F9EB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F6F9EB; -webkit-box-shadow: 1px 1px 3px 2px #F6F9EB; box-shadow:1px 1px 3px 2px #F6F9EB;">
Div content here</div>
This text has color #F6F9EB on black background.
This text has color #F6F9EB on white background.
This text has black color on #F6F9EB background.
This text has white color on #F6F9EB background.