HEX: #F9ACE0
RGB: (249,172,224)
#F9ACE0 contains mainly red and blue colors. Web safe color of #F9ACE0 is #FF99CC (or #F9C).
#F9ACE0 color RGB value is (249,172,224).
RGB: (249,172,224) (98%,67%,88%)
R 249 of 255 = 98%
G 172 of 255 = 67%
B 224 of 255 = 88%
R + G + B ~ 84%. #F9ACE0 is quite light color.
R + G + B =
249 + 172 + 224 = 645 (100%)
R 249 of 645 ~ 38.6%
G 172 of 645 ~ 26.67%
B 224 of 645 ~ 34.73%
#F9ACE0 color CMYK value is (0,31,10,2).
CMYK: (0,31,10,2) C0M31Y10K2 (0%,31%,10%,2%) (0.00/0.31/0.10/0.02)
F9 | AC | E0 | |
---|---|---|---|
RGB | 249 | 172 | 224 |
HSL | 319° | 86.52% | 82.55% |
HSB/HSV | 319° | 30.92% | 97.65% |
CMYK | 0.00% | 30.92% | 10.04% |
2.35% |
HEX | F9 | AC | E0 |
Decimal | 249 | 172 | 224 |
Binary | 11111001 | 10101100 | 11100000 |
Octal | 371 | 254 | 340 |
Examples of css and html codes for elements with #F9ACE0 color. Also use rgb(249,172,224) instead hex code.
.myTextColor { color: #F9ACE0; }
<p style="color:#F9ACE0">This sample text font color is #F9ACE0.</p>
This text font color is #F9ACE0.
.myBgColor { background-color: #F9ACE0; }
<div style="background-color:#F9ACE0">Inner text</div>
This div background color is #F9ACE0.
.myBorderColor { border: 1px solid #F9ACE0; }
<div style="border:3px solid #F9ACE0">Div</div>
This div border color is #F9ACE0.
.myOpacity80 { color: #F9ACE0; opacity: 0.8; }
<p style="color:#F9ACE0;opacity:0.8;">80%</p>
Text with #F9ACE0 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F9ACE0;}
<p style="text-shadow: 3px 3px 1px #F9ACE0">Text here.</p>
This text has shadow with #F9ACE0 color.
.textShadow {text-shadow: 3px 3px 1px #F9ACE0, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F9ACE0, 5px 5px 20px red">Text here.</p>
This text has shadow with #F9ACE0 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F9ACE0, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F9ACE0, Direction=45, Strength=4)">Text</p>
This text has shadow with #F9ACE0 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F9ACE0; -webkit-box-shadow: 1px 1px 3px 2px #F9ACE0; box-shadow: 1px 1px 3px 2px #F9ACE0; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F9ACE0; -webkit-box-shadow: 1px 1px 3px 2px #F9ACE0; box-shadow:1px 1px 3px 2px #F9ACE0;">
Div content here</div>
This text has color #F9ACE0 on black background.
This text has color #F9ACE0 on white background.
This text has black color on #F9ACE0 background.
This text has white color on #F9ACE0 background.