HEX: #F0ACED
RGB: (240,172,237)
#F0ACED contains mainly red and blue colors. Web safe color of #F0ACED is #FF99FF (or #F9F).
#F0ACED color RGB value is (240,172,237).
RGB: (240,172,237) (94%,67%,93%)
R 240 of 255 = 94%
G 172 of 255 = 67%
B 237 of 255 = 93%
R + G + B ~ 85%. #F0ACED is quite light color.
R + G + B =
240 + 172 + 237 = 649 (100%)
R 240 of 649 ~ 36.98%
G 172 of 649 ~ 26.5%
B 237 of 649 ~ 36.52%
#F0ACED color CMYK value is (0,28,1,6).
CMYK: (0,28,1,6) C0M28Y1K6 (0%,28%,1%,6%) (0.00/0.28/0.01/0.06)
F0 | AC | ED | |
---|---|---|---|
RGB | 240 | 172 | 237 |
HSL | 303° | 69.39% | 80.78% |
HSB/HSV | 303° | 28.33% | 94.12% |
CMYK | 0.00% | 28.33% | 1.25% |
5.88% |
HEX | F0 | AC | ED |
Decimal | 240 | 172 | 237 |
Binary | 11110000 | 10101100 | 11101101 |
Octal | 360 | 254 | 355 |
Examples of css and html codes for elements with #F0ACED color. Also use rgb(240,172,237) instead hex code.
.myTextColor { color: #F0ACED; }
<p style="color:#F0ACED">This sample text font color is #F0ACED.</p>
This text font color is #F0ACED.
.myBgColor { background-color: #F0ACED; }
<div style="background-color:#F0ACED">Inner text</div>
This div background color is #F0ACED.
.myBorderColor { border: 1px solid #F0ACED; }
<div style="border:3px solid #F0ACED">Div</div>
This div border color is #F0ACED.
.myOpacity80 { color: #F0ACED; opacity: 0.8; }
<p style="color:#F0ACED;opacity:0.8;">80%</p>
Text with #F0ACED color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F0ACED;}
<p style="text-shadow: 3px 3px 1px #F0ACED">Text here.</p>
This text has shadow with #F0ACED color.
.textShadow {text-shadow: 3px 3px 1px #F0ACED, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F0ACED, 5px 5px 20px red">Text here.</p>
This text has shadow with #F0ACED primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F0ACED, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F0ACED, Direction=45, Strength=4)">Text</p>
This text has shadow with #F0ACED and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F0ACED; -webkit-box-shadow: 1px 1px 3px 2px #F0ACED; box-shadow: 1px 1px 3px 2px #F0ACED; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F0ACED; -webkit-box-shadow: 1px 1px 3px 2px #F0ACED; box-shadow:1px 1px 3px 2px #F0ACED;">
Div content here</div>
This text has color #F0ACED on black background.
This text has color #F0ACED on white background.
This text has black color on #F0ACED background.
This text has white color on #F0ACED background.