HEX: #F0C4DD
RGB: (240,196,221)
#F0C4DD contains red, green and blue colors in about the same proportion. Web safe color of #F0C4DD is #FFCCCC (or #FCC).
#F0C4DD color RGB value is (240,196,221).
RGB: (240,196,221) (94%,77%,87%)
R 240 of 255 = 94%
G 196 of 255 = 77%
B 221 of 255 = 87%
R + G + B ~ 86%. #F0C4DD is light color.
R + G + B =
240 + 196 + 221 = 657 (100%)
R 240 of 657 ~ 36.53%
G 196 of 657 ~ 29.83%
B 221 of 657 ~ 33.64%
#F0C4DD color CMYK value is (0,18,8,6).
CMYK: (0,18,8,6) C0M18Y8K6 (0%,18%,8%,6%) (0.00/0.18/0.08/0.06)
F0 | C4 | DD | |
---|---|---|---|
RGB | 240 | 196 | 221 |
HSL | 326° | 59.46% | 85.49% |
HSB/HSV | 326° | 18.33% | 94.12% |
CMYK | 0.00% | 18.33% | 7.92% |
5.88% |
HEX | F0 | C4 | DD |
Decimal | 240 | 196 | 221 |
Binary | 11110000 | 11000100 | 11011101 |
Octal | 360 | 304 | 335 |
Examples of css and html codes for elements with #F0C4DD color. Also use rgb(240,196,221) instead hex code.
.myTextColor { color: #F0C4DD; }
<p style="color:#F0C4DD">This sample text font color is #F0C4DD.</p>
This text font color is #F0C4DD.
.myBgColor { background-color: #F0C4DD; }
<div style="background-color:#F0C4DD">Inner text</div>
This div background color is #F0C4DD.
.myBorderColor { border: 1px solid #F0C4DD; }
<div style="border:3px solid #F0C4DD">Div</div>
This div border color is #F0C4DD.
.myOpacity80 { color: #F0C4DD; opacity: 0.8; }
<p style="color:#F0C4DD;opacity:0.8;">80%</p>
Text with #F0C4DD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F0C4DD;}
<p style="text-shadow: 3px 3px 1px #F0C4DD">Text here.</p>
This text has shadow with #F0C4DD color.
.textShadow {text-shadow: 3px 3px 1px #F0C4DD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F0C4DD, 5px 5px 20px red">Text here.</p>
This text has shadow with #F0C4DD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F0C4DD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F0C4DD, Direction=45, Strength=4)">Text</p>
This text has shadow with #F0C4DD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F0C4DD; -webkit-box-shadow: 1px 1px 3px 2px #F0C4DD; box-shadow: 1px 1px 3px 2px #F0C4DD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F0C4DD; -webkit-box-shadow: 1px 1px 3px 2px #F0C4DD; box-shadow:1px 1px 3px 2px #F0C4DD;">
Div content here</div>
This text has color #F0C4DD on black background.
This text has color #F0C4DD on white background.
This text has black color on #F0C4DD background.
This text has white color on #F0C4DD background.