HEX: #FAEDDB
RGB: (250,237,219)
#FAEDDB contains red, green and blue colors in about the same proportion. Web safe color of #FAEDDB is #FFFFCC (or #FFC).
#FAEDDB color RGB value is (250,237,219).
RGB: (250,237,219) (98%,93%,86%)
R 250 of 255 = 98%
G 237 of 255 = 93%
B 219 of 255 = 86%
R + G + B ~ 92%. #FAEDDB is light color.
R + G + B =
250 + 237 + 219 = 706 (100%)
R 250 of 706 ~ 35.41%
G 237 of 706 ~ 33.57%
B 219 of 706 ~ 31.02%
#FAEDDB color CMYK value is (0,5,12,2).
CMYK: (0,5,12,2) C0M5Y12K2 (0%,5%,12%,2%) (0.00/0.05/0.12/0.02)
FA | ED | DB | |
---|---|---|---|
RGB | 250 | 237 | 219 |
HSL | 35° | 75.61% | 91.96% |
HSB/HSV | 35° | 12.40% | 98.04% |
CMYK | 0.00% | 5.20% | 12.40% |
1.96% |
HEX | FA | ED | DB |
Decimal | 250 | 237 | 219 |
Binary | 11111010 | 11101101 | 11011011 |
Octal | 372 | 355 | 333 |
Examples of css and html codes for elements with #FAEDDB color. Also use rgb(250,237,219) instead hex code.
.myTextColor { color: #FAEDDB; }
<p style="color:#FAEDDB">This sample text font color is #FAEDDB.</p>
This text font color is #FAEDDB.
.myBgColor { background-color: #FAEDDB; }
<div style="background-color:#FAEDDB">Inner text</div>
This div background color is #FAEDDB.
.myBorderColor { border: 1px solid #FAEDDB; }
<div style="border:3px solid #FAEDDB">Div</div>
This div border color is #FAEDDB.
.myOpacity80 { color: #FAEDDB; opacity: 0.8; }
<p style="color:#FAEDDB;opacity:0.8;">80%</p>
Text with #FAEDDB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FAEDDB;}
<p style="text-shadow: 3px 3px 1px #FAEDDB">Text here.</p>
This text has shadow with #FAEDDB color.
.textShadow {text-shadow: 3px 3px 1px #FAEDDB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FAEDDB, 5px 5px 20px red">Text here.</p>
This text has shadow with #FAEDDB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FAEDDB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FAEDDB, Direction=45, Strength=4)">Text</p>
This text has shadow with #FAEDDB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FAEDDB; -webkit-box-shadow: 1px 1px 3px 2px #FAEDDB; box-shadow: 1px 1px 3px 2px #FAEDDB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FAEDDB; -webkit-box-shadow: 1px 1px 3px 2px #FAEDDB; box-shadow:1px 1px 3px 2px #FAEDDB;">
Div content here</div>
This text has color #FAEDDB on black background.
This text has color #FAEDDB on white background.
This text has black color on #FAEDDB background.
This text has white color on #FAEDDB background.