HEX: #FAA988
RGB: (250,169,136)
#FAA988 contains mainly red color. Web safe color of #FAA988 is #FF9999 (or #F99).
#FAA988 color RGB value is (250,169,136).
RGB: (250,169,136) (98%,66%,53%)
R 250 of 255 = 98%
G 169 of 255 = 66%
B 136 of 255 = 53%
R + G + B ~ 72%. #FAA988 is quite light color.
R + G + B =
250 + 169 + 136 = 555 (100%)
R 250 of 555 ~ 45.05%
G 169 of 555 ~ 30.45%
B 136 of 555 ~ 24.5%
#FAA988 color CMYK value is (0,32,46,2).
CMYK: (0,32,46,2) C0M32Y46K2 (0%,32%,46%,2%) (0.00/0.32/0.46/0.02)
FA | A9 | 88 | |
---|---|---|---|
RGB | 250 | 169 | 136 |
HSL | 17° | 91.94% | 75.69% |
HSB/HSV | 17° | 45.60% | 98.04% |
CMYK | 0.00% | 32.40% | 45.60% |
1.96% |
HEX | FA | A9 | 88 |
Decimal | 250 | 169 | 136 |
Binary | 11111010 | 10101001 | 10001000 |
Octal | 372 | 251 | 210 |
Examples of css and html codes for elements with #FAA988 color. Also use rgb(250,169,136) instead hex code.
.myTextColor { color: #FAA988; }
<p style="color:#FAA988">This sample text font color is #FAA988.</p>
This text font color is #FAA988.
.myBgColor { background-color: #FAA988; }
<div style="background-color:#FAA988">Inner text</div>
This div background color is #FAA988.
.myBorderColor { border: 1px solid #FAA988; }
<div style="border:3px solid #FAA988">Div</div>
This div border color is #FAA988.
.myOpacity80 { color: #FAA988; opacity: 0.8; }
<p style="color:#FAA988;opacity:0.8;">80%</p>
Text with #FAA988 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FAA988;}
<p style="text-shadow: 3px 3px 1px #FAA988">Text here.</p>
This text has shadow with #FAA988 color.
.textShadow {text-shadow: 3px 3px 1px #FAA988, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FAA988, 5px 5px 20px red">Text here.</p>
This text has shadow with #FAA988 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FAA988, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FAA988, Direction=45, Strength=4)">Text</p>
This text has shadow with #FAA988 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FAA988; -webkit-box-shadow: 1px 1px 3px 2px #FAA988; box-shadow: 1px 1px 3px 2px #FAA988; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FAA988; -webkit-box-shadow: 1px 1px 3px 2px #FAA988; box-shadow:1px 1px 3px 2px #FAA988;">
Div content here</div>
This text has color #FAA988 on black background.
This text has color #FAA988 on white background.
This text has black color on #FAA988 background.
This text has white color on #FAA988 background.