HEX: #FC96C5
RGB: (252,150,197)
#FC96C5 contains mainly red and blue colors. Web safe color of #FC96C5 is #FF99CC (or #F9C).
#FC96C5 color RGB value is (252,150,197).
RGB: (252,150,197) (99%,59%,77%)
R 252 of 255 = 99%
G 150 of 255 = 59%
B 197 of 255 = 77%
R + G + B ~ 78%. #FC96C5 is quite light color.
R + G + B =
252 + 150 + 197 = 599 (100%)
R 252 of 599 ~ 42.07%
G 150 of 599 ~ 25.04%
B 197 of 599 ~ 32.89%
#FC96C5 color CMYK value is (0,40,22,1).
CMYK: (0,40,22,1) C0M40Y22K1 (0%,40%,22%,1%) (0.00/0.40/0.22/0.01)
FC | 96 | C5 | |
---|---|---|---|
RGB | 252 | 150 | 197 |
HSL | 332° | 94.44% | 78.82% |
HSB/HSV | 332° | 40.48% | 98.82% |
CMYK | 0.00% | 40.48% | 21.83% |
1.18% |
HEX | FC | 96 | C5 |
Decimal | 252 | 150 | 197 |
Binary | 11111100 | 10010110 | 11000101 |
Octal | 374 | 226 | 305 |
Examples of css and html codes for elements with #FC96C5 color. Also use rgb(252,150,197) instead hex code.
.myTextColor { color: #FC96C5; }
<p style="color:#FC96C5">This sample text font color is #FC96C5.</p>
This text font color is #FC96C5.
.myBgColor { background-color: #FC96C5; }
<div style="background-color:#FC96C5">Inner text</div>
This div background color is #FC96C5.
.myBorderColor { border: 1px solid #FC96C5; }
<div style="border:3px solid #FC96C5">Div</div>
This div border color is #FC96C5.
.myOpacity80 { color: #FC96C5; opacity: 0.8; }
<p style="color:#FC96C5;opacity:0.8;">80%</p>
Text with #FC96C5 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FC96C5;}
<p style="text-shadow: 3px 3px 1px #FC96C5">Text here.</p>
This text has shadow with #FC96C5 color.
.textShadow {text-shadow: 3px 3px 1px #FC96C5, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FC96C5, 5px 5px 20px red">Text here.</p>
This text has shadow with #FC96C5 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FC96C5, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FC96C5, Direction=45, Strength=4)">Text</p>
This text has shadow with #FC96C5 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FC96C5; -webkit-box-shadow: 1px 1px 3px 2px #FC96C5; box-shadow: 1px 1px 3px 2px #FC96C5; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FC96C5; -webkit-box-shadow: 1px 1px 3px 2px #FC96C5; box-shadow:1px 1px 3px 2px #FC96C5;">
Div content here</div>
This text has color #FC96C5 on black background.
This text has color #FC96C5 on white background.
This text has black color on #FC96C5 background.
This text has white color on #FC96C5 background.