HEX: #FAEDBA
RGB: (250,237,186)
#FAEDBA contains mainly red and green colors. Web safe color of #FAEDBA is #FFFFCC (or #FFC).
#FAEDBA color RGB value is (250,237,186).
RGB: (250,237,186) (98%,93%,73%)
R 250 of 255 = 98%
G 237 of 255 = 93%
B 186 of 255 = 73%
R + G + B ~ 88%. #FAEDBA is light color.
R + G + B =
250 + 237 + 186 = 673 (100%)
R 250 of 673 ~ 37.15%
G 237 of 673 ~ 35.22%
B 186 of 673 ~ 27.64%
#FAEDBA color CMYK value is (0,5,26,2).
CMYK: (0,5,26,2) C0M5Y26K2 (0%,5%,26%,2%) (0.00/0.05/0.26/0.02)
FA | ED | BA | |
---|---|---|---|
RGB | 250 | 237 | 186 |
HSL | 48° | 86.49% | 85.49% |
HSB/HSV | 48° | 25.60% | 98.04% |
CMYK | 0.00% | 5.20% | 25.60% |
1.96% |
HEX | FA | ED | BA |
Decimal | 250 | 237 | 186 |
Binary | 11111010 | 11101101 | 10111010 |
Octal | 372 | 355 | 272 |
Examples of css and html codes for elements with #FAEDBA color. Also use rgb(250,237,186) instead hex code.
.myTextColor { color: #FAEDBA; }
<p style="color:#FAEDBA">This sample text font color is #FAEDBA.</p>
This text font color is #FAEDBA.
.myBgColor { background-color: #FAEDBA; }
<div style="background-color:#FAEDBA">Inner text</div>
This div background color is #FAEDBA.
.myBorderColor { border: 1px solid #FAEDBA; }
<div style="border:3px solid #FAEDBA">Div</div>
This div border color is #FAEDBA.
.myOpacity80 { color: #FAEDBA; opacity: 0.8; }
<p style="color:#FAEDBA;opacity:0.8;">80%</p>
Text with #FAEDBA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FAEDBA;}
<p style="text-shadow: 3px 3px 1px #FAEDBA">Text here.</p>
This text has shadow with #FAEDBA color.
.textShadow {text-shadow: 3px 3px 1px #FAEDBA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FAEDBA, 5px 5px 20px red">Text here.</p>
This text has shadow with #FAEDBA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FAEDBA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FAEDBA, Direction=45, Strength=4)">Text</p>
This text has shadow with #FAEDBA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FAEDBA; -webkit-box-shadow: 1px 1px 3px 2px #FAEDBA; box-shadow: 1px 1px 3px 2px #FAEDBA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FAEDBA; -webkit-box-shadow: 1px 1px 3px 2px #FAEDBA; box-shadow:1px 1px 3px 2px #FAEDBA;">
Div content here</div>
This text has color #FAEDBA on black background.
This text has color #FAEDBA on white background.
This text has black color on #FAEDBA background.
This text has white color on #FAEDBA background.