HEX: #F093ED
RGB: (240,147,237)
#F093ED contains mainly red and blue colors. Web safe color of #F093ED is #FF99FF (or #F9F).
#F093ED color RGB value is (240,147,237).
RGB: (240,147,237) (94%,58%,93%)
R 240 of 255 = 94%
G 147 of 255 = 58%
B 237 of 255 = 93%
R + G + B ~ 82%. #F093ED is quite light color.
R + G + B =
240 + 147 + 237 = 624 (100%)
R 240 of 624 ~ 38.46%
G 147 of 624 ~ 23.56%
B 237 of 624 ~ 37.98%
#F093ED color CMYK value is (0,39,1,6).
CMYK: (0,39,1,6) C0M39Y1K6 (0%,39%,1%,6%) (0.00/0.39/0.01/0.06)
F0 | 93 | ED | |
---|---|---|---|
RGB | 240 | 147 | 237 |
HSL | 302° | 75.61% | 75.88% |
HSB/HSV | 302° | 38.75% | 94.12% |
CMYK | 0.00% | 38.75% | 1.25% |
5.88% |
HEX | F0 | 93 | ED |
Decimal | 240 | 147 | 237 |
Binary | 11110000 | 10010011 | 11101101 |
Octal | 360 | 223 | 355 |
Examples of css and html codes for elements with #F093ED color. Also use rgb(240,147,237) instead hex code.
.myTextColor { color: #F093ED; }
<p style="color:#F093ED">This sample text font color is #F093ED.</p>
This text font color is #F093ED.
.myBgColor { background-color: #F093ED; }
<div style="background-color:#F093ED">Inner text</div>
This div background color is #F093ED.
.myBorderColor { border: 1px solid #F093ED; }
<div style="border:3px solid #F093ED">Div</div>
This div border color is #F093ED.
.myOpacity80 { color: #F093ED; opacity: 0.8; }
<p style="color:#F093ED;opacity:0.8;">80%</p>
Text with #F093ED color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F093ED;}
<p style="text-shadow: 3px 3px 1px #F093ED">Text here.</p>
This text has shadow with #F093ED color.
.textShadow {text-shadow: 3px 3px 1px #F093ED, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F093ED, 5px 5px 20px red">Text here.</p>
This text has shadow with #F093ED primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F093ED, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F093ED, Direction=45, Strength=4)">Text</p>
This text has shadow with #F093ED and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F093ED; -webkit-box-shadow: 1px 1px 3px 2px #F093ED; box-shadow: 1px 1px 3px 2px #F093ED; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F093ED; -webkit-box-shadow: 1px 1px 3px 2px #F093ED; box-shadow:1px 1px 3px 2px #F093ED;">
Div content here</div>
This text has color #F093ED on black background.
This text has color #F093ED on white background.
This text has black color on #F093ED background.
This text has white color on #F093ED background.