HEX: #F0ABEC
RGB: (240,171,236)
#F0ABEC contains mainly red and blue colors. Web safe color of #F0ABEC is #FF99FF (or #F9F).
#F0ABEC color RGB value is (240,171,236).
RGB: (240,171,236) (94%,67%,93%)
R 240 of 255 = 94%
G 171 of 255 = 67%
B 236 of 255 = 93%
R + G + B ~ 85%. #F0ABEC is quite light color.
R + G + B =
240 + 171 + 236 = 647 (100%)
R 240 of 647 ~ 37.09%
G 171 of 647 ~ 26.43%
B 236 of 647 ~ 36.48%
#F0ABEC color CMYK value is (0,29,2,6).
CMYK: (0,29,2,6) C0M29Y2K6 (0%,29%,2%,6%) (0.00/0.29/0.02/0.06)
F0 | AB | EC | |
---|---|---|---|
RGB | 240 | 171 | 236 |
HSL | 303° | 69.70% | 80.59% |
HSB/HSV | 303° | 28.75% | 94.12% |
CMYK | 0.00% | 28.75% | 1.67% |
5.88% |
HEX | F0 | AB | EC |
Decimal | 240 | 171 | 236 |
Binary | 11110000 | 10101011 | 11101100 |
Octal | 360 | 253 | 354 |
Examples of css and html codes for elements with #F0ABEC color. Also use rgb(240,171,236) instead hex code.
.myTextColor { color: #F0ABEC; }
<p style="color:#F0ABEC">This sample text font color is #F0ABEC.</p>
This text font color is #F0ABEC.
.myBgColor { background-color: #F0ABEC; }
<div style="background-color:#F0ABEC">Inner text</div>
This div background color is #F0ABEC.
.myBorderColor { border: 1px solid #F0ABEC; }
<div style="border:3px solid #F0ABEC">Div</div>
This div border color is #F0ABEC.
.myOpacity80 { color: #F0ABEC; opacity: 0.8; }
<p style="color:#F0ABEC;opacity:0.8;">80%</p>
Text with #F0ABEC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F0ABEC;}
<p style="text-shadow: 3px 3px 1px #F0ABEC">Text here.</p>
This text has shadow with #F0ABEC color.
.textShadow {text-shadow: 3px 3px 1px #F0ABEC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F0ABEC, 5px 5px 20px red">Text here.</p>
This text has shadow with #F0ABEC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F0ABEC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F0ABEC, Direction=45, Strength=4)">Text</p>
This text has shadow with #F0ABEC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F0ABEC; -webkit-box-shadow: 1px 1px 3px 2px #F0ABEC; box-shadow: 1px 1px 3px 2px #F0ABEC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F0ABEC; -webkit-box-shadow: 1px 1px 3px 2px #F0ABEC; box-shadow:1px 1px 3px 2px #F0ABEC;">
Div content here</div>
This text has color #F0ABEC on black background.
This text has color #F0ABEC on white background.
This text has black color on #F0ABEC background.
This text has white color on #F0ABEC background.