HEX: #FAB699
RGB: (250,182,153)
#FAB699 contains mainly red color. Web safe color of #FAB699 is #FFCC99 (or #FC9).
#FAB699 color RGB value is (250,182,153).
RGB: (250,182,153) (98%,71%,60%)
R 250 of 255 = 98%
G 182 of 255 = 71%
B 153 of 255 = 60%
R + G + B ~ 76%. #FAB699 is quite light color.
R + G + B =
250 + 182 + 153 = 585 (100%)
R 250 of 585 ~ 42.74%
G 182 of 585 ~ 31.11%
B 153 of 585 ~ 26.15%
#FAB699 color CMYK value is (0,27,39,2).
CMYK: (0,27,39,2) C0M27Y39K2 (0%,27%,39%,2%) (0.00/0.27/0.39/0.02)
FA | B6 | 99 | |
---|---|---|---|
RGB | 250 | 182 | 153 |
HSL | 18° | 90.65% | 79.02% |
HSB/HSV | 18° | 38.80% | 98.04% |
CMYK | 0.00% | 27.20% | 38.80% |
1.96% |
HEX | FA | B6 | 99 |
Decimal | 250 | 182 | 153 |
Binary | 11111010 | 10110110 | 10011001 |
Octal | 372 | 266 | 231 |
Examples of css and html codes for elements with #FAB699 color. Also use rgb(250,182,153) instead hex code.
.myTextColor { color: #FAB699; }
<p style="color:#FAB699">This sample text font color is #FAB699.</p>
This text font color is #FAB699.
.myBgColor { background-color: #FAB699; }
<div style="background-color:#FAB699">Inner text</div>
This div background color is #FAB699.
.myBorderColor { border: 1px solid #FAB699; }
<div style="border:3px solid #FAB699">Div</div>
This div border color is #FAB699.
.myOpacity80 { color: #FAB699; opacity: 0.8; }
<p style="color:#FAB699;opacity:0.8;">80%</p>
Text with #FAB699 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FAB699;}
<p style="text-shadow: 3px 3px 1px #FAB699">Text here.</p>
This text has shadow with #FAB699 color.
.textShadow {text-shadow: 3px 3px 1px #FAB699, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FAB699, 5px 5px 20px red">Text here.</p>
This text has shadow with #FAB699 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FAB699, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FAB699, Direction=45, Strength=4)">Text</p>
This text has shadow with #FAB699 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FAB699; -webkit-box-shadow: 1px 1px 3px 2px #FAB699; box-shadow: 1px 1px 3px 2px #FAB699; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FAB699; -webkit-box-shadow: 1px 1px 3px 2px #FAB699; box-shadow:1px 1px 3px 2px #FAB699;">
Div content here</div>
This text has color #FAB699 on black background.
This text has color #FAB699 on white background.
This text has black color on #FAB699 background.
This text has white color on #FAB699 background.