HEX: #FED5FF
RGB: (254,213,255)
#FED5FF contains red, green and blue colors in about the same proportion. Web safe color of #FED5FF is #FFCCFF (or #FCF).
#FED5FF color RGB value is (254,213,255).
RGB: (254,213,255) (100%,84%,100%)
R 254 of 255 = 100%
G 213 of 255 = 84%
B 255 of 255 = 100%
R + G + B ~ 95%. #FED5FF is light color.
R + G + B =
254 + 213 + 255 = 722 (100%)
R 254 of 722 ~ 35.18%
G 213 of 722 ~ 29.5%
B 255 of 722 ~ 35.32%
#FED5FF color CMYK value is (0,16,0,0).
CMYK: (0,16,0,0) C0M16Y0K0 (0%,16%,0%,0%) (0.00/0.16/0.00/0.00)
FE | D5 | FF | |
---|---|---|---|
RGB | 254 | 213 | 255 |
HSL | 299° | 100.00% | 91.76% |
HSB/HSV | 299° | 16.47% | 100.00% |
CMYK | 0.39% | 16.47% | 0.00% |
0.00% |
HEX | FE | D5 | FF |
Decimal | 254 | 213 | 255 |
Binary | 11111110 | 11010101 | 11111111 |
Octal | 376 | 325 | 377 |
Examples of css and html codes for elements with #FED5FF color. Also use rgb(254,213,255) instead hex code.
.myTextColor { color: #FED5FF; }
<p style="color:#FED5FF">This sample text font color is #FED5FF.</p>
This text font color is #FED5FF.
.myBgColor { background-color: #FED5FF; }
<div style="background-color:#FED5FF">Inner text</div>
This div background color is #FED5FF.
.myBorderColor { border: 1px solid #FED5FF; }
<div style="border:3px solid #FED5FF">Div</div>
This div border color is #FED5FF.
.myOpacity80 { color: #FED5FF; opacity: 0.8; }
<p style="color:#FED5FF;opacity:0.8;">80%</p>
Text with #FED5FF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FED5FF;}
<p style="text-shadow: 3px 3px 1px #FED5FF">Text here.</p>
This text has shadow with #FED5FF color.
.textShadow {text-shadow: 3px 3px 1px #FED5FF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FED5FF, 5px 5px 20px red">Text here.</p>
This text has shadow with #FED5FF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FED5FF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FED5FF, Direction=45, Strength=4)">Text</p>
This text has shadow with #FED5FF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FED5FF; -webkit-box-shadow: 1px 1px 3px 2px #FED5FF; box-shadow: 1px 1px 3px 2px #FED5FF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FED5FF; -webkit-box-shadow: 1px 1px 3px 2px #FED5FF; box-shadow:1px 1px 3px 2px #FED5FF;">
Div content here</div>
This text has color #FED5FF on black background.
This text has color #FED5FF on white background.
This text has black color on #FED5FF background.
This text has white color on #FED5FF background.