HEX: #FADDCA
RGB: (250,221,202)
#FADDCA contains red, green and blue colors in about the same proportion. Web safe color of #FADDCA is #FFCCCC (or #FCC).
#FADDCA color RGB value is (250,221,202).
RGB: (250,221,202) (98%,87%,79%)
R 250 of 255 = 98%
G 221 of 255 = 87%
B 202 of 255 = 79%
R + G + B ~ 88%. #FADDCA is light color.
R + G + B =
250 + 221 + 202 = 673 (100%)
R 250 of 673 ~ 37.15%
G 221 of 673 ~ 32.84%
B 202 of 673 ~ 30.01%
#FADDCA color CMYK value is (0,12,19,2).
CMYK: (0,12,19,2) C0M12Y19K2 (0%,12%,19%,2%) (0.00/0.12/0.19/0.02)
FA | DD | CA | |
---|---|---|---|
RGB | 250 | 221 | 202 |
HSL | 24° | 82.76% | 88.63% |
HSB/HSV | 24° | 19.20% | 98.04% |
CMYK | 0.00% | 11.60% | 19.20% |
1.96% |
HEX | FA | DD | CA |
Decimal | 250 | 221 | 202 |
Binary | 11111010 | 11011101 | 11001010 |
Octal | 372 | 335 | 312 |
Examples of css and html codes for elements with #FADDCA color. Also use rgb(250,221,202) instead hex code.
.myTextColor { color: #FADDCA; }
<p style="color:#FADDCA">This sample text font color is #FADDCA.</p>
This text font color is #FADDCA.
.myBgColor { background-color: #FADDCA; }
<div style="background-color:#FADDCA">Inner text</div>
This div background color is #FADDCA.
.myBorderColor { border: 1px solid #FADDCA; }
<div style="border:3px solid #FADDCA">Div</div>
This div border color is #FADDCA.
.myOpacity80 { color: #FADDCA; opacity: 0.8; }
<p style="color:#FADDCA;opacity:0.8;">80%</p>
Text with #FADDCA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FADDCA;}
<p style="text-shadow: 3px 3px 1px #FADDCA">Text here.</p>
This text has shadow with #FADDCA color.
.textShadow {text-shadow: 3px 3px 1px #FADDCA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FADDCA, 5px 5px 20px red">Text here.</p>
This text has shadow with #FADDCA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FADDCA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FADDCA, Direction=45, Strength=4)">Text</p>
This text has shadow with #FADDCA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FADDCA; -webkit-box-shadow: 1px 1px 3px 2px #FADDCA; box-shadow: 1px 1px 3px 2px #FADDCA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FADDCA; -webkit-box-shadow: 1px 1px 3px 2px #FADDCA; box-shadow:1px 1px 3px 2px #FADDCA;">
Div content here</div>
This text has color #FADDCA on black background.
This text has color #FADDCA on white background.
This text has black color on #FADDCA background.
This text has white color on #FADDCA background.