HEX: #FFFACD
RGB: (255,250,205)
Color name is LemonChiffon. #FFFACD contains red, green and blue colors in about the same proportion. Web safe color of #FFFACD is #FFFFCC (or #FFC).
#FFFACD color RGB value is (255,250,205).
RGB: (255,250,205) (100%,98%,80%)
R 255 of 255 = 100%
G 250 of 255 = 98%
B 205 of 255 = 80%
R + G + B ~ 93%. #FFFACD is light color.
R + G + B =
255 + 250 + 205 = 710 (100%)
R 255 of 710 ~ 35.92%
G 250 of 710 ~ 35.21%
B 205 of 710 ~ 28.87%
#FFFACD color CMYK value is (0,2,20,0).
CMYK: (0,2,20,0) C0M2Y20K0 (0%,2%,20%,0%) (0.00/0.02/0.20/0.00)
FF | FA | CD | |
---|---|---|---|
RGB | 255 | 250 | 205 |
HSL | 54° | 100.00% | 90.20% |
HSB/HSV | 54° | 19.61% | 100.00% |
CMYK | 0.00% | 1.96% | 19.61% |
0.00% |
HEX | FF | FA | CD |
Decimal | 255 | 250 | 205 |
Binary | 11111111 | 11111010 | 11001101 |
Octal | 377 | 372 | 315 |
Examples of css and html codes for elements with #FFFACD color. Also use rgb(255,250,205) instead hex code.
.myTextColor { color: #FFFACD; }
<p style="color:#FFFACD">This sample text font color is #FFFACD.</p>
This text font color is #FFFACD.
.myBgColor { background-color: #FFFACD; }
<div style="background-color:#FFFACD">Inner text</div>
This div background color is #FFFACD.
.myBorderColor { border: 1px solid #FFFACD; }
<div style="border:3px solid #FFFACD">Div</div>
This div border color is #FFFACD.
.myOpacity80 { color: #FFFACD; opacity: 0.8; }
<p style="color:#FFFACD;opacity:0.8;">80%</p>
Text with #FFFACD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FFFACD;}
<p style="text-shadow: 3px 3px 1px #FFFACD">Text here.</p>
This text has shadow with #FFFACD color.
.textShadow {text-shadow: 3px 3px 1px #FFFACD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FFFACD, 5px 5px 20px red">Text here.</p>
This text has shadow with #FFFACD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FFFACD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FFFACD, Direction=45, Strength=4)">Text</p>
This text has shadow with #FFFACD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FFFACD; -webkit-box-shadow: 1px 1px 3px 2px #FFFACD; box-shadow: 1px 1px 3px 2px #FFFACD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FFFACD; -webkit-box-shadow: 1px 1px 3px 2px #FFFACD; box-shadow:1px 1px 3px 2px #FFFACD;">
Div content here</div>
This text has color #FFFACD on black background.
This text has color #FFFACD on white background.
This text has black color on #FFFACD background.
This text has white color on #FFFACD background.