HEX: #FEDDDF
RGB: (254,221,223)
#FEDDDF contains red, green and blue colors in about the same proportion. Web safe color of #FEDDDF is #FFCCCC (or #FCC).
#FEDDDF color RGB value is (254,221,223).
RGB: (254,221,223) (100%,87%,87%)
R 254 of 255 = 100%
G 221 of 255 = 87%
B 223 of 255 = 87%
R + G + B ~ 91%. #FEDDDF is light color.
R + G + B =
254 + 221 + 223 = 698 (100%)
R 254 of 698 ~ 36.39%
G 221 of 698 ~ 31.66%
B 223 of 698 ~ 31.95%
#FEDDDF color CMYK value is (0,13,12,0).
CMYK: (0,13,12,0) C0M13Y12K0 (0%,13%,12%,0%) (0.00/0.13/0.12/0.00)
FE | DD | DF | |
---|---|---|---|
RGB | 254 | 221 | 223 |
HSL | 356° | 94.29% | 93.14% |
HSB/HSV | 356° | 12.99% | 99.61% |
CMYK | 0.00% | 12.99% | 12.20% |
0.39% |
HEX | FE | DD | DF |
Decimal | 254 | 221 | 223 |
Binary | 11111110 | 11011101 | 11011111 |
Octal | 376 | 335 | 337 |
Examples of css and html codes for elements with #FEDDDF color. Also use rgb(254,221,223) instead hex code.
.myTextColor { color: #FEDDDF; }
<p style="color:#FEDDDF">This sample text font color is #FEDDDF.</p>
This text font color is #FEDDDF.
.myBgColor { background-color: #FEDDDF; }
<div style="background-color:#FEDDDF">Inner text</div>
This div background color is #FEDDDF.
.myBorderColor { border: 1px solid #FEDDDF; }
<div style="border:3px solid #FEDDDF">Div</div>
This div border color is #FEDDDF.
.myOpacity80 { color: #FEDDDF; opacity: 0.8; }
<p style="color:#FEDDDF;opacity:0.8;">80%</p>
Text with #FEDDDF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FEDDDF;}
<p style="text-shadow: 3px 3px 1px #FEDDDF">Text here.</p>
This text has shadow with #FEDDDF color.
.textShadow {text-shadow: 3px 3px 1px #FEDDDF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FEDDDF, 5px 5px 20px red">Text here.</p>
This text has shadow with #FEDDDF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FEDDDF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FEDDDF, Direction=45, Strength=4)">Text</p>
This text has shadow with #FEDDDF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FEDDDF; -webkit-box-shadow: 1px 1px 3px 2px #FEDDDF; box-shadow: 1px 1px 3px 2px #FEDDDF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FEDDDF; -webkit-box-shadow: 1px 1px 3px 2px #FEDDDF; box-shadow:1px 1px 3px 2px #FEDDDF;">
Div content here</div>
This text has color #FEDDDF on black background.
This text has color #FEDDDF on white background.
This text has black color on #FEDDDF background.
This text has white color on #FEDDDF background.