HEX: #FFC3CB
RGB: (255,195,203)
#FFC3CB contains mainly red and blue colors. Web safe color of #FFC3CB is #FFCCCC (or #FCC).
#FFC3CB color RGB value is (255,195,203).
RGB: (255,195,203) (100%,76%,80%)
R 255 of 255 = 100%
G 195 of 255 = 76%
B 203 of 255 = 80%
R + G + B ~ 85%. #FFC3CB is quite light color.
R + G + B =
255 + 195 + 203 = 653 (100%)
R 255 of 653 ~ 39.05%
G 195 of 653 ~ 29.86%
B 203 of 653 ~ 31.09%
#FFC3CB color CMYK value is (0,24,20,0).
CMYK: (0,24,20,0) C0M24Y20K0 (0%,24%,20%,0%) (0.00/0.24/0.20/0.00)
FF | C3 | CB | |
---|---|---|---|
RGB | 255 | 195 | 203 |
HSL | 352° | 100.00% | 88.24% |
HSB/HSV | 352° | 23.53% | 100.00% |
CMYK | 0.00% | 23.53% | 20.39% |
0.00% |
HEX | FF | C3 | CB |
Decimal | 255 | 195 | 203 |
Binary | 11111111 | 11000011 | 11001011 |
Octal | 377 | 303 | 313 |
Examples of css and html codes for elements with #FFC3CB color. Also use rgb(255,195,203) instead hex code.
.myTextColor { color: #FFC3CB; }
<p style="color:#FFC3CB">This sample text font color is #FFC3CB.</p>
This text font color is #FFC3CB.
.myBgColor { background-color: #FFC3CB; }
<div style="background-color:#FFC3CB">Inner text</div>
This div background color is #FFC3CB.
.myBorderColor { border: 1px solid #FFC3CB; }
<div style="border:3px solid #FFC3CB">Div</div>
This div border color is #FFC3CB.
.myOpacity80 { color: #FFC3CB; opacity: 0.8; }
<p style="color:#FFC3CB;opacity:0.8;">80%</p>
Text with #FFC3CB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FFC3CB;}
<p style="text-shadow: 3px 3px 1px #FFC3CB">Text here.</p>
This text has shadow with #FFC3CB color.
.textShadow {text-shadow: 3px 3px 1px #FFC3CB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FFC3CB, 5px 5px 20px red">Text here.</p>
This text has shadow with #FFC3CB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FFC3CB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FFC3CB, Direction=45, Strength=4)">Text</p>
This text has shadow with #FFC3CB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FFC3CB; -webkit-box-shadow: 1px 1px 3px 2px #FFC3CB; box-shadow: 1px 1px 3px 2px #FFC3CB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FFC3CB; -webkit-box-shadow: 1px 1px 3px 2px #FFC3CB; box-shadow:1px 1px 3px 2px #FFC3CB;">
Div content here</div>
This text has color #FFC3CB on black background.
This text has color #FFC3CB on white background.
This text has black color on #FFC3CB background.
This text has white color on #FFC3CB background.