HEX: #F08080
RGB: (240,128,128)
Color name is LightCoral. #F08080 contains mainly red color. Web safe color of #F08080 is #FF6666 (or #F66).
#F08080 color RGB value is (240,128,128).
RGB: (240,128,128) (94%,50%,50%)
R 240 of 255 = 94%
G 128 of 255 = 50%
B 128 of 255 = 50%
R + G + B ~ 65%. #F08080 is quite light color.
R + G + B =
240 + 128 + 128 = 496 (100%)
R 240 of 496 ~ 48.39%
G 128 of 496 ~ 25.81%
B 128 of 496 ~ 25.81%
#F08080 color CMYK value is (0,47,47,6).
CMYK: (0,47,47,6) C0M47Y47K6 (0%,47%,47%,6%) (0.00/0.47/0.47/0.06)
F0 | 80 | 80 | |
---|---|---|---|
RGB | 240 | 128 | 128 |
HSL | 0° | 78.87% | 72.16% |
HSB/HSV | 0° | 46.67% | 94.12% |
CMYK | 0.00% | 46.67% | 46.67% |
5.88% |
HEX | F0 | 80 | 80 |
Decimal | 240 | 128 | 128 |
Binary | 11110000 | 10000000 | 10000000 |
Octal | 360 | 200 | 200 |
Examples of css and html codes for elements with #F08080 color. Also use rgb(240,128,128) instead hex code.
.myTextColor { color: #F08080; }
<p style="color:#F08080">This sample text font color is #F08080.</p>
This text font color is #F08080.
.myBgColor { background-color: #F08080; }
<div style="background-color:#F08080">Inner text</div>
This div background color is #F08080.
.myBorderColor { border: 1px solid #F08080; }
<div style="border:3px solid #F08080">Div</div>
This div border color is #F08080.
.myOpacity80 { color: #F08080; opacity: 0.8; }
<p style="color:#F08080;opacity:0.8;">80%</p>
Text with #F08080 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F08080;}
<p style="text-shadow: 3px 3px 1px #F08080">Text here.</p>
This text has shadow with #F08080 color.
.textShadow {text-shadow: 3px 3px 1px #F08080, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F08080, 5px 5px 20px red">Text here.</p>
This text has shadow with #F08080 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F08080, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F08080, Direction=45, Strength=4)">Text</p>
This text has shadow with #F08080 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F08080; -webkit-box-shadow: 1px 1px 3px 2px #F08080; box-shadow: 1px 1px 3px 2px #F08080; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F08080; -webkit-box-shadow: 1px 1px 3px 2px #F08080; box-shadow:1px 1px 3px 2px #F08080;">
Div content here</div>
This text has color #F08080 on black background.
This text has color #F08080 on white background.
This text has black color on #F08080 background.
This text has white color on #F08080 background.