HEX: #FFE4DD
RGB: (255,228,221)
#FFE4DD contains red, green and blue colors in about the same proportion. Web safe color of #FFE4DD is #FFCCCC (or #FCC).
#FFE4DD color RGB value is (255,228,221).
RGB: (255,228,221) (100%,89%,87%)
R 255 of 255 = 100%
G 228 of 255 = 89%
B 221 of 255 = 87%
R + G + B ~ 92%. #FFE4DD is light color.
R + G + B =
255 + 228 + 221 = 704 (100%)
R 255 of 704 ~ 36.22%
G 228 of 704 ~ 32.39%
B 221 of 704 ~ 31.39%
#FFE4DD color CMYK value is (0,11,13,0).
CMYK: (0,11,13,0) C0M11Y13K0 (0%,11%,13%,0%) (0.00/0.11/0.13/0.00)
FF | E4 | DD | |
---|---|---|---|
RGB | 255 | 228 | 221 |
HSL | 12° | 100.00% | 93.33% |
HSB/HSV | 12° | 13.33% | 100.00% |
CMYK | 0.00% | 10.59% | 13.33% |
0.00% |
HEX | FF | E4 | DD |
Decimal | 255 | 228 | 221 |
Binary | 11111111 | 11100100 | 11011101 |
Octal | 377 | 344 | 335 |
Examples of css and html codes for elements with #FFE4DD color. Also use rgb(255,228,221) instead hex code.
.myTextColor { color: #FFE4DD; }
<p style="color:#FFE4DD">This sample text font color is #FFE4DD.</p>
This text font color is #FFE4DD.
.myBgColor { background-color: #FFE4DD; }
<div style="background-color:#FFE4DD">Inner text</div>
This div background color is #FFE4DD.
.myBorderColor { border: 1px solid #FFE4DD; }
<div style="border:3px solid #FFE4DD">Div</div>
This div border color is #FFE4DD.
.myOpacity80 { color: #FFE4DD; opacity: 0.8; }
<p style="color:#FFE4DD;opacity:0.8;">80%</p>
Text with #FFE4DD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FFE4DD;}
<p style="text-shadow: 3px 3px 1px #FFE4DD">Text here.</p>
This text has shadow with #FFE4DD color.
.textShadow {text-shadow: 3px 3px 1px #FFE4DD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FFE4DD, 5px 5px 20px red">Text here.</p>
This text has shadow with #FFE4DD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FFE4DD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FFE4DD, Direction=45, Strength=4)">Text</p>
This text has shadow with #FFE4DD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FFE4DD; -webkit-box-shadow: 1px 1px 3px 2px #FFE4DD; box-shadow: 1px 1px 3px 2px #FFE4DD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FFE4DD; -webkit-box-shadow: 1px 1px 3px 2px #FFE4DD; box-shadow:1px 1px 3px 2px #FFE4DD;">
Div content here</div>
This text has color #FFE4DD on black background.
This text has color #FFE4DD on white background.
This text has black color on #FFE4DD background.
This text has white color on #FFE4DD background.