HEX: #F6FDE5
RGB: (246,253,229)
#F6FDE5 contains red, green and blue colors in about the same proportion. Web safe color of #F6FDE5 is #FFFFCC (or #FFC).
#F6FDE5 color RGB value is (246,253,229).
RGB: (246,253,229)
(96%, 99%, 90%)
R 246 of 255 = 96%
G 253 of 255 = 99%
B 229 of 255 = 90%
R + G + B ~ 95%. #F6FDE5 is light color.
R + G + B = 246 + 253 + 229 = 728 (100%)
R 246 of 728 ~ 33.79%
G 253 of 728 ~ 34.75%
B 229 of 728 ~ 31.46'%
#F6FDE5 color CMYK value is (3,0,9,1).
CMYK: (3,0,9,1) C3M0Y9K1 (3%,0%,9%,1%) (0.03/0.00/0.09/0.01)
Color #F6FDE5 in popluar color models
F6 | FD | E5 | |
---|---|---|---|
RGB | 246 | 253 | 229 |
HSL | 78° | 85.71% | 94.51% |
HSB/HSV | 78° | 9.49% | 99.22% |
CMYK | 2.77% | 0.00% | 9.49% |
0.78% |
Color #F6FDE5 in popluar number systems.
HEX | F6 | FD | E5 |
Decimal | 246 | 253 | 229 |
Binary | 11110110 | 11111101 | 11100101 |
Octal | 366 | 375 | 345 |
Examples of css and html codes for elements with #F6FDE5 color. Also use rgb(246,253,229) instead hex code.
.myTextColor { color: #F6FDE5; }
<p style="color:#F6FDE5">This sample text font color is #F6FDE5.</p>
This text font color is #F6FDE5.
.myBgColor { background-color: #F6FDE5; }
<div style="background-color:#F6FDE5">Inner text</div>
This div background color is #F6FDE5.
.myBorderColor { border: 1px solid #F6FDE5; }
<div style="border:3px solid #F6FDE5">Div</div>
This div border color is #F6FDE5.
.myOpacity80 { color: #F6FDE5; opacity: 0.8; }
<p style="color:#F6FDE5;opacity:0.8;">80%</p>
Text with #F6FDE5 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F6FDE5;}
<p style="text-shadow: 3px 3px 1px #F6FDE5">Text here.</p>
This text has shadow with #F6FDE5 color.
.textShadow {text-shadow: 3px 3px 1px #F6FDE5, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F6FDE5, 5px 5px 20px red">Text here.</p>
This text has shadow with #F6FDE5 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F6FDE5, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F6FDE5, Direction=45, Strength=4)">Text</p>
This text has shadow with #F6FDE5 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F6FDE5; -webkit-box-shadow: 1px 1px 3px 2px #F6FDE5; box-shadow: 1px 1px 3px 2px #F6FDE5; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F6FDE5; -webkit-box-shadow: 1px 1px 3px 2px #F6FDE5; box-shadow:1px 1px 3px 2px #F6FDE5;">
Div content here</div>
This text has color #F6FDE5 on black background.
This text has color #F6FDE5 on white background.
This text has black color on #F6FDE5 background.
This text has white color on #F6FDE5 background.