HEX: #FED3EA
RGB: (254,211,234)
#FED3EA contains red, green and blue colors in about the same proportion. Web safe color of #FED3EA is #FFCCFF (or #FCF).
#FED3EA color RGB value is (254,211,234).
RGB: (254,211,234) (100%,83%,92%)
R 254 of 255 = 100%
G 211 of 255 = 83%
B 234 of 255 = 92%
R + G + B ~ 92%. #FED3EA is light color.
R + G + B =
254 + 211 + 234 = 699 (100%)
R 254 of 699 ~ 36.34%
G 211 of 699 ~ 30.19%
B 234 of 699 ~ 33.48%
#FED3EA color CMYK value is (0,17,8,0).
CMYK: (0,17,8,0) C0M17Y8K0 (0%,17%,8%,0%) (0.00/0.17/0.08/0.00)
FE | D3 | EA | |
---|---|---|---|
RGB | 254 | 211 | 234 |
HSL | 328° | 95.56% | 91.18% |
HSB/HSV | 328° | 16.93% | 99.61% |
CMYK | 0.00% | 16.93% | 7.87% |
0.39% |
HEX | FE | D3 | EA |
Decimal | 254 | 211 | 234 |
Binary | 11111110 | 11010011 | 11101010 |
Octal | 376 | 323 | 352 |
Examples of css and html codes for elements with #FED3EA color. Also use rgb(254,211,234) instead hex code.
.myTextColor { color: #FED3EA; }
<p style="color:#FED3EA">This sample text font color is #FED3EA.</p>
This text font color is #FED3EA.
.myBgColor { background-color: #FED3EA; }
<div style="background-color:#FED3EA">Inner text</div>
This div background color is #FED3EA.
.myBorderColor { border: 1px solid #FED3EA; }
<div style="border:3px solid #FED3EA">Div</div>
This div border color is #FED3EA.
.myOpacity80 { color: #FED3EA; opacity: 0.8; }
<p style="color:#FED3EA;opacity:0.8;">80%</p>
Text with #FED3EA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FED3EA;}
<p style="text-shadow: 3px 3px 1px #FED3EA">Text here.</p>
This text has shadow with #FED3EA color.
.textShadow {text-shadow: 3px 3px 1px #FED3EA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FED3EA, 5px 5px 20px red">Text here.</p>
This text has shadow with #FED3EA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FED3EA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FED3EA, Direction=45, Strength=4)">Text</p>
This text has shadow with #FED3EA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FED3EA; -webkit-box-shadow: 1px 1px 3px 2px #FED3EA; box-shadow: 1px 1px 3px 2px #FED3EA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FED3EA; -webkit-box-shadow: 1px 1px 3px 2px #FED3EA; box-shadow:1px 1px 3px 2px #FED3EA;">
Div content here</div>
This text has color #FED3EA on black background.
This text has color #FED3EA on white background.
This text has black color on #FED3EA background.
This text has white color on #FED3EA background.