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