HEX: #F4A696
RGB: (244,166,150)
#F4A696 contains mainly red color. Web safe color of #F4A696 is #FF9999 (or #F99).
#F4A696 color RGB value is (244,166,150).
RGB: (244,166,150) (96%,65%,59%)
R 244 of 255 = 96%
G 166 of 255 = 65%
B 150 of 255 = 59%
R + G + B ~ 73%. #F4A696 is quite light color.
R + G + B =
244 + 166 + 150 = 560 (100%)
R 244 of 560 ~ 43.57%
G 166 of 560 ~ 29.64%
B 150 of 560 ~ 26.79%
#F4A696 color CMYK value is (0,32,39,4).
CMYK: (0,32,39,4) C0M32Y39K4 (0%,32%,39%,4%) (0.00/0.32/0.39/0.04)
F4 | A6 | 96 | |
---|---|---|---|
RGB | 244 | 166 | 150 |
HSL | 10° | 81.03% | 77.25% |
HSB/HSV | 10° | 38.52% | 95.69% |
CMYK | 0.00% | 31.97% | 38.52% |
4.31% |
HEX | F4 | A6 | 96 |
Decimal | 244 | 166 | 150 |
Binary | 11110100 | 10100110 | 10010110 |
Octal | 364 | 246 | 226 |
Examples of css and html codes for elements with #F4A696 color. Also use rgb(244,166,150) instead hex code.
.myTextColor { color: #F4A696; }
<p style="color:#F4A696">This sample text font color is #F4A696.</p>
This text font color is #F4A696.
.myBgColor { background-color: #F4A696; }
<div style="background-color:#F4A696">Inner text</div>
This div background color is #F4A696.
.myBorderColor { border: 1px solid #F4A696; }
<div style="border:3px solid #F4A696">Div</div>
This div border color is #F4A696.
.myOpacity80 { color: #F4A696; opacity: 0.8; }
<p style="color:#F4A696;opacity:0.8;">80%</p>
Text with #F4A696 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F4A696;}
<p style="text-shadow: 3px 3px 1px #F4A696">Text here.</p>
This text has shadow with #F4A696 color.
.textShadow {text-shadow: 3px 3px 1px #F4A696, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F4A696, 5px 5px 20px red">Text here.</p>
This text has shadow with #F4A696 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F4A696, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F4A696, Direction=45, Strength=4)">Text</p>
This text has shadow with #F4A696 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F4A696; -webkit-box-shadow: 1px 1px 3px 2px #F4A696; box-shadow: 1px 1px 3px 2px #F4A696; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F4A696; -webkit-box-shadow: 1px 1px 3px 2px #F4A696; box-shadow:1px 1px 3px 2px #F4A696;">
Div content here</div>
This text has color #F4A696 on black background.
This text has color #F4A696 on white background.
This text has black color on #F4A696 background.
This text has white color on #F4A696 background.