HEX: #F09FAD
RGB: (240,159,173)
#F09FAD contains mainly red color. Web safe color of #F09FAD is #FF9999 (or #F99).
#F09FAD color RGB value is (240,159,173).
RGB: (240,159,173) (94%,62%,68%)
R 240 of 255 = 94%
G 159 of 255 = 62%
B 173 of 255 = 68%
R + G + B ~ 75%. #F09FAD is quite light color.
R + G + B =
240 + 159 + 173 = 572 (100%)
R 240 of 572 ~ 41.96%
G 159 of 572 ~ 27.8%
B 173 of 572 ~ 30.24%
#F09FAD color CMYK value is (0,34,28,6).
CMYK: (0,34,28,6) C0M34Y28K6 (0%,34%,28%,6%) (0.00/0.34/0.28/0.06)
F0 | 9F | AD | |
---|---|---|---|
RGB | 240 | 159 | 173 |
HSL | 350° | 72.97% | 78.24% |
HSB/HSV | 350° | 33.75% | 94.12% |
CMYK | 0.00% | 33.75% | 27.92% |
5.88% |
HEX | F0 | 9F | AD |
Decimal | 240 | 159 | 173 |
Binary | 11110000 | 10011111 | 10101101 |
Octal | 360 | 237 | 255 |
Examples of css and html codes for elements with #F09FAD color. Also use rgb(240,159,173) instead hex code.
.myTextColor { color: #F09FAD; }
<p style="color:#F09FAD">This sample text font color is #F09FAD.</p>
This text font color is #F09FAD.
.myBgColor { background-color: #F09FAD; }
<div style="background-color:#F09FAD">Inner text</div>
This div background color is #F09FAD.
.myBorderColor { border: 1px solid #F09FAD; }
<div style="border:3px solid #F09FAD">Div</div>
This div border color is #F09FAD.
.myOpacity80 { color: #F09FAD; opacity: 0.8; }
<p style="color:#F09FAD;opacity:0.8;">80%</p>
Text with #F09FAD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F09FAD;}
<p style="text-shadow: 3px 3px 1px #F09FAD">Text here.</p>
This text has shadow with #F09FAD color.
.textShadow {text-shadow: 3px 3px 1px #F09FAD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F09FAD, 5px 5px 20px red">Text here.</p>
This text has shadow with #F09FAD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F09FAD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F09FAD, Direction=45, Strength=4)">Text</p>
This text has shadow with #F09FAD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F09FAD; -webkit-box-shadow: 1px 1px 3px 2px #F09FAD; box-shadow: 1px 1px 3px 2px #F09FAD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F09FAD; -webkit-box-shadow: 1px 1px 3px 2px #F09FAD; box-shadow:1px 1px 3px 2px #F09FAD;">
Div content here</div>
This text has color #F09FAD on black background.
This text has color #F09FAD on white background.
This text has black color on #F09FAD background.
This text has white color on #F09FAD background.