HEX: #FEDBEC
RGB: (254,219,236)
#FEDBEC contains red, green and blue colors in about the same proportion. Web safe color of #FEDBEC is #FFCCFF (or #FCF).
#FEDBEC color RGB value is (254,219,236).
RGB: (254,219,236) (100%,86%,93%)
R 254 of 255 = 100%
G 219 of 255 = 86%
B 236 of 255 = 93%
R + G + B ~ 93%. #FEDBEC is light color.
R + G + B =
254 + 219 + 236 = 709 (100%)
R 254 of 709 ~ 35.83%
G 219 of 709 ~ 30.89%
B 236 of 709 ~ 33.29%
#FEDBEC color CMYK value is (0,14,7,0).
CMYK: (0,14,7,0) C0M14Y7K0 (0%,14%,7%,0%) (0.00/0.14/0.07/0.00)
FE | DB | EC | |
---|---|---|---|
RGB | 254 | 219 | 236 |
HSL | 331° | 94.59% | 92.75% |
HSB/HSV | 331° | 13.78% | 99.61% |
CMYK | 0.00% | 13.78% | 7.09% |
0.39% |
HEX | FE | DB | EC |
Decimal | 254 | 219 | 236 |
Binary | 11111110 | 11011011 | 11101100 |
Octal | 376 | 333 | 354 |
Examples of css and html codes for elements with #FEDBEC color. Also use rgb(254,219,236) instead hex code.
.myTextColor { color: #FEDBEC; }
<p style="color:#FEDBEC">This sample text font color is #FEDBEC.</p>
This text font color is #FEDBEC.
.myBgColor { background-color: #FEDBEC; }
<div style="background-color:#FEDBEC">Inner text</div>
This div background color is #FEDBEC.
.myBorderColor { border: 1px solid #FEDBEC; }
<div style="border:3px solid #FEDBEC">Div</div>
This div border color is #FEDBEC.
.myOpacity80 { color: #FEDBEC; opacity: 0.8; }
<p style="color:#FEDBEC;opacity:0.8;">80%</p>
Text with #FEDBEC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FEDBEC;}
<p style="text-shadow: 3px 3px 1px #FEDBEC">Text here.</p>
This text has shadow with #FEDBEC color.
.textShadow {text-shadow: 3px 3px 1px #FEDBEC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FEDBEC, 5px 5px 20px red">Text here.</p>
This text has shadow with #FEDBEC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FEDBEC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FEDBEC, Direction=45, Strength=4)">Text</p>
This text has shadow with #FEDBEC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FEDBEC; -webkit-box-shadow: 1px 1px 3px 2px #FEDBEC; box-shadow: 1px 1px 3px 2px #FEDBEC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FEDBEC; -webkit-box-shadow: 1px 1px 3px 2px #FEDBEC; box-shadow:1px 1px 3px 2px #FEDBEC;">
Div content here</div>
This text has color #FEDBEC on black background.
This text has color #FEDBEC on white background.
This text has black color on #FEDBEC background.
This text has white color on #FEDBEC background.