HEX: #F6A096
RGB: (246,160,150)
#F6A096 contains mainly red color. Web safe color of #F6A096 is #FF9999 (or #F99).
#F6A096 color RGB value is (246,160,150).
RGB: (246,160,150) (96%,63%,59%)
R 246 of 255 = 96%
G 160 of 255 = 63%
B 150 of 255 = 59%
R + G + B ~ 73%. #F6A096 is quite light color.
R + G + B =
246 + 160 + 150 = 556 (100%)
R 246 of 556 ~ 44.24%
G 160 of 556 ~ 28.78%
B 150 of 556 ~ 26.98%
#F6A096 color CMYK value is (0,35,39,4).
CMYK: (0,35,39,4) C0M35Y39K4 (0%,35%,39%,4%) (0.00/0.35/0.39/0.04)
F6 | A0 | 96 | |
---|---|---|---|
RGB | 246 | 160 | 150 |
HSL | 6° | 84.21% | 77.65% |
HSB/HSV | 6° | 39.02% | 96.47% |
CMYK | 0.00% | 34.96% | 39.02% |
3.53% |
HEX | F6 | A0 | 96 |
Decimal | 246 | 160 | 150 |
Binary | 11110110 | 10100000 | 10010110 |
Octal | 366 | 240 | 226 |
Examples of css and html codes for elements with #F6A096 color. Also use rgb(246,160,150) instead hex code.
.myTextColor { color: #F6A096; }
<p style="color:#F6A096">This sample text font color is #F6A096.</p>
This text font color is #F6A096.
.myBgColor { background-color: #F6A096; }
<div style="background-color:#F6A096">Inner text</div>
This div background color is #F6A096.
.myBorderColor { border: 1px solid #F6A096; }
<div style="border:3px solid #F6A096">Div</div>
This div border color is #F6A096.
.myOpacity80 { color: #F6A096; opacity: 0.8; }
<p style="color:#F6A096;opacity:0.8;">80%</p>
Text with #F6A096 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F6A096;}
<p style="text-shadow: 3px 3px 1px #F6A096">Text here.</p>
This text has shadow with #F6A096 color.
.textShadow {text-shadow: 3px 3px 1px #F6A096, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F6A096, 5px 5px 20px red">Text here.</p>
This text has shadow with #F6A096 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F6A096, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F6A096, Direction=45, Strength=4)">Text</p>
This text has shadow with #F6A096 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F6A096; -webkit-box-shadow: 1px 1px 3px 2px #F6A096; box-shadow: 1px 1px 3px 2px #F6A096; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F6A096; -webkit-box-shadow: 1px 1px 3px 2px #F6A096; box-shadow:1px 1px 3px 2px #F6A096;">
Div content here</div>
This text has color #F6A096 on black background.
This text has color #F6A096 on white background.
This text has black color on #F6A096 background.
This text has white color on #F6A096 background.