HEX: #FEC5ED
RGB: (254,197,237)
#FEC5ED contains red, green and blue colors in about the same proportion. Web safe color of #FEC5ED is #FFCCFF (or #FCF).
#FEC5ED color RGB value is (254,197,237).
RGB: (254,197,237) (100%,77%,93%)
R 254 of 255 = 100%
G 197 of 255 = 77%
B 237 of 255 = 93%
R + G + B ~ 90%. #FEC5ED is light color.
R + G + B =
254 + 197 + 237 = 688 (100%)
R 254 of 688 ~ 36.92%
G 197 of 688 ~ 28.63%
B 237 of 688 ~ 34.45%
#FEC5ED color CMYK value is (0,22,7,0).
CMYK: (0,22,7,0) C0M22Y7K0 (0%,22%,7%,0%) (0.00/0.22/0.07/0.00)
FE | C5 | ED | |
---|---|---|---|
RGB | 254 | 197 | 237 |
HSL | 318° | 96.61% | 88.43% |
HSB/HSV | 318° | 22.44% | 99.61% |
CMYK | 0.00% | 22.44% | 6.69% |
0.39% |
HEX | FE | C5 | ED |
Decimal | 254 | 197 | 237 |
Binary | 11111110 | 11000101 | 11101101 |
Octal | 376 | 305 | 355 |
Examples of css and html codes for elements with #FEC5ED color. Also use rgb(254,197,237) instead hex code.
.myTextColor { color: #FEC5ED; }
<p style="color:#FEC5ED">This sample text font color is #FEC5ED.</p>
This text font color is #FEC5ED.
.myBgColor { background-color: #FEC5ED; }
<div style="background-color:#FEC5ED">Inner text</div>
This div background color is #FEC5ED.
.myBorderColor { border: 1px solid #FEC5ED; }
<div style="border:3px solid #FEC5ED">Div</div>
This div border color is #FEC5ED.
.myOpacity80 { color: #FEC5ED; opacity: 0.8; }
<p style="color:#FEC5ED;opacity:0.8;">80%</p>
Text with #FEC5ED color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FEC5ED;}
<p style="text-shadow: 3px 3px 1px #FEC5ED">Text here.</p>
This text has shadow with #FEC5ED color.
.textShadow {text-shadow: 3px 3px 1px #FEC5ED, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FEC5ED, 5px 5px 20px red">Text here.</p>
This text has shadow with #FEC5ED primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FEC5ED, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FEC5ED, Direction=45, Strength=4)">Text</p>
This text has shadow with #FEC5ED and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FEC5ED; -webkit-box-shadow: 1px 1px 3px 2px #FEC5ED; box-shadow: 1px 1px 3px 2px #FEC5ED; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FEC5ED; -webkit-box-shadow: 1px 1px 3px 2px #FEC5ED; box-shadow:1px 1px 3px 2px #FEC5ED;">
Div content here</div>
This text has color #FEC5ED on black background.
This text has color #FEC5ED on white background.
This text has black color on #FEC5ED background.
This text has white color on #FEC5ED background.