HEX: #FDC1CA
RGB: (253,193,202)
#FDC1CA contains mainly red and blue colors. Web safe color of #FDC1CA is #FFCCCC (or #FCC).
#FDC1CA color RGB value is (253,193,202).
RGB: (253,193,202) (99%,76%,79%)
R 253 of 255 = 99%
G 193 of 255 = 76%
B 202 of 255 = 79%
R + G + B ~ 85%. #FDC1CA is quite light color.
R + G + B =
253 + 193 + 202 = 648 (100%)
R 253 of 648 ~ 39.04%
G 193 of 648 ~ 29.78%
B 202 of 648 ~ 31.17%
#FDC1CA color CMYK value is (0,24,20,1).
CMYK: (0,24,20,1) C0M24Y20K1 (0%,24%,20%,1%) (0.00/0.24/0.20/0.01)
FD | C1 | CA | |
---|---|---|---|
RGB | 253 | 193 | 202 |
HSL | 351° | 93.75% | 87.45% |
HSB/HSV | 351° | 23.72% | 99.22% |
CMYK | 0.00% | 23.72% | 20.16% |
0.78% |
HEX | FD | C1 | CA |
Decimal | 253 | 193 | 202 |
Binary | 11111101 | 11000001 | 11001010 |
Octal | 375 | 301 | 312 |
Examples of css and html codes for elements with #FDC1CA color. Also use rgb(253,193,202) instead hex code.
.myTextColor { color: #FDC1CA; }
<p style="color:#FDC1CA">This sample text font color is #FDC1CA.</p>
This text font color is #FDC1CA.
.myBgColor { background-color: #FDC1CA; }
<div style="background-color:#FDC1CA">Inner text</div>
This div background color is #FDC1CA.
.myBorderColor { border: 1px solid #FDC1CA; }
<div style="border:3px solid #FDC1CA">Div</div>
This div border color is #FDC1CA.
.myOpacity80 { color: #FDC1CA; opacity: 0.8; }
<p style="color:#FDC1CA;opacity:0.8;">80%</p>
Text with #FDC1CA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FDC1CA;}
<p style="text-shadow: 3px 3px 1px #FDC1CA">Text here.</p>
This text has shadow with #FDC1CA color.
.textShadow {text-shadow: 3px 3px 1px #FDC1CA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FDC1CA, 5px 5px 20px red">Text here.</p>
This text has shadow with #FDC1CA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FDC1CA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FDC1CA, Direction=45, Strength=4)">Text</p>
This text has shadow with #FDC1CA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FDC1CA; -webkit-box-shadow: 1px 1px 3px 2px #FDC1CA; box-shadow: 1px 1px 3px 2px #FDC1CA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FDC1CA; -webkit-box-shadow: 1px 1px 3px 2px #FDC1CA; box-shadow:1px 1px 3px 2px #FDC1CA;">
Div content here</div>
This text has color #FDC1CA on black background.
This text has color #FDC1CA on white background.
This text has black color on #FDC1CA background.
This text has white color on #FDC1CA background.