HEX: #F4C6DA
RGB: (244,198,218)
#F4C6DA contains red, green and blue colors in about the same proportion. Web safe color of #F4C6DA is #FFCCCC (or #FCC).
#F4C6DA color RGB value is (244,198,218).
RGB: (244,198,218) (96%,78%,85%)
R 244 of 255 = 96%
G 198 of 255 = 78%
B 218 of 255 = 85%
R + G + B ~ 86%. #F4C6DA is light color.
R + G + B =
244 + 198 + 218 = 660 (100%)
R 244 of 660 ~ 36.97%
G 198 of 660 ~ 30%
B 218 of 660 ~ 33.03%
#F4C6DA color CMYK value is (0,19,11,4).
CMYK: (0,19,11,4) C0M19Y11K4 (0%,19%,11%,4%) (0.00/0.19/0.11/0.04)
F4 | C6 | DA | |
---|---|---|---|
RGB | 244 | 198 | 218 |
HSL | 334° | 67.65% | 86.67% |
HSB/HSV | 334° | 18.85% | 95.69% |
CMYK | 0.00% | 18.85% | 10.66% |
4.31% |
HEX | F4 | C6 | DA |
Decimal | 244 | 198 | 218 |
Binary | 11110100 | 11000110 | 11011010 |
Octal | 364 | 306 | 332 |
Examples of css and html codes for elements with #F4C6DA color. Also use rgb(244,198,218) instead hex code.
.myTextColor { color: #F4C6DA; }
<p style="color:#F4C6DA">This sample text font color is #F4C6DA.</p>
This text font color is #F4C6DA.
.myBgColor { background-color: #F4C6DA; }
<div style="background-color:#F4C6DA">Inner text</div>
This div background color is #F4C6DA.
.myBorderColor { border: 1px solid #F4C6DA; }
<div style="border:3px solid #F4C6DA">Div</div>
This div border color is #F4C6DA.
.myOpacity80 { color: #F4C6DA; opacity: 0.8; }
<p style="color:#F4C6DA;opacity:0.8;">80%</p>
Text with #F4C6DA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F4C6DA;}
<p style="text-shadow: 3px 3px 1px #F4C6DA">Text here.</p>
This text has shadow with #F4C6DA color.
.textShadow {text-shadow: 3px 3px 1px #F4C6DA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F4C6DA, 5px 5px 20px red">Text here.</p>
This text has shadow with #F4C6DA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F4C6DA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F4C6DA, Direction=45, Strength=4)">Text</p>
This text has shadow with #F4C6DA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F4C6DA; -webkit-box-shadow: 1px 1px 3px 2px #F4C6DA; box-shadow: 1px 1px 3px 2px #F4C6DA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F4C6DA; -webkit-box-shadow: 1px 1px 3px 2px #F4C6DA; box-shadow:1px 1px 3px 2px #F4C6DA;">
Div content here</div>
This text has color #F4C6DA on black background.
This text has color #F4C6DA on white background.
This text has black color on #F4C6DA background.
This text has white color on #F4C6DA background.