HEX: #FAF5DA
RGB: (250,245,218)
#FAF5DA contains red, green and blue colors in about the same proportion. Web safe color of #FAF5DA is #FFFFCC (or #FFC).
#FAF5DA color RGB value is (250,245,218).
RGB: (250,245,218) (98%,96%,85%)
R 250 of 255 = 98%
G 245 of 255 = 96%
B 218 of 255 = 85%
R + G + B ~ 93%. #FAF5DA is light color.
R + G + B =
250 + 245 + 218 = 713 (100%)
R 250 of 713 ~ 35.06%
G 245 of 713 ~ 34.36%
B 218 of 713 ~ 30.58%
#FAF5DA color CMYK value is (0,2,13,2).
CMYK: (0,2,13,2) C0M2Y13K2 (0%,2%,13%,2%) (0.00/0.02/0.13/0.02)
FA | F5 | DA | |
---|---|---|---|
RGB | 250 | 245 | 218 |
HSL | 51° | 76.19% | 91.76% |
HSB/HSV | 51° | 12.80% | 98.04% |
CMYK | 0.00% | 2.00% | 12.80% |
1.96% |
HEX | FA | F5 | DA |
Decimal | 250 | 245 | 218 |
Binary | 11111010 | 11110101 | 11011010 |
Octal | 372 | 365 | 332 |
Examples of css and html codes for elements with #FAF5DA color. Also use rgb(250,245,218) instead hex code.
.myTextColor { color: #FAF5DA; }
<p style="color:#FAF5DA">This sample text font color is #FAF5DA.</p>
This text font color is #FAF5DA.
.myBgColor { background-color: #FAF5DA; }
<div style="background-color:#FAF5DA">Inner text</div>
This div background color is #FAF5DA.
.myBorderColor { border: 1px solid #FAF5DA; }
<div style="border:3px solid #FAF5DA">Div</div>
This div border color is #FAF5DA.
.myOpacity80 { color: #FAF5DA; opacity: 0.8; }
<p style="color:#FAF5DA;opacity:0.8;">80%</p>
Text with #FAF5DA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FAF5DA;}
<p style="text-shadow: 3px 3px 1px #FAF5DA">Text here.</p>
This text has shadow with #FAF5DA color.
.textShadow {text-shadow: 3px 3px 1px #FAF5DA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FAF5DA, 5px 5px 20px red">Text here.</p>
This text has shadow with #FAF5DA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FAF5DA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FAF5DA, Direction=45, Strength=4)">Text</p>
This text has shadow with #FAF5DA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FAF5DA; -webkit-box-shadow: 1px 1px 3px 2px #FAF5DA; box-shadow: 1px 1px 3px 2px #FAF5DA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FAF5DA; -webkit-box-shadow: 1px 1px 3px 2px #FAF5DA; box-shadow:1px 1px 3px 2px #FAF5DA;">
Div content here</div>
This text has color #FAF5DA on black background.
This text has color #FAF5DA on white background.
This text has black color on #FAF5DA background.
This text has white color on #FAF5DA background.