HEX: #FC95D5
RGB: (252,149,213)
#FC95D5 contains mainly red and blue colors. Web safe color of #FC95D5 is #FF99CC (or #F9C).
#FC95D5 color RGB value is (252,149,213).
RGB: (252,149,213) (99%,58%,84%)
R 252 of 255 = 99%
G 149 of 255 = 58%
B 213 of 255 = 84%
R + G + B ~ 80%. #FC95D5 is quite light color.
R + G + B =
252 + 149 + 213 = 614 (100%)
R 252 of 614 ~ 41.04%
G 149 of 614 ~ 24.27%
B 213 of 614 ~ 34.69%
#FC95D5 color CMYK value is (0,41,15,1).
CMYK: (0,41,15,1) C0M41Y15K1 (0%,41%,15%,1%) (0.00/0.41/0.15/0.01)
FC | 95 | D5 | |
---|---|---|---|
RGB | 252 | 149 | 213 |
HSL | 323° | 94.50% | 78.63% |
HSB/HSV | 323° | 40.87% | 98.82% |
CMYK | 0.00% | 40.87% | 15.48% |
1.18% |
HEX | FC | 95 | D5 |
Decimal | 252 | 149 | 213 |
Binary | 11111100 | 10010101 | 11010101 |
Octal | 374 | 225 | 325 |
Examples of css and html codes for elements with #FC95D5 color. Also use rgb(252,149,213) instead hex code.
.myTextColor { color: #FC95D5; }
<p style="color:#FC95D5">This sample text font color is #FC95D5.</p>
This text font color is #FC95D5.
.myBgColor { background-color: #FC95D5; }
<div style="background-color:#FC95D5">Inner text</div>
This div background color is #FC95D5.
.myBorderColor { border: 1px solid #FC95D5; }
<div style="border:3px solid #FC95D5">Div</div>
This div border color is #FC95D5.
.myOpacity80 { color: #FC95D5; opacity: 0.8; }
<p style="color:#FC95D5;opacity:0.8;">80%</p>
Text with #FC95D5 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FC95D5;}
<p style="text-shadow: 3px 3px 1px #FC95D5">Text here.</p>
This text has shadow with #FC95D5 color.
.textShadow {text-shadow: 3px 3px 1px #FC95D5, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FC95D5, 5px 5px 20px red">Text here.</p>
This text has shadow with #FC95D5 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FC95D5, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FC95D5, Direction=45, Strength=4)">Text</p>
This text has shadow with #FC95D5 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FC95D5; -webkit-box-shadow: 1px 1px 3px 2px #FC95D5; box-shadow: 1px 1px 3px 2px #FC95D5; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FC95D5; -webkit-box-shadow: 1px 1px 3px 2px #FC95D5; box-shadow:1px 1px 3px 2px #FC95D5;">
Div content here</div>
This text has color #FC95D5 on black background.
This text has color #FC95D5 on white background.
This text has black color on #FC95D5 background.
This text has white color on #FC95D5 background.