HEX: #F2FDEB
RGB: (242,253,235)
#F2FDEB contains red, green and blue colors in about the same proportion. Web safe color of #F2FDEB is #FFFFFF (or #FFF).
#F2FDEB color RGB value is (242,253,235).
RGB: (242,253,235) (95%,99%,92%)
R 242 of 255 = 95%
G 253 of 255 = 99%
B 235 of 255 = 92%
R + G + B ~ 95%. #F2FDEB is light color.
R + G + B =
242 + 253 + 235 = 730 (100%)
R 242 of 730 ~ 33.15%
G 253 of 730 ~ 34.66%
B 235 of 730 ~ 32.19%
#F2FDEB color CMYK value is (4,0,7,1).
CMYK: (4,0,7,1) C4M0Y7K1 (4%,0%,7%,1%) (0.04/0.00/0.07/0.01)
F2 | FD | EB | |
---|---|---|---|
RGB | 242 | 253 | 235 |
HSL | 97° | 81.82% | 95.69% |
HSB/HSV | 97° | 7.11% | 99.22% |
CMYK | 4.35% | 0.00% | 7.11% |
0.78% |
HEX | F2 | FD | EB |
Decimal | 242 | 253 | 235 |
Binary | 11110010 | 11111101 | 11101011 |
Octal | 362 | 375 | 353 |
Examples of css and html codes for elements with #F2FDEB color. Also use rgb(242,253,235) instead hex code.
.myTextColor { color: #F2FDEB; }
<p style="color:#F2FDEB">This sample text font color is #F2FDEB.</p>
This text font color is #F2FDEB.
.myBgColor { background-color: #F2FDEB; }
<div style="background-color:#F2FDEB">Inner text</div>
This div background color is #F2FDEB.
.myBorderColor { border: 1px solid #F2FDEB; }
<div style="border:3px solid #F2FDEB">Div</div>
This div border color is #F2FDEB.
.myOpacity80 { color: #F2FDEB; opacity: 0.8; }
<p style="color:#F2FDEB;opacity:0.8;">80%</p>
Text with #F2FDEB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F2FDEB;}
<p style="text-shadow: 3px 3px 1px #F2FDEB">Text here.</p>
This text has shadow with #F2FDEB color.
.textShadow {text-shadow: 3px 3px 1px #F2FDEB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F2FDEB, 5px 5px 20px red">Text here.</p>
This text has shadow with #F2FDEB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F2FDEB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F2FDEB, Direction=45, Strength=4)">Text</p>
This text has shadow with #F2FDEB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F2FDEB; -webkit-box-shadow: 1px 1px 3px 2px #F2FDEB; box-shadow: 1px 1px 3px 2px #F2FDEB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F2FDEB; -webkit-box-shadow: 1px 1px 3px 2px #F2FDEB; box-shadow:1px 1px 3px 2px #F2FDEB;">
Div content here</div>
This text has color #F2FDEB on black background.
This text has color #F2FDEB on white background.
This text has black color on #F2FDEB background.
This text has white color on #F2FDEB background.