HEX: #F09CCA
RGB: (240,156,202)
#F09CCA contains mainly red and blue colors. Web safe color of #F09CCA is #FF99CC (or #F9C).
#F09CCA color RGB value is (240,156,202).
RGB: (240,156,202) (94%,61%,79%)
R 240 of 255 = 94%
G 156 of 255 = 61%
B 202 of 255 = 79%
R + G + B ~ 78%. #F09CCA is quite light color.
R + G + B =
240 + 156 + 202 = 598 (100%)
R 240 of 598 ~ 40.13%
G 156 of 598 ~ 26.09%
B 202 of 598 ~ 33.78%
#F09CCA color CMYK value is (0,35,16,6).
CMYK: (0,35,16,6) C0M35Y16K6 (0%,35%,16%,6%) (0.00/0.35/0.16/0.06)
F0 | 9C | CA | |
---|---|---|---|
RGB | 240 | 156 | 202 |
HSL | 327° | 73.68% | 77.65% |
HSB/HSV | 327° | 35.00% | 94.12% |
CMYK | 0.00% | 35.00% | 15.83% |
5.88% |
HEX | F0 | 9C | CA |
Decimal | 240 | 156 | 202 |
Binary | 11110000 | 10011100 | 11001010 |
Octal | 360 | 234 | 312 |
Examples of css and html codes for elements with #F09CCA color. Also use rgb(240,156,202) instead hex code.
.myTextColor { color: #F09CCA; }
<p style="color:#F09CCA">This sample text font color is #F09CCA.</p>
This text font color is #F09CCA.
.myBgColor { background-color: #F09CCA; }
<div style="background-color:#F09CCA">Inner text</div>
This div background color is #F09CCA.
.myBorderColor { border: 1px solid #F09CCA; }
<div style="border:3px solid #F09CCA">Div</div>
This div border color is #F09CCA.
.myOpacity80 { color: #F09CCA; opacity: 0.8; }
<p style="color:#F09CCA;opacity:0.8;">80%</p>
Text with #F09CCA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F09CCA;}
<p style="text-shadow: 3px 3px 1px #F09CCA">Text here.</p>
This text has shadow with #F09CCA color.
.textShadow {text-shadow: 3px 3px 1px #F09CCA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F09CCA, 5px 5px 20px red">Text here.</p>
This text has shadow with #F09CCA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F09CCA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F09CCA, Direction=45, Strength=4)">Text</p>
This text has shadow with #F09CCA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F09CCA; -webkit-box-shadow: 1px 1px 3px 2px #F09CCA; box-shadow: 1px 1px 3px 2px #F09CCA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F09CCA; -webkit-box-shadow: 1px 1px 3px 2px #F09CCA; box-shadow:1px 1px 3px 2px #F09CCA;">
Div content here</div>
This text has color #F09CCA on black background.
This text has color #F09CCA on white background.
This text has black color on #F09CCA background.
This text has white color on #F09CCA background.