HEX: #FAF1EC
RGB: (250,241,236)
#FAF1EC contains red, green and blue colors in about the same proportion. Web safe color of #FAF1EC is #FFFFFF (or #FFF).
#FAF1EC color RGB value is (250,241,236).
RGB: (250,241,236) (98%,95%,93%)
R 250 of 255 = 98%
G 241 of 255 = 95%
B 236 of 255 = 93%
R + G + B ~ 95%. #FAF1EC is light color.
R + G + B =
250 + 241 + 236 = 727 (100%)
R 250 of 727 ~ 34.39%
G 241 of 727 ~ 33.15%
B 236 of 727 ~ 32.46%
#FAF1EC color CMYK value is (0,4,6,2).
CMYK: (0,4,6,2) C0M4Y6K2 (0%,4%,6%,2%) (0.00/0.04/0.06/0.02)
FA | F1 | EC | |
---|---|---|---|
RGB | 250 | 241 | 236 |
HSL | 21° | 58.33% | 95.29% |
HSB/HSV | 21° | 5.60% | 98.04% |
CMYK | 0.00% | 3.60% | 5.60% |
1.96% |
HEX | FA | F1 | EC |
Decimal | 250 | 241 | 236 |
Binary | 11111010 | 11110001 | 11101100 |
Octal | 372 | 361 | 354 |
Examples of css and html codes for elements with #FAF1EC color. Also use rgb(250,241,236) instead hex code.
.myTextColor { color: #FAF1EC; }
<p style="color:#FAF1EC">This sample text font color is #FAF1EC.</p>
This text font color is #FAF1EC.
.myBgColor { background-color: #FAF1EC; }
<div style="background-color:#FAF1EC">Inner text</div>
This div background color is #FAF1EC.
.myBorderColor { border: 1px solid #FAF1EC; }
<div style="border:3px solid #FAF1EC">Div</div>
This div border color is #FAF1EC.
.myOpacity80 { color: #FAF1EC; opacity: 0.8; }
<p style="color:#FAF1EC;opacity:0.8;">80%</p>
Text with #FAF1EC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FAF1EC;}
<p style="text-shadow: 3px 3px 1px #FAF1EC">Text here.</p>
This text has shadow with #FAF1EC color.
.textShadow {text-shadow: 3px 3px 1px #FAF1EC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FAF1EC, 5px 5px 20px red">Text here.</p>
This text has shadow with #FAF1EC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FAF1EC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FAF1EC, Direction=45, Strength=4)">Text</p>
This text has shadow with #FAF1EC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FAF1EC; -webkit-box-shadow: 1px 1px 3px 2px #FAF1EC; box-shadow: 1px 1px 3px 2px #FAF1EC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FAF1EC; -webkit-box-shadow: 1px 1px 3px 2px #FAF1EC; box-shadow:1px 1px 3px 2px #FAF1EC;">
Div content here</div>
This text has color #FAF1EC on black background.
This text has color #FAF1EC on white background.
This text has black color on #FAF1EC background.
This text has white color on #FAF1EC background.