HEX: #FAF0A6
RGB: (250,240,166)
#FAF0A6 contains mainly red and green colors. Web safe color of #FAF0A6 is #FFFF99 (or #FF9).
#FAF0A6 color RGB value is (250,240,166).
RGB: (250,240,166) (98%,94%,65%)
R 250 of 255 = 98%
G 240 of 255 = 94%
B 166 of 255 = 65%
R + G + B ~ 86%. #FAF0A6 is light color.
R + G + B =
250 + 240 + 166 = 656 (100%)
R 250 of 656 ~ 38.11%
G 240 of 656 ~ 36.59%
B 166 of 656 ~ 25.3%
#FAF0A6 color CMYK value is (0,4,34,2).
CMYK: (0,4,34,2) C0M4Y34K2 (0%,4%,34%,2%) (0.00/0.04/0.34/0.02)
FA | F0 | A6 | |
---|---|---|---|
RGB | 250 | 240 | 166 |
HSL | 53° | 89.36% | 81.57% |
HSB/HSV | 53° | 33.60% | 98.04% |
CMYK | 0.00% | 4.00% | 33.60% |
1.96% |
HEX | FA | F0 | A6 |
Decimal | 250 | 240 | 166 |
Binary | 11111010 | 11110000 | 10100110 |
Octal | 372 | 360 | 246 |
Examples of css and html codes for elements with #FAF0A6 color. Also use rgb(250,240,166) instead hex code.
.myTextColor { color: #FAF0A6; }
<p style="color:#FAF0A6">This sample text font color is #FAF0A6.</p>
This text font color is #FAF0A6.
.myBgColor { background-color: #FAF0A6; }
<div style="background-color:#FAF0A6">Inner text</div>
This div background color is #FAF0A6.
.myBorderColor { border: 1px solid #FAF0A6; }
<div style="border:3px solid #FAF0A6">Div</div>
This div border color is #FAF0A6.
.myOpacity80 { color: #FAF0A6; opacity: 0.8; }
<p style="color:#FAF0A6;opacity:0.8;">80%</p>
Text with #FAF0A6 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FAF0A6;}
<p style="text-shadow: 3px 3px 1px #FAF0A6">Text here.</p>
This text has shadow with #FAF0A6 color.
.textShadow {text-shadow: 3px 3px 1px #FAF0A6, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FAF0A6, 5px 5px 20px red">Text here.</p>
This text has shadow with #FAF0A6 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FAF0A6, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FAF0A6, Direction=45, Strength=4)">Text</p>
This text has shadow with #FAF0A6 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FAF0A6; -webkit-box-shadow: 1px 1px 3px 2px #FAF0A6; box-shadow: 1px 1px 3px 2px #FAF0A6; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FAF0A6; -webkit-box-shadow: 1px 1px 3px 2px #FAF0A6; box-shadow:1px 1px 3px 2px #FAF0A6;">
Div content here</div>
This text has color #FAF0A6 on black background.
This text has color #FAF0A6 on white background.
This text has black color on #FAF0A6 background.
This text has white color on #FAF0A6 background.