HEX: #FA96CD
RGB: (250,150,205)
#FA96CD contains mainly red and blue colors. Web safe color of #FA96CD is #FF99CC (or #F9C).
#FA96CD color RGB value is (250,150,205).
RGB: (250,150,205) (98%,59%,80%)
R 250 of 255 = 98%
G 150 of 255 = 59%
B 205 of 255 = 80%
R + G + B ~ 79%. #FA96CD is quite light color.
R + G + B =
250 + 150 + 205 = 605 (100%)
R 250 of 605 ~ 41.32%
G 150 of 605 ~ 24.79%
B 205 of 605 ~ 33.88%
#FA96CD color CMYK value is (0,40,18,2).
CMYK: (0,40,18,2) C0M40Y18K2 (0%,40%,18%,2%) (0.00/0.40/0.18/0.02)
FA | 96 | CD | |
---|---|---|---|
RGB | 250 | 150 | 205 |
HSL | 327° | 90.91% | 78.43% |
HSB/HSV | 327° | 40.00% | 98.04% |
CMYK | 0.00% | 40.00% | 18.00% |
1.96% |
HEX | FA | 96 | CD |
Decimal | 250 | 150 | 205 |
Binary | 11111010 | 10010110 | 11001101 |
Octal | 372 | 226 | 315 |
Examples of css and html codes for elements with #FA96CD color. Also use rgb(250,150,205) instead hex code.
.myTextColor { color: #FA96CD; }
<p style="color:#FA96CD">This sample text font color is #FA96CD.</p>
This text font color is #FA96CD.
.myBgColor { background-color: #FA96CD; }
<div style="background-color:#FA96CD">Inner text</div>
This div background color is #FA96CD.
.myBorderColor { border: 1px solid #FA96CD; }
<div style="border:3px solid #FA96CD">Div</div>
This div border color is #FA96CD.
.myOpacity80 { color: #FA96CD; opacity: 0.8; }
<p style="color:#FA96CD;opacity:0.8;">80%</p>
Text with #FA96CD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FA96CD;}
<p style="text-shadow: 3px 3px 1px #FA96CD">Text here.</p>
This text has shadow with #FA96CD color.
.textShadow {text-shadow: 3px 3px 1px #FA96CD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FA96CD, 5px 5px 20px red">Text here.</p>
This text has shadow with #FA96CD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FA96CD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FA96CD, Direction=45, Strength=4)">Text</p>
This text has shadow with #FA96CD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FA96CD; -webkit-box-shadow: 1px 1px 3px 2px #FA96CD; box-shadow: 1px 1px 3px 2px #FA96CD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FA96CD; -webkit-box-shadow: 1px 1px 3px 2px #FA96CD; box-shadow:1px 1px 3px 2px #FA96CD;">
Div content here</div>
This text has color #FA96CD on black background.
This text has color #FA96CD on white background.
This text has black color on #FA96CD background.
This text has white color on #FA96CD background.