HEX: #F095CF
RGB: (240,149,207)
#F095CF contains mainly red and blue colors. Web safe color of #F095CF is #FF99CC (or #F9C).
#F095CF color RGB value is (240,149,207).
RGB: (240,149,207) (94%,58%,81%)
R 240 of 255 = 94%
G 149 of 255 = 58%
B 207 of 255 = 81%
R + G + B ~ 78%. #F095CF is quite light color.
R + G + B =
240 + 149 + 207 = 596 (100%)
R 240 of 596 ~ 40.27%
G 149 of 596 ~ 25%
B 207 of 596 ~ 34.73%
#F095CF color CMYK value is (0,38,14,6).
CMYK: (0,38,14,6) C0M38Y14K6 (0%,38%,14%,6%) (0.00/0.38/0.14/0.06)
F0 | 95 | CF | |
---|---|---|---|
RGB | 240 | 149 | 207 |
HSL | 322° | 75.21% | 76.27% |
HSB/HSV | 322° | 37.92% | 94.12% |
CMYK | 0.00% | 37.92% | 13.75% |
5.88% |
HEX | F0 | 95 | CF |
Decimal | 240 | 149 | 207 |
Binary | 11110000 | 10010101 | 11001111 |
Octal | 360 | 225 | 317 |
Examples of css and html codes for elements with #F095CF color. Also use rgb(240,149,207) instead hex code.
.myTextColor { color: #F095CF; }
<p style="color:#F095CF">This sample text font color is #F095CF.</p>
This text font color is #F095CF.
.myBgColor { background-color: #F095CF; }
<div style="background-color:#F095CF">Inner text</div>
This div background color is #F095CF.
.myBorderColor { border: 1px solid #F095CF; }
<div style="border:3px solid #F095CF">Div</div>
This div border color is #F095CF.
.myOpacity80 { color: #F095CF; opacity: 0.8; }
<p style="color:#F095CF;opacity:0.8;">80%</p>
Text with #F095CF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F095CF;}
<p style="text-shadow: 3px 3px 1px #F095CF">Text here.</p>
This text has shadow with #F095CF color.
.textShadow {text-shadow: 3px 3px 1px #F095CF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F095CF, 5px 5px 20px red">Text here.</p>
This text has shadow with #F095CF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F095CF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F095CF, Direction=45, Strength=4)">Text</p>
This text has shadow with #F095CF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F095CF; -webkit-box-shadow: 1px 1px 3px 2px #F095CF; box-shadow: 1px 1px 3px 2px #F095CF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F095CF; -webkit-box-shadow: 1px 1px 3px 2px #F095CF; box-shadow:1px 1px 3px 2px #F095CF;">
Div content here</div>
This text has color #F095CF on black background.
This text has color #F095CF on white background.
This text has black color on #F095CF background.
This text has white color on #F095CF background.