HEX: #F4DFDD
RGB: (244,223,221)
#F4DFDD contains red, green and blue colors in about the same proportion. Web safe color of #F4DFDD is #FFCCCC (or #FCC).
#F4DFDD color RGB value is (244,223,221).
RGB: (244,223,221) (96%,87%,87%)
R 244 of 255 = 96%
G 223 of 255 = 87%
B 221 of 255 = 87%
R + G + B ~ 90%. #F4DFDD is light color.
R + G + B =
244 + 223 + 221 = 688 (100%)
R 244 of 688 ~ 35.47%
G 223 of 688 ~ 32.41%
B 221 of 688 ~ 32.12%
#F4DFDD color CMYK value is (0,9,9,4).
CMYK: (0,9,9,4) C0M9Y9K4 (0%,9%,9%,4%) (0.00/0.09/0.09/0.04)
F4 | DF | DD | |
---|---|---|---|
RGB | 244 | 223 | 221 |
HSL | 5° | 51.11% | 91.18% |
HSB/HSV | 5° | 9.43% | 95.69% |
CMYK | 0.00% | 8.61% | 9.43% |
4.31% |
HEX | F4 | DF | DD |
Decimal | 244 | 223 | 221 |
Binary | 11110100 | 11011111 | 11011101 |
Octal | 364 | 337 | 335 |
Examples of css and html codes for elements with #F4DFDD color. Also use rgb(244,223,221) instead hex code.
.myTextColor { color: #F4DFDD; }
<p style="color:#F4DFDD">This sample text font color is #F4DFDD.</p>
This text font color is #F4DFDD.
.myBgColor { background-color: #F4DFDD; }
<div style="background-color:#F4DFDD">Inner text</div>
This div background color is #F4DFDD.
.myBorderColor { border: 1px solid #F4DFDD; }
<div style="border:3px solid #F4DFDD">Div</div>
This div border color is #F4DFDD.
.myOpacity80 { color: #F4DFDD; opacity: 0.8; }
<p style="color:#F4DFDD;opacity:0.8;">80%</p>
Text with #F4DFDD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F4DFDD;}
<p style="text-shadow: 3px 3px 1px #F4DFDD">Text here.</p>
This text has shadow with #F4DFDD color.
.textShadow {text-shadow: 3px 3px 1px #F4DFDD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F4DFDD, 5px 5px 20px red">Text here.</p>
This text has shadow with #F4DFDD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F4DFDD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F4DFDD, Direction=45, Strength=4)">Text</p>
This text has shadow with #F4DFDD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F4DFDD; -webkit-box-shadow: 1px 1px 3px 2px #F4DFDD; box-shadow: 1px 1px 3px 2px #F4DFDD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F4DFDD; -webkit-box-shadow: 1px 1px 3px 2px #F4DFDD; box-shadow:1px 1px 3px 2px #F4DFDD;">
Div content here</div>
This text has color #F4DFDD on black background.
This text has color #F4DFDD on white background.
This text has black color on #F4DFDD background.
This text has white color on #F4DFDD background.