HEX: #F487DA
RGB: (244,135,218)
#F487DA contains mainly red and blue colors. Web safe color of #F487DA is #FF99CC (or #F9C).
#F487DA color RGB value is (244,135,218).
RGB: (244,135,218) (96%,53%,85%)
R 244 of 255 = 96%
G 135 of 255 = 53%
B 218 of 255 = 85%
R + G + B ~ 78%. #F487DA is quite light color.
R + G + B =
244 + 135 + 218 = 597 (100%)
R 244 of 597 ~ 40.87%
G 135 of 597 ~ 22.61%
B 218 of 597 ~ 36.52%
#F487DA color CMYK value is (0,45,11,4).
CMYK: (0,45,11,4) C0M45Y11K4 (0%,45%,11%,4%) (0.00/0.45/0.11/0.04)
F4 | 87 | DA | |
---|---|---|---|
RGB | 244 | 135 | 218 |
HSL | 314° | 83.21% | 74.31% |
HSB/HSV | 314° | 44.67% | 95.69% |
CMYK | 0.00% | 44.67% | 10.66% |
4.31% |
HEX | F4 | 87 | DA |
Decimal | 244 | 135 | 218 |
Binary | 11110100 | 10000111 | 11011010 |
Octal | 364 | 207 | 332 |
Examples of css and html codes for elements with #F487DA color. Also use rgb(244,135,218) instead hex code.
.myTextColor { color: #F487DA; }
<p style="color:#F487DA">This sample text font color is #F487DA.</p>
This text font color is #F487DA.
.myBgColor { background-color: #F487DA; }
<div style="background-color:#F487DA">Inner text</div>
This div background color is #F487DA.
.myBorderColor { border: 1px solid #F487DA; }
<div style="border:3px solid #F487DA">Div</div>
This div border color is #F487DA.
.myOpacity80 { color: #F487DA; opacity: 0.8; }
<p style="color:#F487DA;opacity:0.8;">80%</p>
Text with #F487DA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F487DA;}
<p style="text-shadow: 3px 3px 1px #F487DA">Text here.</p>
This text has shadow with #F487DA color.
.textShadow {text-shadow: 3px 3px 1px #F487DA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F487DA, 5px 5px 20px red">Text here.</p>
This text has shadow with #F487DA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F487DA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F487DA, Direction=45, Strength=4)">Text</p>
This text has shadow with #F487DA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F487DA; -webkit-box-shadow: 1px 1px 3px 2px #F487DA; box-shadow: 1px 1px 3px 2px #F487DA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F487DA; -webkit-box-shadow: 1px 1px 3px 2px #F487DA; box-shadow:1px 1px 3px 2px #F487DA;">
Div content here</div>
This text has color #F487DA on black background.
This text has color #F487DA on white background.
This text has black color on #F487DA background.
This text has white color on #F487DA background.