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