HEX: #FADDBB
RGB: (250,221,187)
#FADDBB contains mainly red and green colors. Web safe color of #FADDBB is #FFCCCC (or #FCC).
#FADDBB color RGB value is (250,221,187).
RGB: (250,221,187) (98%,87%,73%)
R 250 of 255 = 98%
G 221 of 255 = 87%
B 187 of 255 = 73%
R + G + B ~ 86%. #FADDBB is light color.
R + G + B =
250 + 221 + 187 = 658 (100%)
R 250 of 658 ~ 37.99%
G 221 of 658 ~ 33.59%
B 187 of 658 ~ 28.42%
#FADDBB color CMYK value is (0,12,25,2).
CMYK: (0,12,25,2) C0M12Y25K2 (0%,12%,25%,2%) (0.00/0.12/0.25/0.02)
FA | DD | BB | |
---|---|---|---|
RGB | 250 | 221 | 187 |
HSL | 32° | 86.30% | 85.69% |
HSB/HSV | 32° | 25.20% | 98.04% |
CMYK | 0.00% | 11.60% | 25.20% |
1.96% |
HEX | FA | DD | BB |
Decimal | 250 | 221 | 187 |
Binary | 11111010 | 11011101 | 10111011 |
Octal | 372 | 335 | 273 |
Examples of css and html codes for elements with #FADDBB color. Also use rgb(250,221,187) instead hex code.
.myTextColor { color: #FADDBB; }
<p style="color:#FADDBB">This sample text font color is #FADDBB.</p>
This text font color is #FADDBB.
.myBgColor { background-color: #FADDBB; }
<div style="background-color:#FADDBB">Inner text</div>
This div background color is #FADDBB.
.myBorderColor { border: 1px solid #FADDBB; }
<div style="border:3px solid #FADDBB">Div</div>
This div border color is #FADDBB.
.myOpacity80 { color: #FADDBB; opacity: 0.8; }
<p style="color:#FADDBB;opacity:0.8;">80%</p>
Text with #FADDBB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FADDBB;}
<p style="text-shadow: 3px 3px 1px #FADDBB">Text here.</p>
This text has shadow with #FADDBB color.
.textShadow {text-shadow: 3px 3px 1px #FADDBB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FADDBB, 5px 5px 20px red">Text here.</p>
This text has shadow with #FADDBB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FADDBB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FADDBB, Direction=45, Strength=4)">Text</p>
This text has shadow with #FADDBB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FADDBB; -webkit-box-shadow: 1px 1px 3px 2px #FADDBB; box-shadow: 1px 1px 3px 2px #FADDBB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FADDBB; -webkit-box-shadow: 1px 1px 3px 2px #FADDBB; box-shadow:1px 1px 3px 2px #FADDBB;">
Div content here</div>
This text has color #FADDBB on black background.
This text has color #FADDBB on white background.
This text has black color on #FADDBB background.
This text has white color on #FADDBB background.