HEX: #FACEA8
RGB: (250,206,168)
#FACEA8 contains mainly red and green colors. Web safe color of #FACEA8 is #FFCC99 (or #FC9).
#FACEA8 color RGB value is (250,206,168).
RGB: (250,206,168) (98%,81%,66%)
R 250 of 255 = 98%
G 206 of 255 = 81%
B 168 of 255 = 66%
R + G + B ~ 82%. #FACEA8 is quite light color.
R + G + B =
250 + 206 + 168 = 624 (100%)
R 250 of 624 ~ 40.06%
G 206 of 624 ~ 33.01%
B 168 of 624 ~ 26.92%
#FACEA8 color CMYK value is (0,18,33,2).
CMYK: (0,18,33,2) C0M18Y33K2 (0%,18%,33%,2%) (0.00/0.18/0.33/0.02)
FA | CE | A8 | |
---|---|---|---|
RGB | 250 | 206 | 168 |
HSL | 28° | 89.13% | 81.96% |
HSB/HSV | 28° | 32.80% | 98.04% |
CMYK | 0.00% | 17.60% | 32.80% |
1.96% |
HEX | FA | CE | A8 |
Decimal | 250 | 206 | 168 |
Binary | 11111010 | 11001110 | 10101000 |
Octal | 372 | 316 | 250 |
Examples of css and html codes for elements with #FACEA8 color. Also use rgb(250,206,168) instead hex code.
.myTextColor { color: #FACEA8; }
<p style="color:#FACEA8">This sample text font color is #FACEA8.</p>
This text font color is #FACEA8.
.myBgColor { background-color: #FACEA8; }
<div style="background-color:#FACEA8">Inner text</div>
This div background color is #FACEA8.
.myBorderColor { border: 1px solid #FACEA8; }
<div style="border:3px solid #FACEA8">Div</div>
This div border color is #FACEA8.
.myOpacity80 { color: #FACEA8; opacity: 0.8; }
<p style="color:#FACEA8;opacity:0.8;">80%</p>
Text with #FACEA8 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FACEA8;}
<p style="text-shadow: 3px 3px 1px #FACEA8">Text here.</p>
This text has shadow with #FACEA8 color.
.textShadow {text-shadow: 3px 3px 1px #FACEA8, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FACEA8, 5px 5px 20px red">Text here.</p>
This text has shadow with #FACEA8 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FACEA8, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FACEA8, Direction=45, Strength=4)">Text</p>
This text has shadow with #FACEA8 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FACEA8; -webkit-box-shadow: 1px 1px 3px 2px #FACEA8; box-shadow: 1px 1px 3px 2px #FACEA8; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FACEA8; -webkit-box-shadow: 1px 1px 3px 2px #FACEA8; box-shadow:1px 1px 3px 2px #FACEA8;">
Div content here</div>
This text has color #FACEA8 on black background.
This text has color #FACEA8 on white background.
This text has black color on #FACEA8 background.
This text has white color on #FACEA8 background.